diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d3a8b5b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/Cargo.toml b/Cargo.toml index cafd8c8..c63b3de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">= 0.19, < 0.21" +tree-sitter = ">=0.21.0" [build-dependencies] cc = "1.0" diff --git a/binding.gyp b/binding.gyp index a78b7a6..8cc292d 100644 --- a/binding.gyp +++ b/binding.gyp @@ -2,18 +2,20 @@ "targets": [ { "target_name": "tree_sitter_elixir_binding", + "dependencies": [ + " -#include "nan.h" +#include -using namespace v8; +typedef struct TSLanguage TSLanguage; -extern "C" TSLanguage * tree_sitter_elixir(); +extern "C" TSLanguage *tree_sitter_elixir(); -namespace { +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tpl->InstanceTemplate()->SetInternalFieldCount(1); - - Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); - Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_elixir()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("elixir").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "elixir"); + auto language = Napi::External::New(env, tree_sitter_elixir()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; } -NODE_MODULE(tree_sitter_elixir_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_elixir_binding, Init) diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 0000000..efe259e --- /dev/null +++ b/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/bindings/node/index.js b/bindings/node/index.js index bcbcbfa..6657bcf 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -1,18 +1,6 @@ -try { - module.exports = require("../../build/Release/tree_sitter_elixir_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_elixir_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/bindings/python/tree_sitter_elixir/__init__.py b/bindings/python/tree_sitter_elixir/__init__.py new file mode 100644 index 0000000..fedfd7a --- /dev/null +++ b/bindings/python/tree_sitter_elixir/__init__.py @@ -0,0 +1,5 @@ +"Elixir grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/bindings/python/tree_sitter_elixir/__init__.pyi b/bindings/python/tree_sitter_elixir/__init__.pyi new file mode 100644 index 0000000..5416666 --- /dev/null +++ b/bindings/python/tree_sitter_elixir/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/bindings/python/tree_sitter_elixir/binding.c b/bindings/python/tree_sitter_elixir/binding.c new file mode 100644 index 0000000..e54b822 --- /dev/null +++ b/bindings/python/tree_sitter_elixir/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_elixir(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_elixir()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/bindings/python/tree_sitter_elixir/py.typed b/bindings/python/tree_sitter_elixir/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/package-lock.json b/package-lock.json index ddb9ebe..1fcdd28 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,14 +7,20 @@ "": { "name": "tree-sitter-elixir", "version": "0.1.1", + "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "nan": "^2.15.0" + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" }, "devDependencies": { "clang-format": "^1.8.0", + "prebuildify": "^6.0.0", "prettier": "^2.3.2", - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.22.2" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" } }, "node_modules/async": { @@ -29,6 +35,37 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -39,6 +76,36 @@ "concat-map": "0.0.1" } }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, "node_modules/clang-format": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.8.0.tgz", @@ -61,6 +128,30 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/execspawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz", + "integrity": "sha512-s2k06Jy9i8CUkYe0+DxRlvtkZoOkwwfhB+Xxo5HGUtrISVW2m98jO2tr67DGRFxZwkjQqloA3v/tNtjhBRBieg==", + "dev": true, + "dependencies": { + "util-extend": "^1.0.1" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -105,6 +196,26 @@ "node": ">= 0.4.0" } }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -133,6 +244,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -145,10 +268,62 @@ "node": "*" } }, - "node_modules/nan": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz", - "integrity": "sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==" + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.57.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", + "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", + "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==", + "engines": { + "node": "^16 || ^18 || >= 20" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", + "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, "node_modules/once": { "version": "1.4.0", @@ -168,12 +343,39 @@ "node": ">=0.10.0" } }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "node_modules/prebuildify": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.0.tgz", + "integrity": "sha512-DEvK4C3tcimIp7Pzqbs036n9i6CTKGp1XVEpMnr4wV3enKU5sBogPP+lP3KZw7993i42bXnsd5eIxAXQ566Cqw==", + "dev": true, + "dependencies": { + "execspawn": "^1.0.1", + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, "node_modules/prettier": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", @@ -186,6 +388,30 @@ "node": ">=10.13.0" } }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/resolve": { "version": "1.22.2", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", @@ -203,6 +429,50 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", @@ -215,21 +485,87 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, "node_modules/tree-sitter-cli": { - "version": "0.20.7", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.7.tgz", - "integrity": "sha512-MHABT8oCPr4D0fatsPo6ATQ9H4h9vHpPRjlxkxJs80tpfAEKGn6A1zU3eqfCKBcgmfZDe9CiL3rKOGMzYHwA3w==", + "version": "0.22.2", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.2.tgz", + "integrity": "sha512-ecqccEp27XMFXgjLMEEU71vK9JCWAC7fqSTTxcs5P1tnEnaaf4GkHz/wfo4lJ9l3rfxcTDPxN84tHAoitIQqdA==", "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" } }, + "node_modules/tree-sitter/node_modules/node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "peer": true, + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", + "dev": true + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } }, "dependencies": { @@ -245,6 +581,23 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -255,6 +608,22 @@ "concat-map": "0.0.1" } }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, "clang-format": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.8.0.tgz", @@ -272,6 +641,30 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "execspawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz", + "integrity": "sha512-s2k06Jy9i8CUkYe0+DxRlvtkZoOkwwfhB+Xxo5HGUtrISVW2m98jO2tr67DGRFxZwkjQqloA3v/tNtjhBRBieg==", + "dev": true, + "requires": { + "util-extend": "^1.0.1" + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -307,6 +700,12 @@ "function-bind": "^1.1.1" } }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -332,6 +731,15 @@ "has": "^1.0.3" } }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -341,10 +749,45 @@ "brace-expansion": "^1.1.7" } }, - "nan": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.19.0.tgz", - "integrity": "sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==" + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node-abi": { + "version": "3.57.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", + "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "dev": true, + "requires": { + "semver": "^7.3.5" + } + }, + "node-addon-api": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz", + "integrity": "sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==" + }, + "node-gyp-build": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", + "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==" + }, + "npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } }, "once": { "version": "1.4.0", @@ -361,18 +804,60 @@ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "prebuildify": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.0.tgz", + "integrity": "sha512-DEvK4C3tcimIp7Pzqbs036n9i6CTKGp1XVEpMnr4wV3enKU5sBogPP+lP3KZw7993i42bXnsd5eIxAXQ566Cqw==", + "dev": true, + "requires": { + "execspawn": "^1.0.1", + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + } + }, "prettier": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", "integrity": "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==", "dev": true }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, "resolve": { "version": "1.22.2", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", @@ -384,16 +869,95 @@ "supports-preserve-symlinks-flag": "^1.0.0" } }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, "supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, + "tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "peer": true, + "requires": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + }, + "dependencies": { + "node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "peer": true + } + } + }, "tree-sitter-cli": { - "version": "0.20.7", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.7.tgz", - "integrity": "sha512-MHABT8oCPr4D0fatsPo6ATQ9H4h9vHpPRjlxkxJs80tpfAEKGn6A1zU3eqfCKBcgmfZDe9CiL3rKOGMzYHwA3w==", + "version": "0.22.2", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.2.tgz", + "integrity": "sha512-ecqccEp27XMFXgjLMEEU71vK9JCWAC7fqSTTxcs5P1tnEnaaf4GkHz/wfo4lJ9l3rfxcTDPxN84tHAoitIQqdA==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", "dev": true }, "wrappy": { @@ -401,6 +965,12 @@ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } } diff --git a/package.json b/package.json index 3ba8df5..9997a85 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,15 @@ "version": "0.1.1", "description": "Elixir grammar for the tree-sitter parsing library", "main": "bindings/node", - "keywords": [ - "parser", - "lexer", - "elixir", - "tree-sitter" + "types": "bindings/node", + "keywords": ["parser", "lexer", "elixir", "tree-sitter"], + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" ], "license": "Apache-2.0", "repository": { @@ -17,23 +21,29 @@ "scripts": { "test": "tree-sitter test", "format": "prettier --trailing-comma es5 --write grammar.js && clang-format -i src/scanner.c", - "format-check": "prettier --trailing-comma es5 --check grammar.js && cat src/scanner.c | clang-format src/scanner.c | diff src/scanner.c -" + "format-check": "prettier --trailing-comma es5 --check grammar.js && cat src/scanner.c | clang-format src/scanner.c | diff src/scanner.c -", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip" }, "dependencies": { - "nan": "^2.15.0" + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" }, "devDependencies": { "clang-format": "^1.8.0", "prettier": "^2.3.2", - "tree-sitter-cli": "^0.20.7" + "tree-sitter-cli": "^0.22.2", + "prebuildify": "^6.0.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" }, "tree-sitter": [ { "scope": "source.elixir", - "file-types": [ - "ex", - "exs" - ], + "file-types": ["ex", "exs"], + "highlights": ["queries/highlights.scm"], + "tags": ["queries/tags.scm"], "injection-regex": "^(ex|elixir)$" } ] diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9f7c8c7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-elixir" +description = "Elixir grammar for tree-sitter" +version = "0.0.1" +keywords = ["incremental", "parsing", "tree-sitter", "elixir"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed" +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-elixir" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/queries/highlights.scm b/queries/highlights.scm index 9d62308..c9841d3 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -1,54 +1,24 @@ -; Reserved keywords - -["when" "and" "or" "not" "in" "not in" "fn" "do" "end" "catch" "rescue" "after" "else"] @keyword - -; Operators - -; * doc string -(unary_operator - operator: "@" @comment.doc - operand: (call - target: (identifier) @comment.doc.__attribute__ - (arguments - [ - (string) @comment.doc - (charlist) @comment.doc - (sigil - quoted_start: _ @comment.doc - quoted_end: _ @comment.doc) @comment.doc - (boolean) @comment.doc - ])) - (#match? @comment.doc.__attribute__ "^(moduledoc|typedoc|doc)$")) - -; * module attribute -(unary_operator - operator: "@" @attribute - operand: [ - (identifier) @attribute - (call - target: (identifier) @attribute) - (boolean) @attribute - (nil) @attribute - ]) - -; * capture operand -(unary_operator - operator: "&" - operand: (integer) @operator) - -(operator_identifier) @operator - -(unary_operator - operator: _ @operator) +; Punctuation -(binary_operator - operator: _ @operator) +[ + "%" +] @punctuation -(dot - operator: _ @operator) +[ + "," + ";" +] @punctuation.delimiter -(stab_clause - operator: _ @operator) +[ + "(" + ")" + "[" + "]" + "{" + "}" + "<<" + ">>" +] @punctuation.bracket ; Literals @@ -62,13 +32,28 @@ (float) ] @number -(alias) @module +(char) @constant -(call - target: (dot - left: (atom) @module)) +; Identifiers -(char) @constant +; * regular +(identifier) @variable + +; * unused +( + (identifier) @comment.unused + (#match? @comment.unused "^_") +) + +; * special +( + (identifier) @constant.builtin + (#match? @constant.builtin "^(__MODULE__|__DIR__|__ENV__|__CALLER__|__STACKTRACE__)$") +) + +; Comment + +(comment) @comment ; Quoted content @@ -76,6 +61,11 @@ (escape_sequence) @string.escape +[ + (string) + (charlist) +] @string + [ (atom) (quoted_atom) @@ -83,13 +73,13 @@ (quoted_keyword) ] @string.special.symbol -[ - (string) - (charlist) -] @string - ; Note that we explicitly target sigil quoted start/end, so they are not overridden by delimiters +(sigil + (sigil_name) @__name__ + quoted_start: _ @string.special + quoted_end: _ @string.special) @string.special + (sigil (sigil_name) @__name__ quoted_start: _ @string @@ -102,23 +92,8 @@ quoted_end: _ @string.regex (#match? @__name__ "^[rR]$")) @string.regex -(sigil - (sigil_name) @__name__ - quoted_start: _ @string.special - quoted_end: _ @string.special) @string.special - ; Calls -; * definition keyword -(call - target: (identifier) @keyword - (#match? @keyword "^(def|defdelegate|defexception|defguard|defguardp|defimpl|defmacro|defmacrop|defmodule|defn|defnp|defoverridable|defp|defprotocol|defstruct)$")) - -; * kernel or special forms keyword -(call - target: (identifier) @keyword - (#match? @keyword "^(alias|case|cond|for|if|import|quote|raise|receive|require|reraise|super|throw|try|unless|unquote|unquote_splicing|use|with)$")) - ; * function call (call target: [ @@ -129,6 +104,16 @@ right: (identifier) @function) ]) +; * definition keyword +(call + target: (identifier) @keyword + (#match? @keyword "^(def|defdelegate|defexception|defguard|defguardp|defimpl|defmacro|defmacrop|defmodule|defn|defnp|defoverridable|defp|defprotocol|defstruct)$")) + +; * kernel or special forms keyword +(call + target: (identifier) @keyword + (#match? @keyword "^(alias|case|cond|for|if|import|quote|raise|receive|require|reraise|super|throw|try|unless|unquote|unquote_splicing|use|with)$")) + ; * just identifier in function definition (call target: (identifier) @keyword @@ -141,6 +126,11 @@ ]) (#match? @keyword "^(def|defdelegate|defguard|defguardp|defmacro|defmacrop|defn|defnp|defp)$")) +; * pipe into identifier (function call) +(binary_operator + operator: "|>" + right: (identifier) @function) + ; * pipe into identifier (definition) (call target: (identifier) @keyword @@ -150,50 +140,62 @@ right: (identifier) @variable)) (#match? @keyword "^(def|defdelegate|defguard|defguardp|defmacro|defmacrop|defn|defnp|defp)$")) -; * pipe into identifier (function call) -(binary_operator - operator: "|>" - right: (identifier) @function) +; Operators -; Identifiers +; * capture operand +(unary_operator + operator: "&" + operand: (integer) @operator) -; * special -( - (identifier) @constant.builtin - (#match? @constant.builtin "^(__MODULE__|__DIR__|__ENV__|__CALLER__|__STACKTRACE__)$") -) +(operator_identifier) @operator -; * unused -( - (identifier) @comment.unused - (#match? @comment.unused "^_") -) +(unary_operator + operator: _ @operator) -; * regular -(identifier) @variable +(binary_operator + operator: _ @operator) -; Comment +(dot + operator: _ @operator) -(comment) @comment +(stab_clause + operator: _ @operator) -; Punctuation +; * module attribute +(unary_operator + operator: "@" @attribute + operand: [ + (identifier) @attribute + (call + target: (identifier) @attribute) + (boolean) @attribute + (nil) @attribute + ]) -[ - "%" -] @punctuation +; * doc string +(unary_operator + operator: "@" @comment.doc + operand: (call + target: (identifier) @comment.doc.__attribute__ + (arguments + [ + (string) @comment.doc + (charlist) @comment.doc + (sigil + quoted_start: _ @comment.doc + quoted_end: _ @comment.doc) @comment.doc + (boolean) @comment.doc + ])) + (#match? @comment.doc.__attribute__ "^(moduledoc|typedoc|doc)$")) -[ - "," - ";" -] @punctuation.delimiter +; Module -[ - "(" - ")" - "[" - "]" - "{" - "}" - "<<" - ">>" -] @punctuation.bracket +(alias) @module + +(call + target: (dot + left: (atom) @module)) + +; Reserved keywords + +["when" "and" "or" "not" "in" "not in" "fn" "do" "end" "catch" "rescue" "after" "else"] @keyword diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f5dce35 --- /dev/null +++ b/setup.py @@ -0,0 +1,57 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_elixir", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_elixir": ["*.pyi", "py.typed"], + "tree_sitter_elixir.queries": ["*.scm"], + }, + ext_package="tree_sitter_elixir", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_elixir/binding.c", + "src/parser.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=( + ["-std=c11"] if system() != 'Windows' else [] + ), + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/src/grammar.json b/src/grammar.json index 8d2524e..89a330a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -327,7 +327,8 @@ "members": [ { "type": "PATTERN", - "value": "[_\\p{Ll}\\p{Lm}\\p{Lo}\\p{Nl}\\u1885\\u1886\\u2118\\u212E\\u309B\\u309C][\\p{ID_Continue}]*[?!]?" + "value": "[_\\p{Ll}\\p{Lm}\\p{Lo}\\p{Nl}\\u1885\\u1886\\u2118\\u212E\\u309B\\u309C][\\p{ID_Continue}]*[?!]?", + "flags": "u" }, { "type": "STRING", @@ -778,7 +779,8 @@ "members": [ { "type": "PATTERN", - "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?" + "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?", + "flags": "u" }, { "type": "STRING", @@ -2823,7 +2825,8 @@ "members": [ { "type": "PATTERN", - "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?" + "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?", + "flags": "u" }, { "type": "STRING", @@ -6746,4 +6749,3 @@ "inline": [], "supertypes": [] } - diff --git a/src/parser.c b/src/parser.c index e5941bc..2bfe776 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,7 +1,6 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -24,7 +23,7 @@ #define MAX_ALIAS_SEQUENCE_LENGTH 7 #define PRODUCTION_ID_COUNT 28 -enum { +enum ts_symbol_identifiers { aux_sym__terminator_token1 = 1, anon_sym_SEMI = 2, anon_sym_LPAREN = 3, @@ -1680,7 +1679,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_key = 1, field_left = 2, field_operand = 3, @@ -1984,14 +1983,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [124] = 113, [125] = 125, [126] = 125, - [127] = 127, + [127] = 125, [128] = 125, - [129] = 127, + [129] = 129, [130] = 125, [131] = 125, [132] = 132, [133] = 125, - [134] = 125, + [134] = 129, [135] = 125, [136] = 125, [137] = 125, @@ -2122,38 +2121,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [262] = 188, [263] = 263, [264] = 264, - [265] = 176, - [266] = 266, + [265] = 265, + [266] = 265, [267] = 264, [268] = 268, [269] = 264, - [270] = 266, + [270] = 265, [271] = 268, - [272] = 266, + [272] = 265, [273] = 264, - [274] = 266, + [274] = 265, [275] = 268, - [276] = 264, + [276] = 176, [277] = 277, [278] = 277, - [279] = 266, + [279] = 265, [280] = 268, - [281] = 266, - [282] = 177, + [281] = 264, + [282] = 282, [283] = 264, - [284] = 266, + [284] = 265, [285] = 176, [286] = 264, [287] = 287, - [288] = 266, + [288] = 265, [289] = 289, [290] = 290, [291] = 268, [292] = 268, [293] = 268, [294] = 294, - [295] = 295, - [296] = 266, + [295] = 264, + [296] = 265, [297] = 277, [298] = 298, [299] = 299, @@ -2161,15 +2160,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [301] = 277, [302] = 277, [303] = 303, - [304] = 264, + [304] = 177, [305] = 264, [306] = 264, [307] = 268, - [308] = 266, + [308] = 265, [309] = 309, [310] = 264, [311] = 264, - [312] = 266, + [312] = 265, [313] = 313, [314] = 314, [315] = 315, @@ -2177,31 +2176,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [317] = 317, [318] = 277, [319] = 264, - [320] = 266, - [321] = 266, + [320] = 265, + [321] = 265, [322] = 264, - [323] = 266, + [323] = 265, [324] = 324, [325] = 264, - [326] = 266, + [326] = 265, [327] = 327, [328] = 264, - [329] = 266, + [329] = 265, [330] = 277, [331] = 264, - [332] = 266, + [332] = 265, [333] = 333, [334] = 334, [335] = 264, [336] = 268, - [337] = 266, + [337] = 265, [338] = 277, [339] = 277, [340] = 264, - [341] = 266, + [341] = 265, [342] = 177, [343] = 264, - [344] = 266, + [344] = 265, [345] = 345, [346] = 258, [347] = 261, @@ -2217,17 +2216,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [357] = 357, [358] = 357, [359] = 355, - [360] = 357, + [360] = 355, [361] = 357, [362] = 362, [363] = 357, [364] = 355, - [365] = 365, + [365] = 357, [366] = 355, [367] = 355, [368] = 356, [369] = 357, - [370] = 365, + [370] = 370, [371] = 371, [372] = 355, [373] = 373, @@ -2235,7 +2234,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [375] = 357, [376] = 362, [377] = 355, - [378] = 355, + [378] = 357, [379] = 356, [380] = 357, [381] = 357, @@ -2249,7 +2248,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [389] = 356, [390] = 371, [391] = 355, - [392] = 362, + [392] = 370, [393] = 362, [394] = 357, [395] = 362, @@ -2261,45 +2260,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [401] = 373, [402] = 355, [403] = 373, - [404] = 357, + [404] = 362, [405] = 357, - [406] = 355, + [406] = 357, [407] = 355, [408] = 357, - [409] = 357, + [409] = 355, [410] = 355, [411] = 373, [412] = 371, - [413] = 365, - [414] = 365, + [413] = 370, + [414] = 370, [415] = 355, - [416] = 365, - [417] = 365, + [416] = 370, + [417] = 370, [418] = 357, [419] = 362, [420] = 356, [421] = 356, - [422] = 365, + [422] = 370, [423] = 373, [424] = 424, [425] = 425, [426] = 362, [427] = 355, - [428] = 365, + [428] = 370, [429] = 357, [430] = 357, [431] = 371, [432] = 371, [433] = 362, [434] = 356, - [435] = 365, + [435] = 370, [436] = 373, [437] = 373, [438] = 356, [439] = 373, [440] = 371, [441] = 441, - [442] = 365, + [442] = 370, [443] = 362, [444] = 356, [445] = 362, @@ -2310,463 +2309,463 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [450] = 356, [451] = 373, [452] = 373, - [453] = 365, - [454] = 365, + [453] = 370, + [454] = 370, [455] = 355, [456] = 456, [457] = 457, [458] = 458, [459] = 459, - [460] = 460, + [460] = 457, [461] = 461, [462] = 462, [463] = 463, [464] = 464, [465] = 465, - [466] = 466, + [466] = 456, [467] = 467, [468] = 468, [469] = 469, - [470] = 459, - [471] = 460, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 461, - [476] = 462, - [477] = 463, - [478] = 457, - [479] = 479, - [480] = 464, - [481] = 481, - [482] = 465, - [483] = 466, + [470] = 470, + [471] = 471, + [472] = 470, + [473] = 470, + [474] = 470, + [475] = 458, + [476] = 470, + [477] = 459, + [478] = 470, + [479] = 470, + [480] = 470, + [481] = 470, + [482] = 482, + [483] = 483, [484] = 484, [485] = 485, [486] = 486, [487] = 487, - [488] = 458, - [489] = 456, + [488] = 488, + [489] = 470, [490] = 490, [491] = 491, - [492] = 459, - [493] = 467, - [494] = 491, - [495] = 460, - [496] = 468, - [497] = 469, - [498] = 491, - [499] = 491, - [500] = 472, - [501] = 473, - [502] = 459, - [503] = 491, - [504] = 460, - [505] = 474, - [506] = 457, - [507] = 491, - [508] = 479, - [509] = 481, - [510] = 485, - [511] = 487, - [512] = 491, - [513] = 513, - [514] = 461, - [515] = 462, - [516] = 463, - [517] = 464, - [518] = 491, - [519] = 465, - [520] = 466, - [521] = 459, - [522] = 460, - [523] = 461, - [524] = 491, - [525] = 462, - [526] = 463, - [527] = 464, - [528] = 465, - [529] = 456, - [530] = 466, - [531] = 456, - [532] = 467, - [533] = 468, - [534] = 469, - [535] = 472, - [536] = 473, - [537] = 467, - [538] = 474, - [539] = 457, - [540] = 479, - [541] = 481, - [542] = 468, - [543] = 485, - [544] = 491, - [545] = 487, - [546] = 490, - [547] = 469, - [548] = 472, - [549] = 487, - [550] = 485, - [551] = 481, - [552] = 479, - [553] = 457, - [554] = 474, - [555] = 473, - [556] = 472, - [557] = 469, - [558] = 468, - [559] = 473, - [560] = 467, - [561] = 456, - [562] = 466, - [563] = 465, - [564] = 474, - [565] = 464, - [566] = 463, - [567] = 457, - [568] = 479, - [569] = 481, - [570] = 485, - [571] = 487, - [572] = 458, - [573] = 462, - [574] = 461, - [575] = 459, - [576] = 460, - [577] = 460, - [578] = 513, - [579] = 459, - [580] = 461, - [581] = 462, - [582] = 463, - [583] = 464, - [584] = 465, - [585] = 466, - [586] = 456, - [587] = 467, + [492] = 458, + [493] = 459, + [494] = 494, + [495] = 494, + [496] = 470, + [497] = 491, + [498] = 457, + [499] = 499, + [500] = 487, + [501] = 499, + [502] = 485, + [503] = 499, + [504] = 484, + [505] = 499, + [506] = 483, + [507] = 499, + [508] = 482, + [509] = 499, + [510] = 471, + [511] = 499, + [512] = 490, + [513] = 469, + [514] = 457, + [515] = 468, + [516] = 461, + [517] = 499, + [518] = 467, + [519] = 499, + [520] = 461, + [521] = 490, + [522] = 456, + [523] = 465, + [524] = 464, + [525] = 499, + [526] = 490, + [527] = 463, + [528] = 462, + [529] = 458, + [530] = 499, + [531] = 462, + [532] = 490, + [533] = 463, + [534] = 464, + [535] = 465, + [536] = 459, + [537] = 456, + [538] = 467, + [539] = 461, + [540] = 468, + [541] = 471, + [542] = 482, + [543] = 483, + [544] = 457, + [545] = 484, + [546] = 485, + [547] = 499, + [548] = 487, + [549] = 491, + [550] = 494, + [551] = 457, + [552] = 470, + [553] = 469, + [554] = 490, + [555] = 461, + [556] = 459, + [557] = 458, + [558] = 494, + [559] = 491, + [560] = 499, + [561] = 487, + [562] = 485, + [563] = 484, + [564] = 483, + [565] = 482, + [566] = 490, + [567] = 462, + [568] = 463, + [569] = 471, + [570] = 464, + [571] = 465, + [572] = 456, + [573] = 467, + [574] = 469, + [575] = 499, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 490, + [580] = 468, + [581] = 469, + [582] = 471, + [583] = 499, + [584] = 490, + [585] = 482, + [586] = 483, + [587] = 484, [588] = 588, - [589] = 468, - [590] = 469, - [591] = 472, - [592] = 473, - [593] = 458, - [594] = 474, - [595] = 457, - [596] = 479, - [597] = 481, - [598] = 485, - [599] = 487, - [600] = 490, - [601] = 458, - [602] = 602, - [603] = 603, - [604] = 490, - [605] = 458, - [606] = 490, + [589] = 499, + [590] = 490, + [591] = 485, + [592] = 494, + [593] = 491, + [594] = 499, + [595] = 487, + [596] = 462, + [597] = 463, + [598] = 464, + [599] = 490, + [600] = 485, + [601] = 465, + [602] = 484, + [603] = 456, + [604] = 483, + [605] = 499, + [606] = 494, [607] = 491, - [608] = 458, - [609] = 461, - [610] = 469, - [611] = 490, - [612] = 491, - [613] = 487, - [614] = 490, - [615] = 485, - [616] = 481, - [617] = 490, - [618] = 490, - [619] = 479, - [620] = 490, - [621] = 459, - [622] = 490, - [623] = 460, - [624] = 461, - [625] = 462, - [626] = 463, - [627] = 464, - [628] = 465, - [629] = 490, - [630] = 466, - [631] = 456, - [632] = 467, - [633] = 468, - [634] = 469, - [635] = 472, - [636] = 473, - [637] = 459, - [638] = 460, - [639] = 457, - [640] = 474, - [641] = 473, - [642] = 474, - [643] = 457, - [644] = 479, - [645] = 481, - [646] = 485, - [647] = 472, - [648] = 487, - [649] = 468, - [650] = 467, - [651] = 459, - [652] = 456, - [653] = 460, - [654] = 461, - [655] = 462, - [656] = 461, - [657] = 462, - [658] = 463, - [659] = 464, - [660] = 465, - [661] = 466, - [662] = 487, - [663] = 485, - [664] = 481, - [665] = 490, - [666] = 479, - [667] = 457, - [668] = 474, - [669] = 473, - [670] = 472, - [671] = 469, - [672] = 468, - [673] = 456, - [674] = 467, - [675] = 456, - [676] = 466, - [677] = 465, - [678] = 466, - [679] = 464, - [680] = 463, - [681] = 464, - [682] = 463, - [683] = 465, - [684] = 466, + [608] = 487, + [609] = 485, + [610] = 484, + [611] = 483, + [612] = 482, + [613] = 471, + [614] = 469, + [615] = 468, + [616] = 467, + [617] = 456, + [618] = 465, + [619] = 464, + [620] = 463, + [621] = 462, + [622] = 461, + [623] = 457, + [624] = 459, + [625] = 458, + [626] = 467, + [627] = 482, + [628] = 468, + [629] = 469, + [630] = 578, + [631] = 471, + [632] = 469, + [633] = 471, + [634] = 494, + [635] = 491, + [636] = 494, + [637] = 458, + [638] = 459, + [639] = 491, + [640] = 487, + [641] = 485, + [642] = 487, + [643] = 485, + [644] = 484, + [645] = 483, + [646] = 482, + [647] = 468, + [648] = 471, + [649] = 469, + [650] = 487, + [651] = 484, + [652] = 467, + [653] = 468, + [654] = 456, + [655] = 483, + [656] = 457, + [657] = 461, + [658] = 482, + [659] = 467, + [660] = 482, + [661] = 471, + [662] = 469, + [663] = 468, + [664] = 465, + [665] = 499, + [666] = 483, + [667] = 465, + [668] = 464, + [669] = 484, + [670] = 463, + [671] = 467, + [672] = 462, + [673] = 485, + [674] = 456, + [675] = 487, + [676] = 465, + [677] = 491, + [678] = 464, + [679] = 494, + [680] = 462, + [681] = 463, + [682] = 464, + [683] = 464, + [684] = 465, [685] = 456, [686] = 467, - [687] = 465, + [687] = 463, [688] = 468, [689] = 469, - [690] = 472, - [691] = 473, - [692] = 474, - [693] = 457, - [694] = 479, - [695] = 481, - [696] = 485, - [697] = 487, - [698] = 464, - [699] = 458, + [690] = 471, + [691] = 482, + [692] = 483, + [693] = 484, + [694] = 485, + [695] = 487, + [696] = 491, + [697] = 494, + [698] = 462, + [699] = 491, [700] = 463, - [701] = 467, - [702] = 490, + [701] = 462, + [702] = 494, [703] = 468, - [704] = 469, - [705] = 472, - [706] = 473, - [707] = 474, + [704] = 467, + [705] = 456, + [706] = 458, + [707] = 459, [708] = 457, - [709] = 479, - [710] = 481, - [711] = 485, - [712] = 487, - [713] = 490, - [714] = 462, - [715] = 461, - [716] = 459, - [717] = 460, - [718] = 461, - [719] = 462, - [720] = 463, - [721] = 490, - [722] = 464, - [723] = 458, - [724] = 465, - [725] = 466, - [726] = 456, - [727] = 467, - [728] = 460, - [729] = 459, - [730] = 468, - [731] = 469, - [732] = 472, + [709] = 461, + [710] = 465, + [711] = 464, + [712] = 462, + [713] = 463, + [714] = 461, + [715] = 464, + [716] = 457, + [717] = 465, + [718] = 456, + [719] = 467, + [720] = 459, + [721] = 458, + [722] = 468, + [723] = 469, + [724] = 461, + [725] = 457, + [726] = 471, + [727] = 461, + [728] = 482, + [729] = 457, + [730] = 483, + [731] = 484, + [732] = 485, [733] = 490, - [734] = 487, - [735] = 485, - [736] = 481, - [737] = 479, - [738] = 457, - [739] = 474, - [740] = 473, - [741] = 472, - [742] = 469, - [743] = 468, - [744] = 467, - [745] = 456, - [746] = 466, - [747] = 465, - [748] = 464, - [749] = 463, + [734] = 486, + [735] = 487, + [736] = 491, + [737] = 494, + [738] = 463, + [739] = 462, + [740] = 458, + [741] = 459, + [742] = 499, + [743] = 457, + [744] = 461, + [745] = 459, + [746] = 458, + [747] = 459, + [748] = 458, + [749] = 458, [750] = 462, - [751] = 461, - [752] = 460, - [753] = 459, - [754] = 473, - [755] = 474, - [756] = 457, - [757] = 479, - [758] = 481, - [759] = 485, - [760] = 487, - [761] = 459, - [762] = 460, - [763] = 461, - [764] = 462, - [765] = 463, - [766] = 464, - [767] = 458, - [768] = 465, - [769] = 466, - [770] = 456, - [771] = 467, - [772] = 468, - [773] = 469, - [774] = 472, - [775] = 473, - [776] = 474, - [777] = 513, - [778] = 457, - [779] = 479, - [780] = 481, - [781] = 485, - [782] = 487, - [783] = 459, - [784] = 458, - [785] = 460, - [786] = 461, - [787] = 462, - [788] = 463, - [789] = 464, - [790] = 465, - [791] = 466, - [792] = 456, - [793] = 467, - [794] = 468, - [795] = 469, - [796] = 472, - [797] = 473, - [798] = 474, - [799] = 484, - [800] = 479, - [801] = 481, - [802] = 485, - [803] = 487, - [804] = 459, - [805] = 460, - [806] = 461, - [807] = 462, - [808] = 463, - [809] = 464, - [810] = 465, - [811] = 466, - [812] = 456, - [813] = 467, - [814] = 468, - [815] = 469, - [816] = 472, - [817] = 473, - [818] = 474, - [819] = 457, - [820] = 479, - [821] = 481, - [822] = 485, - [823] = 487, - [824] = 487, + [751] = 459, + [752] = 463, + [753] = 464, + [754] = 465, + [755] = 456, + [756] = 467, + [757] = 468, + [758] = 469, + [759] = 471, + [760] = 482, + [761] = 483, + [762] = 484, + [763] = 485, + [764] = 487, + [765] = 491, + [766] = 494, + [767] = 461, + [768] = 491, + [769] = 458, + [770] = 459, + [771] = 457, + [772] = 461, + [773] = 462, + [774] = 463, + [775] = 464, + [776] = 465, + [777] = 456, + [778] = 467, + [779] = 468, + [780] = 469, + [781] = 471, + [782] = 482, + [783] = 483, + [784] = 484, + [785] = 485, + [786] = 457, + [787] = 487, + [788] = 461, + [789] = 491, + [790] = 494, + [791] = 458, + [792] = 459, + [793] = 461, + [794] = 462, + [795] = 463, + [796] = 457, + [797] = 578, + [798] = 464, + [799] = 465, + [800] = 456, + [801] = 467, + [802] = 468, + [803] = 469, + [804] = 471, + [805] = 482, + [806] = 462, + [807] = 463, + [808] = 464, + [809] = 483, + [810] = 484, + [811] = 485, + [812] = 487, + [813] = 491, + [814] = 494, + [815] = 459, + [816] = 465, + [817] = 456, + [818] = 467, + [819] = 468, + [820] = 469, + [821] = 471, + [822] = 482, + [823] = 483, + [824] = 484, [825] = 485, - [826] = 481, - [827] = 479, - [828] = 457, - [829] = 474, - [830] = 473, - [831] = 472, - [832] = 469, - [833] = 468, - [834] = 458, - [835] = 467, - [836] = 456, - [837] = 466, - [838] = 465, - [839] = 464, - [840] = 463, - [841] = 459, - [842] = 460, - [843] = 461, - [844] = 462, - [845] = 463, - [846] = 464, - [847] = 465, - [848] = 466, - [849] = 456, - [850] = 467, - [851] = 468, - [852] = 469, - [853] = 513, - [854] = 472, - [855] = 473, - [856] = 462, - [857] = 474, - [858] = 457, - [859] = 479, - [860] = 462, - [861] = 461, - [862] = 490, - [863] = 481, - [864] = 485, - [865] = 487, - [866] = 485, - [867] = 481, - [868] = 479, - [869] = 457, - [870] = 474, - [871] = 473, - [872] = 472, - [873] = 469, - [874] = 468, - [875] = 467, - [876] = 456, - [877] = 466, - [878] = 465, - [879] = 464, - [880] = 463, - [881] = 462, - [882] = 461, - [883] = 460, - [884] = 459, - [885] = 487, - [886] = 459, - [887] = 460, - [888] = 461, - [889] = 462, - [890] = 460, - [891] = 487, - [892] = 485, - [893] = 481, - [894] = 479, - [895] = 457, - [896] = 474, - [897] = 473, - [898] = 472, - [899] = 469, - [900] = 468, - [901] = 467, - [902] = 456, - [903] = 466, - [904] = 465, - [905] = 459, - [906] = 490, - [907] = 463, - [908] = 464, - [909] = 490, + [826] = 487, + [827] = 491, + [828] = 494, + [829] = 458, + [830] = 494, + [831] = 491, + [832] = 487, + [833] = 485, + [834] = 484, + [835] = 483, + [836] = 482, + [837] = 471, + [838] = 469, + [839] = 468, + [840] = 467, + [841] = 456, + [842] = 458, + [843] = 459, + [844] = 457, + [845] = 461, + [846] = 462, + [847] = 463, + [848] = 464, + [849] = 465, + [850] = 456, + [851] = 467, + [852] = 468, + [853] = 578, + [854] = 469, + [855] = 471, + [856] = 482, + [857] = 483, + [858] = 484, + [859] = 485, + [860] = 487, + [861] = 491, + [862] = 494, + [863] = 465, + [864] = 464, + [865] = 463, + [866] = 462, + [867] = 461, + [868] = 457, + [869] = 459, + [870] = 458, + [871] = 494, + [872] = 491, + [873] = 487, + [874] = 485, + [875] = 484, + [876] = 483, + [877] = 482, + [878] = 494, + [879] = 471, + [880] = 487, + [881] = 485, + [882] = 484, + [883] = 483, + [884] = 482, + [885] = 471, + [886] = 469, + [887] = 468, + [888] = 469, + [889] = 467, + [890] = 456, + [891] = 465, + [892] = 464, + [893] = 468, + [894] = 463, + [895] = 462, + [896] = 467, + [897] = 456, + [898] = 465, + [899] = 464, + [900] = 463, + [901] = 462, + [902] = 461, + [903] = 457, + [904] = 459, + [905] = 458, + [906] = 461, + [907] = 457, + [908] = 459, + [909] = 458, [910] = 910, [911] = 911, [912] = 912, @@ -2785,110 +2784,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [925] = 925, [926] = 926, [927] = 926, - [928] = 921, - [929] = 923, + [928] = 913, + [929] = 918, [930] = 920, - [931] = 913, - [932] = 912, + [931] = 921, + [932] = 916, [933] = 915, [934] = 910, - [935] = 917, - [936] = 922, - [937] = 924, - [938] = 925, - [939] = 926, - [940] = 911, - [941] = 916, - [942] = 919, - [943] = 914, - [944] = 918, + [935] = 926, + [936] = 911, + [937] = 912, + [938] = 917, + [939] = 919, + [940] = 923, + [941] = 914, + [942] = 924, + [943] = 922, + [944] = 925, [945] = 915, [946] = 914, [947] = 926, - [948] = 924, - [949] = 910, - [950] = 911, - [951] = 912, - [952] = 913, - [953] = 920, - [954] = 922, - [955] = 923, - [956] = 911, - [957] = 910, - [958] = 924, - [959] = 919, - [960] = 918, - [961] = 912, - [962] = 921, - [963] = 926, - [964] = 925, - [965] = 925, - [966] = 917, - [967] = 916, - [968] = 915, - [969] = 914, - [970] = 926, - [971] = 916, - [972] = 915, - [973] = 924, - [974] = 910, - [975] = 911, - [976] = 914, - [977] = 923, - [978] = 917, - [979] = 922, - [980] = 912, - [981] = 918, - [982] = 926, - [983] = 913, - [984] = 919, - [985] = 923, - [986] = 922, - [987] = 919, + [948] = 913, + [949] = 914, + [950] = 914, + [951] = 913, + [952] = 917, + [953] = 916, + [954] = 916, + [955] = 925, + [956] = 917, + [957] = 926, + [958] = 925, + [959] = 924, + [960] = 912, + [961] = 919, + [962] = 924, + [963] = 925, + [964] = 920, + [965] = 922, + [966] = 923, + [967] = 926, + [968] = 921, + [969] = 910, + [970] = 919, + [971] = 913, + [972] = 911, + [973] = 911, + [974] = 920, + [975] = 922, + [976] = 923, + [977] = 910, + [978] = 921, + [979] = 912, + [980] = 921, + [981] = 923, + [982] = 922, + [983] = 920, + [984] = 924, + [985] = 915, + [986] = 910, + [987] = 911, [988] = 918, - [989] = 925, - [990] = 920, - [991] = 917, - [992] = 916, - [993] = 921, - [994] = 921, - [995] = 913, - [996] = 920, - [997] = 916, - [998] = 918, - [999] = 914, + [989] = 912, + [990] = 917, + [991] = 919, + [992] = 915, + [993] = 916, + [994] = 918, + [995] = 926, + [996] = 918, + [997] = 919, + [998] = 916, + [999] = 920, [1000] = 922, - [1001] = 920, - [1002] = 913, - [1003] = 926, + [1001] = 923, + [1002] = 921, + [1003] = 910, [1004] = 926, - [1005] = 919, - [1006] = 921, - [1007] = 912, + [1005] = 914, + [1006] = 913, + [1007] = 911, [1008] = 926, - [1009] = 923, - [1010] = 926, - [1011] = 917, - [1012] = 925, - [1013] = 915, - [1014] = 924, - [1015] = 911, - [1016] = 910, + [1009] = 912, + [1010] = 918, + [1011] = 926, + [1012] = 917, + [1013] = 926, + [1014] = 915, + [1015] = 925, + [1016] = 924, [1017] = 926, [1018] = 1018, [1019] = 1019, [1020] = 1018, [1021] = 1019, - [1022] = 1019, + [1022] = 1018, [1023] = 1023, [1024] = 1023, [1025] = 1023, - [1026] = 1019, - [1027] = 1018, - [1028] = 1018, - [1029] = 1019, + [1026] = 1018, + [1027] = 1019, + [1028] = 1019, + [1029] = 1018, [1030] = 1018, - [1031] = 1019, + [1031] = 1018, [1032] = 1019, [1033] = 1019, [1034] = 1018, @@ -2921,81 +2920,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1061] = 1060, [1062] = 1062, [1063] = 1060, - [1064] = 1060, + [1064] = 1062, [1065] = 1062, - [1066] = 1062, - [1067] = 1062, + [1066] = 1060, + [1067] = 1060, [1068] = 1062, - [1069] = 1062, + [1069] = 1060, [1070] = 1062, [1071] = 1062, - [1072] = 1062, + [1072] = 1060, [1073] = 1062, - [1074] = 1062, - [1075] = 1060, + [1074] = 1060, + [1075] = 1062, [1076] = 1060, - [1077] = 1060, + [1077] = 1062, [1078] = 1060, [1079] = 1060, - [1080] = 1060, + [1080] = 1062, [1081] = 1062, [1082] = 1060, - [1083] = 1060, + [1083] = 1062, [1084] = 1084, [1085] = 1085, - [1086] = 1086, + [1086] = 1084, [1087] = 1087, [1088] = 1088, - [1089] = 1088, - [1090] = 1085, - [1091] = 1091, + [1089] = 1085, + [1090] = 1090, + [1091] = 915, [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1085, + [1097] = 1097, [1098] = 1098, - [1099] = 1088, + [1099] = 1099, [1100] = 1100, [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, + [1102] = 1085, + [1103] = 1084, + [1104] = 925, + [1105] = 924, [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1085, + [1107] = 1088, + [1108] = 1087, + [1109] = 1090, + [1110] = 1110, [1111] = 1111, [1112] = 1112, [1113] = 1113, [1114] = 1114, - [1115] = 1088, + [1115] = 1115, [1116] = 1116, - [1117] = 1091, - [1118] = 1098, - [1119] = 1119, - [1120] = 919, + [1117] = 1117, + [1118] = 1118, + [1119] = 914, + [1120] = 913, [1121] = 1121, - [1122] = 1116, - [1123] = 1112, - [1124] = 1124, - [1125] = 1109, + [1122] = 1092, + [1123] = 1123, + [1124] = 1084, + [1125] = 1125, [1126] = 1126, [1127] = 1127, [1128] = 1128, - [1129] = 914, - [1130] = 918, - [1131] = 915, - [1132] = 916, - [1133] = 1086, - [1134] = 1087, + [1129] = 916, + [1130] = 1128, + [1131] = 1123, + [1132] = 1085, + [1133] = 1125, + [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1084, - [1138] = 917, + [1137] = 1137, + [1138] = 1126, [1139] = 1139, [1140] = 1140, [1141] = 1141, @@ -3019,80 +3018,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1159] = 1159, [1160] = 1160, [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, + [1162] = 925, + [1163] = 924, + [1164] = 914, + [1165] = 913, [1166] = 1166, [1167] = 1167, [1168] = 1168, - [1169] = 1127, - [1170] = 1119, + [1169] = 1169, + [1170] = 1170, [1171] = 1171, [1172] = 1172, [1173] = 1173, - [1174] = 1174, + [1174] = 916, [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, + [1176] = 915, + [1177] = 913, + [1178] = 914, [1179] = 1179, [1180] = 1180, - [1181] = 1094, + [1181] = 1181, [1182] = 1182, - [1183] = 1098, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1091, - [1188] = 1116, - [1189] = 1161, - [1190] = 1112, + [1183] = 924, + [1184] = 915, + [1185] = 916, + [1186] = 925, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, [1191] = 1191, - [1192] = 1160, - [1193] = 1092, - [1194] = 1105, - [1195] = 1109, - [1196] = 1126, + [1192] = 1135, + [1193] = 1137, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, [1197] = 1197, [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, - [1202] = 1093, + [1202] = 1202, [1203] = 1203, - [1204] = 1109, - [1205] = 1112, - [1206] = 1116, - [1207] = 1091, - [1208] = 1135, - [1209] = 1098, - [1210] = 1210, - [1211] = 914, - [1212] = 915, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1092, + [1209] = 1209, + [1210] = 1128, + [1211] = 1126, + [1212] = 1212, [1213] = 1213, - [1214] = 916, - [1215] = 917, - [1216] = 918, - [1217] = 919, + [1214] = 1125, + [1215] = 1123, + [1216] = 1216, + [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 1121, - [1221] = 1136, + [1219] = 1097, + [1220] = 1220, + [1221] = 1221, [1222] = 1222, - [1223] = 1128, - [1224] = 1096, - [1225] = 1124, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1114, - [1231] = 1102, - [1232] = 1107, - [1233] = 1108, - [1234] = 1185, - [1235] = 1184, + [1227] = 1088, + [1228] = 1087, + [1229] = 1090, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, [1236] = 1236, [1237] = 1237, [1238] = 1238, @@ -3105,24 +3104,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 1086, + [1248] = 1248, [1249] = 1249, [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1087, + [1253] = 1253, [1254] = 1254, [1255] = 1255, [1256] = 1256, - [1257] = 1084, + [1257] = 1257, [1258] = 1258, [1259] = 1259, [1260] = 1260, [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, + [1262] = 1245, + [1263] = 1134, + [1264] = 1127, + [1265] = 1140, [1266] = 1266, [1267] = 1267, [1268] = 1268, @@ -3130,16 +3129,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1270] = 1270, [1271] = 1271, [1272] = 1272, - [1273] = 1273, - [1274] = 1274, + [1273] = 1221, + [1274] = 1220, [1275] = 1275, [1276] = 1276, [1277] = 1277, [1278] = 1278, [1279] = 1279, [1280] = 1280, - [1281] = 1281, - [1282] = 1282, + [1281] = 1247, + [1282] = 1246, [1283] = 1283, [1284] = 1284, [1285] = 1285, @@ -3151,23 +3150,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1291] = 1291, [1292] = 1292, [1293] = 1293, - [1294] = 914, - [1295] = 915, + [1294] = 1294, + [1295] = 1295, [1296] = 1296, [1297] = 1297, [1298] = 1298, [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, + [1300] = 1123, + [1301] = 1125, + [1302] = 1126, [1303] = 1303, - [1304] = 1304, + [1304] = 1128, [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, [1309] = 1309, - [1310] = 1310, + [1310] = 1117, [1311] = 1311, [1312] = 1312, [1313] = 1313, @@ -3176,18 +3175,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1316] = 1316, [1317] = 1317, [1318] = 1318, - [1319] = 916, + [1319] = 1319, [1320] = 1320, [1321] = 1321, [1322] = 1322, [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 917, + [1326] = 1092, [1327] = 1327, - [1328] = 918, - [1329] = 1329, - [1330] = 919, + [1328] = 1328, + [1329] = 1136, + [1330] = 1330, [1331] = 1331, [1332] = 1332, [1333] = 1333, @@ -3196,3420 +3195,3420 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1336] = 1336, [1337] = 1337, [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1179, - [1348] = 1180, - [1349] = 1339, - [1350] = 1119, - [1351] = 1318, - [1352] = 1177, - [1353] = 1176, - [1354] = 1175, - [1355] = 1213, - [1356] = 1174, - [1357] = 1173, - [1358] = 1172, - [1359] = 1171, - [1360] = 1164, - [1361] = 1163, - [1362] = 1156, - [1363] = 1155, - [1364] = 1148, - [1365] = 1147, - [1366] = 1146, - [1367] = 1145, - [1368] = 1144, - [1369] = 1143, - [1370] = 1139, - [1371] = 1142, - [1372] = 1141, - [1373] = 1140, - [1374] = 1240, - [1375] = 1241, - [1376] = 1242, - [1377] = 1243, - [1378] = 1245, - [1379] = 1246, - [1380] = 1247, - [1381] = 1249, - [1382] = 1251, - [1383] = 1252, - [1384] = 1254, - [1385] = 1258, - [1386] = 914, - [1387] = 915, - [1388] = 1259, + [1339] = 1101, + [1340] = 1100, + [1341] = 1099, + [1342] = 1121, + [1343] = 1098, + [1344] = 1112, + [1345] = 1111, + [1346] = 1106, + [1347] = 1095, + [1348] = 1096, + [1349] = 1161, + [1350] = 1101, + [1351] = 1330, + [1352] = 1331, + [1353] = 1325, + [1354] = 1332, + [1355] = 1324, + [1356] = 1335, + [1357] = 1337, + [1358] = 1212, + [1359] = 1218, + [1360] = 1321, + [1361] = 1320, + [1362] = 1311, + [1363] = 1309, + [1364] = 1308, + [1365] = 1306, + [1366] = 1305, + [1367] = 1297, + [1368] = 1296, + [1369] = 1295, + [1370] = 1294, + [1371] = 1293, + [1372] = 1292, + [1373] = 1291, + [1374] = 1290, + [1375] = 1289, + [1376] = 1288, + [1377] = 1287, + [1378] = 1286, + [1379] = 1285, + [1380] = 1284, + [1381] = 1278, + [1382] = 1277, + [1383] = 1276, + [1384] = 1322, + [1385] = 1271, + [1386] = 1270, + [1387] = 1269, + [1388] = 1307, [1389] = 1127, - [1390] = 1260, - [1391] = 1263, - [1392] = 1265, - [1393] = 1271, - [1394] = 1272, - [1395] = 1273, - [1396] = 1277, - [1397] = 1278, - [1398] = 1279, - [1399] = 1280, - [1400] = 1281, - [1401] = 1282, - [1402] = 1283, - [1403] = 1284, - [1404] = 1287, - [1405] = 1288, - [1406] = 1126, - [1407] = 1290, - [1408] = 1291, - [1409] = 1292, - [1410] = 1293, - [1411] = 1298, - [1412] = 1301, - [1413] = 1302, - [1414] = 1303, - [1415] = 1307, - [1416] = 916, - [1417] = 1308, - [1418] = 917, - [1419] = 1310, - [1420] = 1311, - [1421] = 1313, - [1422] = 1314, - [1423] = 1315, - [1424] = 1316, - [1425] = 1317, - [1426] = 1158, - [1427] = 1201, - [1428] = 1200, - [1429] = 1199, - [1430] = 1286, - [1431] = 1198, - [1432] = 1197, - [1433] = 1191, - [1434] = 1186, - [1435] = 1149, - [1436] = 1150, - [1437] = 1151, - [1438] = 1152, - [1439] = 1160, - [1440] = 1153, - [1441] = 1154, - [1442] = 1161, - [1443] = 1185, - [1444] = 1300, - [1445] = 1159, - [1446] = 1203, - [1447] = 1162, - [1448] = 1165, - [1449] = 1166, - [1450] = 1167, - [1451] = 1168, - [1452] = 1178, - [1453] = 1210, - [1454] = 1222, - [1455] = 1226, - [1456] = 1227, - [1457] = 1184, - [1458] = 1180, - [1459] = 1228, - [1460] = 1229, - [1461] = 1236, - [1462] = 1179, - [1463] = 1237, - [1464] = 1238, - [1465] = 1239, - [1466] = 1244, - [1467] = 1255, - [1468] = 1256, - [1469] = 1262, - [1470] = 1266, - [1471] = 1267, - [1472] = 1268, - [1473] = 1269, - [1474] = 1270, - [1475] = 1274, - [1476] = 1275, - [1477] = 1276, - [1478] = 1346, - [1479] = 1345, - [1480] = 1344, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1343, - [1485] = 1342, - [1486] = 1341, - [1487] = 1340, - [1488] = 1338, - [1489] = 1337, - [1490] = 1336, - [1491] = 1335, - [1492] = 1334, - [1493] = 1333, - [1494] = 1332, - [1495] = 914, - [1496] = 915, - [1497] = 916, - [1498] = 917, - [1499] = 918, - [1500] = 919, - [1501] = 1182, - [1502] = 1157, - [1503] = 1331, - [1504] = 1504, - [1505] = 1329, - [1506] = 1506, - [1507] = 1507, - [1508] = 1327, - [1509] = 1250, - [1510] = 1261, - [1511] = 1325, - [1512] = 1324, - [1513] = 1086, - [1514] = 1087, - [1515] = 1084, - [1516] = 1323, - [1517] = 1322, - [1518] = 1321, - [1519] = 1320, - [1520] = 1219, - [1521] = 1312, - [1522] = 1309, - [1523] = 1306, - [1524] = 1305, - [1525] = 1304, - [1526] = 1108, - [1527] = 1299, - [1528] = 1297, - [1529] = 1296, - [1530] = 1289, - [1531] = 1285, - [1532] = 1093, - [1533] = 1094, - [1534] = 1135, - [1535] = 918, - [1536] = 1218, - [1537] = 1105, - [1538] = 919, + [1390] = 1268, + [1391] = 1267, + [1392] = 1319, + [1393] = 1318, + [1394] = 1260, + [1395] = 1258, + [1396] = 1256, + [1397] = 1254, + [1398] = 1253, + [1399] = 1252, + [1400] = 1251, + [1401] = 1250, + [1402] = 1241, + [1403] = 1240, + [1404] = 1239, + [1405] = 1238, + [1406] = 1317, + [1407] = 1315, + [1408] = 1235, + [1409] = 1134, + [1410] = 1298, + [1411] = 1249, + [1412] = 1283, + [1413] = 1141, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1135, + [1418] = 1090, + [1419] = 1087, + [1420] = 1088, + [1421] = 1137, + [1422] = 1327, + [1423] = 1204, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1223, + [1428] = 916, + [1429] = 915, + [1430] = 1121, + [1431] = 913, + [1432] = 1261, + [1433] = 1248, + [1434] = 1243, + [1435] = 1242, + [1436] = 914, + [1437] = 925, + [1438] = 1237, + [1439] = 1236, + [1440] = 924, + [1441] = 914, + [1442] = 913, + [1443] = 915, + [1444] = 1257, + [1445] = 1142, + [1446] = 1143, + [1447] = 916, + [1448] = 1246, + [1449] = 1144, + [1450] = 1247, + [1451] = 1245, + [1452] = 1153, + [1453] = 1156, + [1454] = 1140, + [1455] = 1158, + [1456] = 1159, + [1457] = 1139, + [1458] = 1112, + [1459] = 1221, + [1460] = 1175, + [1461] = 1111, + [1462] = 1220, + [1463] = 1179, + [1464] = 1182, + [1465] = 1106, + [1466] = 924, + [1467] = 925, + [1468] = 1187, + [1469] = 1188, + [1470] = 1189, + [1471] = 1095, + [1472] = 1096, + [1473] = 1097, + [1474] = 1234, + [1475] = 1233, + [1476] = 1232, + [1477] = 1231, + [1478] = 1230, + [1479] = 1226, + [1480] = 1225, + [1481] = 1224, + [1482] = 1222, + [1483] = 1217, + [1484] = 1213, + [1485] = 1181, + [1486] = 1145, + [1487] = 1098, + [1488] = 1209, + [1489] = 1207, + [1490] = 1206, + [1491] = 1205, + [1492] = 1203, + [1493] = 1202, + [1494] = 1201, + [1495] = 1200, + [1496] = 1199, + [1497] = 1198, + [1498] = 1197, + [1499] = 1196, + [1500] = 1195, + [1501] = 1194, + [1502] = 1191, + [1503] = 1220, + [1504] = 1221, + [1505] = 1140, + [1506] = 1245, + [1507] = 1247, + [1508] = 1246, + [1509] = 1100, + [1510] = 1190, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1279, + [1529] = 1280, + [1530] = 1299, + [1531] = 1303, + [1532] = 1312, + [1533] = 1313, + [1534] = 1314, + [1535] = 1316, + [1536] = 1244, + [1537] = 1099, + [1538] = 1180, [1539] = 1160, - [1540] = 1161, - [1541] = 1092, - [1542] = 1542, - [1543] = 1543, - [1544] = 1185, - [1545] = 1184, - [1546] = 1180, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1264, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1179, - [1564] = 1121, - [1565] = 1136, - [1566] = 1124, - [1567] = 1114, - [1568] = 1102, - [1569] = 1107, - [1570] = 1314, - [1571] = 1256, - [1572] = 1264, - [1573] = 1177, - [1574] = 1261, - [1575] = 1250, - [1576] = 1576, - [1577] = 1506, - [1578] = 1578, - [1579] = 1579, - [1580] = 1504, - [1581] = 1085, - [1582] = 1507, - [1583] = 1088, - [1584] = 1176, - [1585] = 1175, - [1586] = 1174, - [1587] = 1173, - [1588] = 1172, - [1589] = 1579, - [1590] = 1171, - [1591] = 1164, - [1592] = 1163, - [1593] = 1156, - [1594] = 1155, - [1595] = 1483, - [1596] = 1482, - [1597] = 1148, - [1598] = 1481, - [1599] = 1147, - [1600] = 1146, - [1601] = 1145, - [1602] = 1144, - [1603] = 1143, - [1604] = 1139, - [1605] = 1142, - [1606] = 1141, - [1607] = 1140, - [1608] = 1240, - [1609] = 1241, - [1610] = 1242, - [1611] = 1084, - [1612] = 1087, - [1613] = 1105, - [1614] = 1092, - [1615] = 1086, - [1616] = 1243, - [1617] = 1119, - [1618] = 1245, - [1619] = 1246, - [1620] = 1620, - [1621] = 1247, - [1622] = 1203, - [1623] = 1127, - [1624] = 1108, - [1625] = 919, - [1626] = 918, - [1627] = 917, - [1628] = 916, - [1629] = 915, - [1630] = 914, - [1631] = 1107, - [1632] = 1318, - [1633] = 1317, - [1634] = 1316, - [1635] = 1315, - [1636] = 1313, - [1637] = 1102, - [1638] = 1249, - [1639] = 1251, - [1640] = 1252, - [1641] = 1254, - [1642] = 1258, - [1643] = 1259, - [1644] = 1260, + [1540] = 1328, + [1541] = 1333, + [1542] = 1334, + [1543] = 1336, + [1544] = 1338, + [1545] = 1216, + [1546] = 1255, + [1547] = 1259, + [1548] = 1266, + [1549] = 1272, + [1550] = 1275, + [1551] = 1323, + [1552] = 1146, + [1553] = 1147, + [1554] = 1148, + [1555] = 1149, + [1556] = 1150, + [1557] = 1151, + [1558] = 1152, + [1559] = 1154, + [1560] = 1155, + [1561] = 1157, + [1562] = 1166, + [1563] = 1167, + [1564] = 1168, + [1565] = 1169, + [1566] = 1170, + [1567] = 1171, + [1568] = 1172, + [1569] = 1173, + [1570] = 1526, + [1571] = 1267, + [1572] = 1527, + [1573] = 1084, + [1574] = 1511, + [1575] = 1512, + [1576] = 1513, + [1577] = 1514, + [1578] = 1088, + [1579] = 1087, + [1580] = 1090, + [1581] = 1515, + [1582] = 1516, + [1583] = 1517, + [1584] = 1518, + [1585] = 1519, + [1586] = 1179, + [1587] = 1182, + [1588] = 1520, + [1589] = 1521, + [1590] = 1522, + [1591] = 1523, + [1592] = 1524, + [1593] = 1525, + [1594] = 1198, + [1595] = 1084, + [1596] = 1085, + [1597] = 1145, + [1598] = 1085, + [1599] = 1234, + [1600] = 1233, + [1601] = 1232, + [1602] = 1231, + [1603] = 1230, + [1604] = 1604, + [1605] = 1225, + [1606] = 1224, + [1607] = 1222, + [1608] = 1217, + [1609] = 1213, + [1610] = 1181, + [1611] = 1209, + [1612] = 1315, + [1613] = 1207, + [1614] = 1206, + [1615] = 1317, + [1616] = 1318, + [1617] = 1205, + [1618] = 1203, + [1619] = 1202, + [1620] = 1201, + [1621] = 1200, + [1622] = 1199, + [1623] = 1172, + [1624] = 1197, + [1625] = 1196, + [1626] = 1195, + [1627] = 1194, + [1628] = 1191, + [1629] = 1190, + [1630] = 1319, + [1631] = 1322, + [1632] = 1323, + [1633] = 1244, + [1634] = 1330, + [1635] = 1331, + [1636] = 1332, + [1637] = 1180, + [1638] = 1173, + [1639] = 1335, + [1640] = 1337, + [1641] = 1212, + [1642] = 1218, + [1643] = 1321, + [1644] = 1320, [1645] = 1311, - [1646] = 1114, - [1647] = 1310, - [1648] = 1308, - [1649] = 1263, - [1650] = 1307, - [1651] = 1303, - [1652] = 1302, - [1653] = 1301, - [1654] = 1298, - [1655] = 1293, - [1656] = 1265, - [1657] = 1271, - [1658] = 1292, - [1659] = 1291, - [1660] = 1272, - [1661] = 1273, - [1662] = 1290, + [1646] = 1309, + [1647] = 1308, + [1648] = 1284, + [1649] = 1305, + [1650] = 1297, + [1651] = 1296, + [1652] = 1295, + [1653] = 1294, + [1654] = 1220, + [1655] = 1221, + [1656] = 1140, + [1657] = 1245, + [1658] = 1293, + [1659] = 1292, + [1660] = 1291, + [1661] = 1290, + [1662] = 1289, [1663] = 1288, - [1664] = 1277, - [1665] = 1278, - [1666] = 1179, - [1667] = 1180, - [1668] = 1279, - [1669] = 1088, - [1670] = 1184, - [1671] = 1185, - [1672] = 1124, - [1673] = 1085, - [1674] = 1161, - [1675] = 1160, - [1676] = 1136, - [1677] = 1121, - [1678] = 1287, - [1679] = 1280, - [1680] = 1281, - [1681] = 1282, - [1682] = 919, - [1683] = 918, - [1684] = 1135, - [1685] = 1094, - [1686] = 1093, - [1687] = 1197, - [1688] = 1198, - [1689] = 917, - [1690] = 916, - [1691] = 1126, - [1692] = 1285, + [1664] = 1287, + [1665] = 1286, + [1666] = 1285, + [1667] = 1240, + [1668] = 1247, + [1669] = 1246, + [1670] = 1246, + [1671] = 1247, + [1672] = 1127, + [1673] = 1171, + [1674] = 1278, + [1675] = 1277, + [1676] = 1276, + [1677] = 1170, + [1678] = 1271, + [1679] = 1270, + [1680] = 1269, + [1681] = 1257, + [1682] = 1268, + [1683] = 1306, + [1684] = 1169, + [1685] = 1168, + [1686] = 1167, + [1687] = 1166, + [1688] = 1157, + [1689] = 1260, + [1690] = 1155, + [1691] = 1154, + [1692] = 916, [1693] = 915, - [1694] = 914, - [1695] = 1213, - [1696] = 1283, - [1697] = 1284, - [1698] = 1289, - [1699] = 1296, - [1700] = 1700, - [1701] = 1325, - [1702] = 1297, - [1703] = 1201, - [1704] = 1200, - [1705] = 1199, - [1706] = 1191, - [1707] = 1186, - [1708] = 1149, - [1709] = 1150, - [1710] = 1151, - [1711] = 1152, - [1712] = 1299, - [1713] = 1153, - [1714] = 1154, - [1715] = 1300, - [1716] = 1158, - [1717] = 1304, - [1718] = 1159, - [1719] = 1305, - [1720] = 1306, - [1721] = 1309, - [1722] = 1160, - [1723] = 1161, - [1724] = 1162, - [1725] = 1320, - [1726] = 1165, - [1727] = 1166, - [1728] = 1321, - [1729] = 1322, - [1730] = 1323, - [1731] = 1167, - [1732] = 1168, - [1733] = 1178, - [1734] = 1324, - [1735] = 1210, - [1736] = 1327, - [1737] = 1329, - [1738] = 1331, - [1739] = 1332, - [1740] = 1542, - [1741] = 1543, - [1742] = 1547, - [1743] = 1548, - [1744] = 1549, - [1745] = 1551, - [1746] = 1552, - [1747] = 1553, - [1748] = 1554, - [1749] = 1555, - [1750] = 1556, - [1751] = 1557, - [1752] = 1558, - [1753] = 1559, - [1754] = 1560, - [1755] = 1561, - [1756] = 1562, - [1757] = 1222, - [1758] = 1226, - [1759] = 1333, - [1760] = 1227, - [1761] = 1334, - [1762] = 1335, - [1763] = 1228, - [1764] = 1336, - [1765] = 1337, - [1766] = 1338, - [1767] = 1339, - [1768] = 1340, - [1769] = 1341, - [1770] = 1342, - [1771] = 1185, - [1772] = 1184, - [1773] = 1236, - [1774] = 1237, - [1775] = 1343, - [1776] = 1344, - [1777] = 1345, - [1778] = 1262, - [1779] = 1180, - [1780] = 1266, - [1781] = 1267, - [1782] = 1268, - [1783] = 1229, - [1784] = 1269, - [1785] = 1270, - [1786] = 1274, - [1787] = 1275, - [1788] = 1179, - [1789] = 1276, - [1790] = 1346, - [1791] = 1238, - [1792] = 1239, - [1793] = 1244, - [1794] = 1255, - [1795] = 1249, - [1796] = 1298, - [1797] = 1146, - [1798] = 1145, - [1799] = 1144, - [1800] = 1800, - [1801] = 1114, - [1802] = 1504, - [1803] = 1803, - [1804] = 1143, - [1805] = 1139, - [1806] = 1142, - [1807] = 1141, - [1808] = 1140, - [1809] = 1240, - [1810] = 1241, - [1811] = 1242, - [1812] = 1243, - [1813] = 1245, - [1814] = 1246, - [1815] = 1247, - [1816] = 1249, - [1817] = 1251, - [1818] = 1252, - [1819] = 1254, - [1820] = 1800, - [1821] = 1803, - [1822] = 1109, - [1823] = 1124, - [1824] = 1112, - [1825] = 1116, - [1826] = 1826, - [1827] = 1091, - [1828] = 1506, - [1829] = 1098, - [1830] = 1148, - [1831] = 1155, - [1832] = 1156, - [1833] = 1163, - [1834] = 1164, - [1835] = 1171, - [1836] = 1172, - [1837] = 1803, - [1838] = 1173, - [1839] = 1174, - [1840] = 1136, - [1841] = 1175, - [1842] = 1121, - [1843] = 1826, - [1844] = 1198, - [1845] = 1176, - [1846] = 1119, - [1847] = 1177, - [1848] = 1102, - [1849] = 1107, - [1850] = 1197, - [1851] = 1108, - [1852] = 1800, - [1853] = 1213, - [1854] = 1542, - [1855] = 1826, - [1856] = 1264, - [1857] = 1826, - [1858] = 1261, - [1859] = 1543, - [1860] = 1203, - [1861] = 1547, - [1862] = 1803, - [1863] = 1250, - [1864] = 1800, - [1865] = 1803, - [1866] = 1800, - [1867] = 1800, - [1868] = 1803, - [1869] = 1548, - [1870] = 1549, - [1871] = 1803, - [1872] = 1826, - [1873] = 1803, - [1874] = 1826, - [1875] = 1551, - [1876] = 1160, - [1877] = 1826, - [1878] = 1800, - [1879] = 919, - [1880] = 918, - [1881] = 1258, - [1882] = 1259, - [1883] = 1260, - [1884] = 1263, - [1885] = 1265, - [1886] = 1271, - [1887] = 1272, - [1888] = 1273, - [1889] = 1800, - [1890] = 1826, - [1891] = 1177, - [1892] = 1176, - [1893] = 1175, - [1894] = 1174, - [1895] = 1173, - [1896] = 1172, - [1897] = 1171, - [1898] = 1164, - [1899] = 1163, - [1900] = 1156, - [1901] = 1155, - [1902] = 1148, - [1903] = 1147, - [1904] = 1277, - [1905] = 1146, - [1906] = 1145, - [1907] = 1826, - [1908] = 1144, - [1909] = 1278, - [1910] = 1143, - [1911] = 1139, - [1912] = 917, - [1913] = 1142, - [1914] = 1141, - [1915] = 1140, - [1916] = 916, - [1917] = 915, - [1918] = 914, - [1919] = 1826, - [1920] = 1803, - [1921] = 1128, - [1922] = 1803, - [1923] = 1800, - [1924] = 1800, - [1925] = 1279, - [1926] = 1280, - [1927] = 1281, - [1928] = 1282, - [1929] = 1283, - [1930] = 1284, - [1931] = 1826, - [1932] = 1240, - [1933] = 1241, - [1934] = 1096, - [1935] = 1242, - [1936] = 1243, - [1937] = 919, - [1938] = 1826, - [1939] = 918, - [1940] = 914, - [1941] = 915, - [1942] = 1483, - [1943] = 1482, - [1944] = 1481, - [1945] = 1135, - [1946] = 1179, - [1947] = 1180, - [1948] = 1184, - [1949] = 1185, - [1950] = 1161, - [1951] = 1094, - [1952] = 1093, - [1953] = 1160, - [1954] = 1285, - [1955] = 1127, - [1956] = 1245, - [1957] = 1289, - [1958] = 1201, - [1959] = 1200, - [1960] = 1199, - [1961] = 1246, - [1962] = 1247, - [1963] = 1296, - [1964] = 1251, - [1965] = 1252, - [1966] = 1254, - [1967] = 1191, - [1968] = 1186, - [1969] = 1149, - [1970] = 1150, - [1971] = 1151, - [1972] = 1258, - [1973] = 1152, + [1694] = 913, + [1695] = 914, + [1696] = 924, + [1697] = 925, + [1698] = 1258, + [1699] = 1256, + [1700] = 1254, + [1701] = 1253, + [1702] = 1252, + [1703] = 1152, + [1704] = 1151, + [1705] = 1150, + [1706] = 1149, + [1707] = 1135, + [1708] = 1137, + [1709] = 1101, + [1710] = 1100, + [1711] = 1099, + [1712] = 1098, + [1713] = 1097, + [1714] = 1096, + [1715] = 1095, + [1716] = 925, + [1717] = 924, + [1718] = 1106, + [1719] = 1719, + [1720] = 1111, + [1721] = 1251, + [1722] = 1250, + [1723] = 1112, + [1724] = 914, + [1725] = 913, + [1726] = 1245, + [1727] = 1140, + [1728] = 1148, + [1729] = 1121, + [1730] = 1147, + [1731] = 1241, + [1732] = 1424, + [1733] = 1239, + [1734] = 1238, + [1735] = 1146, + [1736] = 1235, + [1737] = 1141, + [1738] = 1261, + [1739] = 1248, + [1740] = 1243, + [1741] = 1242, + [1742] = 1237, + [1743] = 1236, + [1744] = 1221, + [1745] = 1220, + [1746] = 1275, + [1747] = 1272, + [1748] = 1142, + [1749] = 1143, + [1750] = 1144, + [1751] = 1153, + [1752] = 1156, + [1753] = 1158, + [1754] = 1159, + [1755] = 1139, + [1756] = 1161, + [1757] = 1175, + [1758] = 1187, + [1759] = 1188, + [1760] = 1266, + [1761] = 1189, + [1762] = 1259, + [1763] = 1255, + [1764] = 1160, + [1765] = 1765, + [1766] = 1766, + [1767] = 1216, + [1768] = 1426, + [1769] = 915, + [1770] = 916, + [1771] = 1425, + [1772] = 1338, + [1773] = 1719, + [1774] = 1774, + [1775] = 1336, + [1776] = 1334, + [1777] = 1333, + [1778] = 1328, + [1779] = 1316, + [1780] = 1314, + [1781] = 1313, + [1782] = 1312, + [1783] = 1303, + [1784] = 1299, + [1785] = 1226, + [1786] = 1279, + [1787] = 1416, + [1788] = 1415, + [1789] = 1414, + [1790] = 1324, + [1791] = 1325, + [1792] = 1327, + [1793] = 1134, + [1794] = 1280, + [1795] = 1267, + [1796] = 1294, + [1797] = 1797, + [1798] = 1798, + [1799] = 1799, + [1800] = 1797, + [1801] = 1798, + [1802] = 1799, + [1803] = 1798, + [1804] = 1799, + [1805] = 1798, + [1806] = 1797, + [1807] = 1798, + [1808] = 1797, + [1809] = 1799, + [1810] = 1797, + [1811] = 1798, + [1812] = 1799, + [1813] = 1797, + [1814] = 1799, + [1815] = 1798, + [1816] = 1799, + [1817] = 1798, + [1818] = 1797, + [1819] = 1799, + [1820] = 1797, + [1821] = 1798, + [1822] = 1799, + [1823] = 1797, + [1824] = 1798, + [1825] = 1799, + [1826] = 1797, + [1827] = 1799, + [1828] = 1798, + [1829] = 1797, + [1830] = 1424, + [1831] = 1799, + [1832] = 1798, + [1833] = 1797, + [1834] = 925, + [1835] = 924, + [1836] = 914, + [1837] = 913, + [1838] = 915, + [1839] = 916, + [1840] = 1246, + [1841] = 1247, + [1842] = 1245, + [1843] = 1140, + [1844] = 1221, + [1845] = 1220, + [1846] = 925, + [1847] = 924, + [1848] = 914, + [1849] = 913, + [1850] = 915, + [1851] = 916, + [1852] = 1246, + [1853] = 1247, + [1854] = 1245, + [1855] = 1140, + [1856] = 1221, + [1857] = 1220, + [1858] = 1416, + [1859] = 1415, + [1860] = 1414, + [1861] = 1123, + [1862] = 1125, + [1863] = 1126, + [1864] = 1128, + [1865] = 1092, + [1866] = 1136, + [1867] = 1117, + [1868] = 1234, + [1869] = 1233, + [1870] = 1232, + [1871] = 1231, + [1872] = 1230, + [1873] = 1226, + [1874] = 1225, + [1875] = 1224, + [1876] = 1222, + [1877] = 1217, + [1878] = 1213, + [1879] = 1181, + [1880] = 1209, + [1881] = 1207, + [1882] = 1206, + [1883] = 1205, + [1884] = 1203, + [1885] = 1202, + [1886] = 1201, + [1887] = 1200, + [1888] = 1199, + [1889] = 1198, + [1890] = 1197, + [1891] = 1196, + [1892] = 1195, + [1893] = 1194, + [1894] = 1191, + [1895] = 1190, + [1896] = 1244, + [1897] = 1180, + [1898] = 1173, + [1899] = 1172, + [1900] = 1171, + [1901] = 1170, + [1902] = 1169, + [1903] = 1168, + [1904] = 1167, + [1905] = 1166, + [1906] = 1157, + [1907] = 1155, + [1908] = 1154, + [1909] = 1152, + [1910] = 1151, + [1911] = 1150, + [1912] = 1149, + [1913] = 1148, + [1914] = 1147, + [1915] = 1146, + [1916] = 1275, + [1917] = 1272, + [1918] = 1266, + [1919] = 1259, + [1920] = 1255, + [1921] = 1160, + [1922] = 1216, + [1923] = 1338, + [1924] = 1336, + [1925] = 1334, + [1926] = 1333, + [1927] = 1328, + [1928] = 1316, + [1929] = 1314, + [1930] = 1313, + [1931] = 1312, + [1932] = 1303, + [1933] = 1299, + [1934] = 1280, + [1935] = 1279, + [1936] = 1182, + [1937] = 1179, + [1938] = 1425, + [1939] = 1324, + [1940] = 1325, + [1941] = 1327, + [1942] = 1145, + [1943] = 1527, + [1944] = 1526, + [1945] = 1525, + [1946] = 1524, + [1947] = 1523, + [1948] = 1522, + [1949] = 1521, + [1950] = 1520, + [1951] = 1519, + [1952] = 1518, + [1953] = 1517, + [1954] = 1516, + [1955] = 1515, + [1956] = 1514, + [1957] = 1513, + [1958] = 1189, + [1959] = 1188, + [1960] = 1187, + [1961] = 1512, + [1962] = 1511, + [1963] = 1101, + [1964] = 1100, + [1965] = 1099, + [1966] = 1234, + [1967] = 1175, + [1968] = 1161, + [1969] = 1139, + [1970] = 1159, + [1971] = 1158, + [1972] = 1233, + [1973] = 1156, [1974] = 1153, - [1975] = 1259, - [1976] = 1260, - [1977] = 1263, - [1978] = 1154, - [1979] = 1265, - [1980] = 1271, - [1981] = 1272, - [1982] = 1158, - [1983] = 1159, - [1984] = 1800, - [1985] = 1105, - [1986] = 1092, - [1987] = 1273, - [1988] = 1557, - [1989] = 1161, - [1990] = 1160, - [1991] = 1161, - [1992] = 1162, - [1993] = 1165, - [1994] = 1166, - [1995] = 1167, - [1996] = 1277, - [1997] = 1168, - [1998] = 1278, - [1999] = 1178, - [2000] = 1279, - [2001] = 919, - [2002] = 1280, - [2003] = 918, - [2004] = 917, - [2005] = 1287, - [2006] = 1281, - [2007] = 1282, - [2008] = 1288, - [2009] = 916, - [2010] = 1283, - [2011] = 1290, - [2012] = 1291, - [2013] = 1803, - [2014] = 1284, - [2015] = 1185, - [2016] = 915, - [2017] = 914, - [2018] = 1800, - [2019] = 1803, - [2020] = 1210, - [2021] = 1098, - [2022] = 1091, - [2023] = 1116, - [2024] = 1297, - [2025] = 1222, - [2026] = 1299, - [2027] = 1184, - [2028] = 1300, - [2029] = 1226, - [2030] = 1227, - [2031] = 1304, - [2032] = 1228, - [2033] = 1229, - [2034] = 1305, - [2035] = 1306, - [2036] = 1180, - [2037] = 1562, - [2038] = 1179, - [2039] = 1185, - [2040] = 1184, - [2041] = 1236, - [2042] = 1237, - [2043] = 1309, - [2044] = 1320, - [2045] = 1321, - [2046] = 1287, - [2047] = 1288, - [2048] = 1290, - [2049] = 1291, - [2050] = 1292, - [2051] = 1293, - [2052] = 1298, - [2053] = 1301, - [2054] = 1302, - [2055] = 1303, - [2056] = 1307, - [2057] = 1308, - [2058] = 1310, - [2059] = 1311, - [2060] = 1313, - [2061] = 1314, - [2062] = 1315, - [2063] = 1238, - [2064] = 1239, - [2065] = 1244, - [2066] = 1316, - [2067] = 1317, - [2068] = 1318, - [2069] = 1255, - [2070] = 1552, - [2071] = 1553, - [2072] = 1322, - [2073] = 1292, - [2074] = 1293, - [2075] = 1256, - [2076] = 1147, - [2077] = 1301, - [2078] = 1302, - [2079] = 1303, - [2080] = 1307, - [2081] = 1308, - [2082] = 1310, - [2083] = 1311, - [2084] = 1313, - [2085] = 1314, - [2086] = 1262, - [2087] = 1554, - [2088] = 1555, - [2089] = 1266, - [2090] = 1267, - [2091] = 1315, - [2092] = 1268, - [2093] = 1269, - [2094] = 1270, - [2095] = 1556, - [2096] = 1274, - [2097] = 1275, - [2098] = 1276, - [2099] = 1316, - [2100] = 1317, - [2101] = 1323, - [2102] = 1318, - [2103] = 1558, - [2104] = 1180, - [2105] = 1179, - [2106] = 1324, - [2107] = 1325, - [2108] = 1327, - [2109] = 1329, - [2110] = 917, - [2111] = 1559, - [2112] = 916, - [2113] = 1560, - [2114] = 1346, - [2115] = 1345, - [2116] = 1344, - [2117] = 1343, - [2118] = 1342, - [2119] = 1341, - [2120] = 1340, - [2121] = 1339, - [2122] = 1338, - [2123] = 1337, - [2124] = 1561, - [2125] = 1331, - [2126] = 1332, - [2127] = 1333, - [2128] = 1334, - [2129] = 1335, - [2130] = 1126, - [2131] = 1109, - [2132] = 1336, - [2133] = 1112, - [2134] = 1175, - [2135] = 1320, - [2136] = 1227, - [2137] = 1482, - [2138] = 1228, - [2139] = 1229, - [2140] = 1185, - [2141] = 1184, - [2142] = 1236, - [2143] = 1237, - [2144] = 1504, - [2145] = 1084, - [2146] = 1562, - [2147] = 1561, - [2148] = 1560, - [2149] = 1559, - [2150] = 914, - [2151] = 1558, - [2152] = 915, - [2153] = 1557, - [2154] = 1556, - [2155] = 916, - [2156] = 1555, - [2157] = 1554, - [2158] = 1553, - [2159] = 1552, - [2160] = 1551, - [2161] = 1210, - [2162] = 1549, - [2163] = 917, - [2164] = 1548, - [2165] = 918, - [2166] = 919, - [2167] = 1547, - [2168] = 1543, - [2169] = 1542, - [2170] = 1088, - [2171] = 1238, - [2172] = 1085, - [2173] = 1239, - [2174] = 1244, - [2175] = 1278, - [2176] = 1255, - [2177] = 1256, - [2178] = 1483, - [2179] = 1262, - [2180] = 1266, - [2181] = 1267, - [2182] = 1268, - [2183] = 1269, - [2184] = 1270, - [2185] = 1274, - [2186] = 1178, - [2187] = 1481, - [2188] = 1168, - [2189] = 1167, - [2190] = 1166, - [2191] = 1165, - [2192] = 1162, - [2193] = 1161, - [2194] = 1160, - [2195] = 1275, - [2196] = 1276, - [2197] = 1250, - [2198] = 1179, - [2199] = 1180, - [2200] = 1184, - [2201] = 1180, - [2202] = 1203, - [2203] = 1087, - [2204] = 1506, - [2205] = 1086, - [2206] = 1179, - [2207] = 1250, - [2208] = 1159, - [2209] = 1158, - [2210] = 1182, - [2211] = 1346, - [2212] = 1264, - [2213] = 1345, - [2214] = 1344, - [2215] = 1157, - [2216] = 1154, - [2217] = 1343, - [2218] = 1342, - [2219] = 1312, - [2220] = 1153, - [2221] = 1152, - [2222] = 1219, - [2223] = 1151, - [2224] = 1150, - [2225] = 1149, - [2226] = 1186, - [2227] = 1191, - [2228] = 1197, - [2229] = 1198, - [2230] = 1341, - [2231] = 1340, - [2232] = 1339, - [2233] = 1338, - [2234] = 1199, - [2235] = 1200, - [2236] = 1201, - [2237] = 1337, - [2238] = 1336, - [2239] = 1335, - [2240] = 1085, - [2241] = 1177, - [2242] = 1185, - [2243] = 1176, - [2244] = 1247, - [2245] = 1226, - [2246] = 1157, - [2247] = 1172, - [2248] = 1171, - [2249] = 1164, - [2250] = 1163, - [2251] = 1156, - [2252] = 1155, - [2253] = 1148, - [2254] = 1147, - [2255] = 1146, - [2256] = 1145, - [2257] = 1144, - [2258] = 1161, - [2259] = 1084, - [2260] = 1481, - [2261] = 1143, - [2262] = 1139, - [2263] = 1142, - [2264] = 1141, - [2265] = 1140, - [2266] = 1240, - [2267] = 1286, - [2268] = 1241, - [2269] = 1242, - [2270] = 1243, - [2271] = 1245, - [2272] = 1246, - [2273] = 1222, - [2274] = 1087, - [2275] = 1249, - [2276] = 1251, - [2277] = 1252, - [2278] = 1254, - [2279] = 1088, - [2280] = 1086, - [2281] = 1334, - [2282] = 1085, - [2283] = 1482, - [2284] = 1318, - [2285] = 1317, - [2286] = 1316, - [2287] = 1315, - [2288] = 1314, + [1975] = 1232, + [1976] = 1231, + [1977] = 1230, + [1978] = 1144, + [1979] = 1226, + [1980] = 1225, + [1981] = 1224, + [1982] = 1143, + [1983] = 1142, + [1984] = 1222, + [1985] = 1135, + [1986] = 1137, + [1987] = 1217, + [1988] = 1213, + [1989] = 1181, + [1990] = 1220, + [1991] = 1221, + [1992] = 1236, + [1993] = 1237, + [1994] = 1242, + [1995] = 1243, + [1996] = 1209, + [1997] = 1248, + [1998] = 1207, + [1999] = 1261, + [2000] = 1206, + [2001] = 1205, + [2002] = 1098, + [2003] = 1203, + [2004] = 1202, + [2005] = 1201, + [2006] = 1200, + [2007] = 1199, + [2008] = 1198, + [2009] = 1197, + [2010] = 1196, + [2011] = 1195, + [2012] = 1194, + [2013] = 1191, + [2014] = 1190, + [2015] = 1244, + [2016] = 1180, + [2017] = 1173, + [2018] = 1172, + [2019] = 1097, + [2020] = 1141, + [2021] = 1096, + [2022] = 1095, + [2023] = 1171, + [2024] = 1170, + [2025] = 1235, + [2026] = 1169, + [2027] = 1168, + [2028] = 1167, + [2029] = 1238, + [2030] = 1239, + [2031] = 1166, + [2032] = 1240, + [2033] = 1241, + [2034] = 1157, + [2035] = 1155, + [2036] = 1154, + [2037] = 1152, + [2038] = 1257, + [2039] = 1140, + [2040] = 1245, + [2041] = 1250, + [2042] = 1251, + [2043] = 1151, + [2044] = 1150, + [2045] = 1149, + [2046] = 1148, + [2047] = 1147, + [2048] = 1146, + [2049] = 925, + [2050] = 924, + [2051] = 1106, + [2052] = 1111, + [2053] = 1112, + [2054] = 1275, + [2055] = 1272, + [2056] = 1266, + [2057] = 1259, + [2058] = 1255, + [2059] = 1160, + [2060] = 1216, + [2061] = 1338, + [2062] = 1336, + [2063] = 1252, + [2064] = 1253, + [2065] = 1254, + [2066] = 1334, + [2067] = 1333, + [2068] = 1328, + [2069] = 1256, + [2070] = 1316, + [2071] = 1314, + [2072] = 1313, + [2073] = 1312, + [2074] = 1303, + [2075] = 1258, + [2076] = 1299, + [2077] = 1280, + [2078] = 1279, + [2079] = 914, + [2080] = 913, + [2081] = 1121, + [2082] = 1092, + [2083] = 1128, + [2084] = 1126, + [2085] = 1125, + [2086] = 1260, + [2087] = 1123, + [2088] = 915, + [2089] = 916, + [2090] = 1268, + [2091] = 1134, + [2092] = 1269, + [2093] = 1270, + [2094] = 1271, + [2095] = 1127, + [2096] = 1276, + [2097] = 1277, + [2098] = 1278, + [2099] = 1295, + [2100] = 1296, + [2101] = 1297, + [2102] = 1305, + [2103] = 1306, + [2104] = 1247, + [2105] = 1246, + [2106] = 1308, + [2107] = 1309, + [2108] = 1311, + [2109] = 1320, + [2110] = 1321, + [2111] = 1218, + [2112] = 1212, + [2113] = 1337, + [2114] = 1284, + [2115] = 1285, + [2116] = 1286, + [2117] = 1287, + [2118] = 1288, + [2119] = 1289, + [2120] = 1290, + [2121] = 1291, + [2122] = 1292, + [2123] = 1293, + [2124] = 1335, + [2125] = 1319, + [2126] = 1315, + [2127] = 1332, + [2128] = 1318, + [2129] = 1331, + [2130] = 1330, + [2131] = 1317, + [2132] = 1323, + [2133] = 1322, + [2134] = 1296, + [2135] = 1168, + [2136] = 1324, + [2137] = 1325, + [2138] = 1414, + [2139] = 1088, + [2140] = 1287, + [2141] = 1145, + [2142] = 1327, + [2143] = 1307, + [2144] = 1415, + [2145] = 1416, + [2146] = 1425, + [2147] = 1283, + [2148] = 1511, + [2149] = 1512, + [2150] = 1513, + [2151] = 1514, + [2152] = 1515, + [2153] = 1516, + [2154] = 1517, + [2155] = 1518, + [2156] = 1519, + [2157] = 1520, + [2158] = 1085, + [2159] = 1087, + [2160] = 1521, + [2161] = 1522, + [2162] = 1523, + [2163] = 1524, + [2164] = 1525, + [2165] = 1526, + [2166] = 1527, + [2167] = 1084, + [2168] = 1085, + [2169] = 1084, + [2170] = 1084, + [2171] = 1085, + [2172] = 1088, + [2173] = 1087, + [2174] = 1090, + [2175] = 1249, + [2176] = 1307, + [2177] = 1327, + [2178] = 1298, + [2179] = 1325, + [2180] = 1223, + [2181] = 1204, + [2182] = 1324, + [2183] = 1424, + [2184] = 1315, + [2185] = 1317, + [2186] = 1318, + [2187] = 1085, + [2188] = 1084, + [2189] = 1319, + [2190] = 1322, + [2191] = 1323, + [2192] = 1330, + [2193] = 1331, + [2194] = 1332, + [2195] = 1090, + [2196] = 1335, + [2197] = 1337, + [2198] = 1212, + [2199] = 1218, + [2200] = 1321, + [2201] = 1320, + [2202] = 1311, + [2203] = 1309, + [2204] = 1308, + [2205] = 1306, + [2206] = 1305, + [2207] = 1297, + [2208] = 1295, + [2209] = 1294, + [2210] = 1088, + [2211] = 1087, + [2212] = 1293, + [2213] = 1292, + [2214] = 1291, + [2215] = 1290, + [2216] = 1204, + [2217] = 1289, + [2218] = 1288, + [2219] = 1286, + [2220] = 1285, + [2221] = 1284, + [2222] = 1090, + [2223] = 1246, + [2224] = 1247, + [2225] = 1278, + [2226] = 1277, + [2227] = 1276, + [2228] = 1271, + [2229] = 1270, + [2230] = 1269, + [2231] = 1268, + [2232] = 1267, + [2233] = 1260, + [2234] = 1414, + [2235] = 1258, + [2236] = 1256, + [2237] = 1254, + [2238] = 1253, + [2239] = 1252, + [2240] = 1251, + [2241] = 1250, + [2242] = 1245, + [2243] = 1140, + [2244] = 1241, + [2245] = 1240, + [2246] = 1415, + [2247] = 1239, + [2248] = 1238, + [2249] = 1235, + [2250] = 1141, + [2251] = 1220, + [2252] = 1221, + [2253] = 1140, + [2254] = 1245, + [2255] = 1247, + [2256] = 1246, + [2257] = 1261, + [2258] = 1416, + [2259] = 1248, + [2260] = 1243, + [2261] = 1242, + [2262] = 1237, + [2263] = 1236, + [2264] = 1221, + [2265] = 1220, + [2266] = 1257, + [2267] = 1142, + [2268] = 1143, + [2269] = 1144, + [2270] = 1153, + [2271] = 1156, + [2272] = 1158, + [2273] = 1159, + [2274] = 1139, + [2275] = 1161, + [2276] = 1175, + [2277] = 1179, + [2278] = 1182, + [2279] = 1187, + [2280] = 1188, + [2281] = 1298, + [2282] = 1189, + [2283] = 1234, + [2284] = 1279, + [2285] = 1280, + [2286] = 1299, + [2287] = 1303, + [2288] = 1312, [2289] = 1313, - [2290] = 1311, - [2291] = 1310, - [2292] = 1308, - [2293] = 1307, - [2294] = 1303, - [2295] = 1302, - [2296] = 1301, - [2297] = 1298, - [2298] = 1293, - [2299] = 1292, - [2300] = 1291, - [2301] = 1290, - [2302] = 1288, - [2303] = 1287, - [2304] = 1333, - [2305] = 1332, - [2306] = 1331, - [2307] = 1483, - [2308] = 1329, - [2309] = 1327, - [2310] = 1325, - [2311] = 1324, - [2312] = 1323, - [2313] = 1322, - [2314] = 1088, - [2315] = 1286, - [2316] = 1321, - [2317] = 1213, - [2318] = 1264, - [2319] = 1174, - [2320] = 1160, - [2321] = 1261, - [2322] = 1258, - [2323] = 1259, - [2324] = 1260, - [2325] = 1263, - [2326] = 1265, - [2327] = 1309, - [2328] = 1271, - [2329] = 1272, - [2330] = 1273, - [2331] = 1277, - [2332] = 1085, - [2333] = 1088, - [2334] = 1306, - [2335] = 1305, - [2336] = 1182, - [2337] = 1084, - [2338] = 1304, - [2339] = 1300, - [2340] = 1299, - [2341] = 1297, - [2342] = 1261, - [2343] = 1087, - [2344] = 1284, - [2345] = 1283, - [2346] = 1282, - [2347] = 1281, - [2348] = 1280, - [2349] = 1279, - [2350] = 1296, - [2351] = 1218, - [2352] = 1289, - [2353] = 1173, - [2354] = 1086, - [2355] = 1285, - [2356] = 1136, - [2357] = 1091, - [2358] = 1318, - [2359] = 1317, - [2360] = 1264, - [2361] = 1507, - [2362] = 1126, - [2363] = 917, - [2364] = 916, - [2365] = 1482, - [2366] = 1318, - [2367] = 1317, - [2368] = 1316, - [2369] = 1315, - [2370] = 1483, - [2371] = 1542, - [2372] = 1543, - [2373] = 1547, - [2374] = 1548, - [2375] = 1549, - [2376] = 1551, - [2377] = 1552, - [2378] = 1553, - [2379] = 1554, - [2380] = 1314, - [2381] = 1555, - [2382] = 1556, - [2383] = 1557, - [2384] = 1109, - [2385] = 1558, - [2386] = 1559, - [2387] = 1313, - [2388] = 1560, - [2389] = 1561, - [2390] = 1112, - [2391] = 1562, - [2392] = 1311, - [2393] = 1310, - [2394] = 1308, - [2395] = 1116, - [2396] = 1307, - [2397] = 1098, - [2398] = 1303, - [2399] = 1302, - [2400] = 1301, + [2290] = 1314, + [2291] = 1316, + [2292] = 1328, + [2293] = 1333, + [2294] = 1334, + [2295] = 1336, + [2296] = 1338, + [2297] = 1216, + [2298] = 1160, + [2299] = 1255, + [2300] = 1259, + [2301] = 1266, + [2302] = 1272, + [2303] = 1275, + [2304] = 1233, + [2305] = 1232, + [2306] = 1231, + [2307] = 1230, + [2308] = 1226, + [2309] = 1225, + [2310] = 1224, + [2311] = 1222, + [2312] = 1217, + [2313] = 1213, + [2314] = 1181, + [2315] = 1209, + [2316] = 1207, + [2317] = 1206, + [2318] = 1205, + [2319] = 1203, + [2320] = 1202, + [2321] = 1201, + [2322] = 1200, + [2323] = 1199, + [2324] = 1198, + [2325] = 1197, + [2326] = 1196, + [2327] = 1195, + [2328] = 1194, + [2329] = 1191, + [2330] = 1190, + [2331] = 1244, + [2332] = 1180, + [2333] = 1173, + [2334] = 1172, + [2335] = 916, + [2336] = 915, + [2337] = 1169, + [2338] = 1170, + [2339] = 1171, + [2340] = 925, + [2341] = 924, + [2342] = 914, + [2343] = 913, + [2344] = 1152, + [2345] = 1154, + [2346] = 1155, + [2347] = 1157, + [2348] = 1146, + [2349] = 1147, + [2350] = 1148, + [2351] = 1149, + [2352] = 1150, + [2353] = 1151, + [2354] = 1166, + [2355] = 1167, + [2356] = 1137, + [2357] = 1155, + [2358] = 1246, + [2359] = 1247, + [2360] = 1234, + [2361] = 1327, + [2362] = 1213, + [2363] = 1327, + [2364] = 1245, + [2365] = 1140, + [2366] = 1209, + [2367] = 1084, + [2368] = 1168, + [2369] = 1221, + [2370] = 1220, + [2371] = 1085, + [2372] = 1181, + [2373] = 1246, + [2374] = 1247, + [2375] = 1279, + [2376] = 1280, + [2377] = 1245, + [2378] = 1140, + [2379] = 1299, + [2380] = 1426, + [2381] = 1303, + [2382] = 1106, + [2383] = 1221, + [2384] = 1220, + [2385] = 1312, + [2386] = 1313, + [2387] = 1314, + [2388] = 1316, + [2389] = 1328, + [2390] = 1333, + [2391] = 1334, + [2392] = 1336, + [2393] = 916, + [2394] = 1338, + [2395] = 1246, + [2396] = 1298, + [2397] = 1136, + [2398] = 1247, + [2399] = 1217, + [2400] = 1111, [2401] = 1298, - [2402] = 1293, - [2403] = 1261, - [2404] = 1292, - [2405] = 1160, - [2406] = 1291, - [2407] = 1290, - [2408] = 1288, - [2409] = 1287, - [2410] = 1284, - [2411] = 1283, - [2412] = 1282, - [2413] = 1281, - [2414] = 1280, - [2415] = 1279, - [2416] = 1286, - [2417] = 1278, - [2418] = 1277, - [2419] = 1273, - [2420] = 1272, - [2421] = 1271, - [2422] = 1265, - [2423] = 1263, - [2424] = 1260, - [2425] = 1259, - [2426] = 1258, - [2427] = 1254, - [2428] = 1252, - [2429] = 1251, - [2430] = 1249, - [2431] = 1247, - [2432] = 1246, - [2433] = 1245, - [2434] = 1243, - [2435] = 1242, - [2436] = 1241, - [2437] = 1481, - [2438] = 1240, - [2439] = 1504, - [2440] = 1140, - [2441] = 1141, - [2442] = 1142, - [2443] = 1139, - [2444] = 1143, - [2445] = 1144, - [2446] = 1145, - [2447] = 1146, - [2448] = 1250, - [2449] = 1147, - [2450] = 1148, - [2451] = 1155, - [2452] = 1156, - [2453] = 1163, - [2454] = 1164, - [2455] = 1171, - [2456] = 1172, - [2457] = 1173, - [2458] = 1174, - [2459] = 1175, - [2460] = 1176, - [2461] = 1177, - [2462] = 1148, - [2463] = 1161, - [2464] = 915, - [2465] = 914, - [2466] = 1105, - [2467] = 1092, - [2468] = 1185, - [2469] = 1184, - [2470] = 1105, - [2471] = 1318, - [2472] = 1317, - [2473] = 1316, - [2474] = 1315, - [2475] = 1314, - [2476] = 1313, - [2477] = 1504, - [2478] = 1311, - [2479] = 1310, - [2480] = 1308, - [2481] = 1307, - [2482] = 1303, - [2483] = 1302, - [2484] = 1301, - [2485] = 1298, - [2486] = 1293, - [2487] = 1292, - [2488] = 1291, - [2489] = 1290, - [2490] = 1288, - [2491] = 1287, - [2492] = 1180, - [2493] = 1179, - [2494] = 1284, - [2495] = 1283, - [2496] = 1282, - [2497] = 1281, - [2498] = 1280, - [2499] = 1279, - [2500] = 1272, - [2501] = 1271, - [2502] = 1265, - [2503] = 1263, - [2504] = 1260, - [2505] = 1259, - [2506] = 1258, - [2507] = 1254, - [2508] = 1252, - [2509] = 1251, - [2510] = 1249, - [2511] = 1247, - [2512] = 1246, - [2513] = 1245, - [2514] = 1243, - [2515] = 1242, - [2516] = 1241, - [2517] = 1240, - [2518] = 1140, - [2519] = 1141, - [2520] = 1142, - [2521] = 1139, - [2522] = 1157, - [2523] = 1143, - [2524] = 1144, - [2525] = 1145, - [2526] = 1146, - [2527] = 1147, - [2528] = 1171, - [2529] = 1155, - [2530] = 1156, - [2531] = 1163, - [2532] = 1164, - [2533] = 1506, - [2534] = 1172, - [2535] = 1173, - [2536] = 1174, - [2537] = 1175, - [2538] = 1176, - [2539] = 1177, - [2540] = 1092, - [2541] = 1286, - [2542] = 1098, - [2543] = 1091, - [2544] = 1116, - [2545] = 1112, - [2546] = 1562, - [2547] = 1561, - [2548] = 1560, - [2549] = 1109, - [2550] = 1559, - [2551] = 1558, - [2552] = 1557, - [2553] = 1556, - [2554] = 1555, - [2555] = 1093, - [2556] = 1554, - [2557] = 1553, - [2558] = 1552, - [2559] = 1551, - [2560] = 1549, - [2561] = 1548, - [2562] = 1547, - [2563] = 1543, - [2564] = 1542, - [2565] = 1108, - [2566] = 1107, - [2567] = 1102, - [2568] = 1177, - [2569] = 1176, - [2570] = 1175, - [2571] = 1119, - [2572] = 1174, - [2573] = 1173, - [2574] = 1172, - [2575] = 1171, - [2576] = 1164, - [2577] = 1163, - [2578] = 1156, - [2579] = 1155, - [2580] = 1148, - [2581] = 1147, - [2582] = 1146, - [2583] = 1145, - [2584] = 1144, - [2585] = 1114, - [2586] = 1143, - [2587] = 1139, - [2588] = 1142, - [2589] = 1141, - [2590] = 1140, - [2591] = 1240, - [2592] = 1241, - [2593] = 1242, - [2594] = 1243, - [2595] = 1245, - [2596] = 1246, - [2597] = 1247, - [2598] = 1249, - [2599] = 1251, - [2600] = 1252, - [2601] = 1254, - [2602] = 1124, - [2603] = 1127, - [2604] = 1121, - [2605] = 1258, - [2606] = 1259, - [2607] = 1260, - [2608] = 1263, - [2609] = 1265, - [2610] = 1271, - [2611] = 1272, - [2612] = 1273, - [2613] = 1277, - [2614] = 1278, - [2615] = 1279, - [2616] = 1280, - [2617] = 1281, - [2618] = 1282, - [2619] = 1283, - [2620] = 1284, - [2621] = 1157, - [2622] = 919, - [2623] = 918, - [2624] = 1264, - [2625] = 1135, - [2626] = 1119, - [2627] = 1094, - [2628] = 1182, - [2629] = 1261, + [2402] = 1112, + [2403] = 1222, + [2404] = 1224, + [2405] = 1225, + [2406] = 1226, + [2407] = 1230, + [2408] = 1414, + [2409] = 1527, + [2410] = 1526, + [2411] = 1525, + [2412] = 1524, + [2413] = 1523, + [2414] = 1522, + [2415] = 1245, + [2416] = 1140, + [2417] = 1221, + [2418] = 1220, + [2419] = 1521, + [2420] = 1520, + [2421] = 1519, + [2422] = 1307, + [2423] = 1518, + [2424] = 1517, + [2425] = 1516, + [2426] = 1515, + [2427] = 1514, + [2428] = 1327, + [2429] = 1513, + [2430] = 1512, + [2431] = 1511, + [2432] = 1231, + [2433] = 916, + [2434] = 915, + [2435] = 925, + [2436] = 924, + [2437] = 914, + [2438] = 913, + [2439] = 913, + [2440] = 914, + [2441] = 924, + [2442] = 915, + [2443] = 916, + [2444] = 1232, + [2445] = 1117, + [2446] = 925, + [2447] = 1233, + [2448] = 916, + [2449] = 1234, + [2450] = 1325, + [2451] = 915, + [2452] = 913, + [2453] = 1099, + [2454] = 1415, + [2455] = 914, + [2456] = 1100, + [2457] = 1101, + [2458] = 914, + [2459] = 1117, + [2460] = 1216, + [2461] = 1160, + [2462] = 1207, + [2463] = 1255, + [2464] = 924, + [2465] = 925, + [2466] = 1135, + [2467] = 1137, + [2468] = 1259, + [2469] = 1266, + [2470] = 1272, + [2471] = 913, + [2472] = 915, + [2473] = 1325, + [2474] = 914, + [2475] = 924, + [2476] = 925, + [2477] = 1424, + [2478] = 1275, + [2479] = 1146, + [2480] = 1147, + [2481] = 1148, + [2482] = 1149, + [2483] = 1327, + [2484] = 924, + [2485] = 1150, + [2486] = 1151, + [2487] = 925, + [2488] = 1152, + [2489] = 1154, + [2490] = 1155, + [2491] = 1157, + [2492] = 1166, + [2493] = 1167, + [2494] = 1307, + [2495] = 1171, + [2496] = 1172, + [2497] = 1299, + [2498] = 1303, + [2499] = 1173, + [2500] = 1180, + [2501] = 1244, + [2502] = 1190, + [2503] = 1191, + [2504] = 1194, + [2505] = 1195, + [2506] = 1196, + [2507] = 1197, + [2508] = 1198, + [2509] = 1426, + [2510] = 1280, + [2511] = 1234, + [2512] = 1233, + [2513] = 1134, + [2514] = 1232, + [2515] = 1231, + [2516] = 1230, + [2517] = 1226, + [2518] = 1225, + [2519] = 1224, + [2520] = 1222, + [2521] = 1298, + [2522] = 1217, + [2523] = 1213, + [2524] = 1181, + [2525] = 1209, + [2526] = 1207, + [2527] = 1206, + [2528] = 1205, + [2529] = 1199, + [2530] = 1200, + [2531] = 1201, + [2532] = 1202, + [2533] = 1203, + [2534] = 1202, + [2535] = 1201, + [2536] = 1200, + [2537] = 1199, + [2538] = 1198, + [2539] = 1197, + [2540] = 1196, + [2541] = 1195, + [2542] = 1194, + [2543] = 1136, + [2544] = 1416, + [2545] = 1191, + [2546] = 1511, + [2547] = 1512, + [2548] = 1513, + [2549] = 1424, + [2550] = 1514, + [2551] = 1515, + [2552] = 1516, + [2553] = 1517, + [2554] = 1518, + [2555] = 1190, + [2556] = 1519, + [2557] = 1520, + [2558] = 1521, + [2559] = 1522, + [2560] = 1523, + [2561] = 1524, + [2562] = 1525, + [2563] = 1526, + [2564] = 1527, + [2565] = 1244, + [2566] = 1180, + [2567] = 1173, + [2568] = 1172, + [2569] = 1203, + [2570] = 1205, + [2571] = 1134, + [2572] = 1206, + [2573] = 1207, + [2574] = 1209, + [2575] = 1154, + [2576] = 1324, + [2577] = 1181, + [2578] = 1213, + [2579] = 1217, + [2580] = 1222, + [2581] = 1224, + [2582] = 1225, + [2583] = 1226, + [2584] = 2584, + [2585] = 1230, + [2586] = 1231, + [2587] = 1232, + [2588] = 1233, + [2589] = 1234, + [2590] = 1313, + [2591] = 1314, + [2592] = 1206, + [2593] = 1205, + [2594] = 1220, + [2595] = 1169, + [2596] = 1221, + [2597] = 1101, + [2598] = 1171, + [2599] = 1324, + [2600] = 1137, + [2601] = 1135, + [2602] = 1170, + [2603] = 1169, + [2604] = 1324, + [2605] = 1168, + [2606] = 1167, + [2607] = 1166, + [2608] = 916, + [2609] = 915, + [2610] = 1157, + [2611] = 1155, + [2612] = 1154, + [2613] = 1152, + [2614] = 1100, + [2615] = 1099, + [2616] = 1191, + [2617] = 1324, + [2618] = 1204, + [2619] = 1233, + [2620] = 1232, + [2621] = 1325, + [2622] = 1231, + [2623] = 1230, + [2624] = 1226, + [2625] = 1225, + [2626] = 1224, + [2627] = 1151, + [2628] = 1150, + [2629] = 1149, [2630] = 1127, - [2631] = 1157, - [2632] = 1264, - [2633] = 914, - [2634] = 1287, - [2635] = 1288, - [2636] = 1290, - [2637] = 1291, - [2638] = 1292, - [2639] = 1293, - [2640] = 1298, - [2641] = 1301, - [2642] = 1302, - [2643] = 1303, - [2644] = 1307, - [2645] = 1308, - [2646] = 1310, - [2647] = 1311, - [2648] = 1313, - [2649] = 1314, - [2650] = 1315, - [2651] = 1316, - [2652] = 1317, - [2653] = 1318, - [2654] = 915, - [2655] = 1160, - [2656] = 1161, - [2657] = 917, - [2658] = 916, - [2659] = 916, - [2660] = 1506, - [2661] = 1278, - [2662] = 917, - [2663] = 1185, - [2664] = 1184, - [2665] = 1126, - [2666] = 1109, - [2667] = 1261, - [2668] = 1112, - [2669] = 1116, - [2670] = 1091, - [2671] = 1098, - [2672] = 1286, - [2673] = 918, - [2674] = 919, - [2675] = 1180, - [2676] = 1316, - [2677] = 1315, - [2678] = 1179, - [2679] = 915, - [2680] = 914, - [2681] = 1250, - [2682] = 1250, - [2683] = 1092, - [2684] = 1105, - [2685] = 916, - [2686] = 914, - [2687] = 915, - [2688] = 916, - [2689] = 917, - [2690] = 918, - [2691] = 1084, - [2692] = 919, - [2693] = 1160, + [2631] = 1148, + [2632] = 1147, + [2633] = 1146, + [2634] = 925, + [2635] = 924, + [2636] = 1222, + [2637] = 913, + [2638] = 1217, + [2639] = 1312, + [2640] = 1246, + [2641] = 1213, + [2642] = 1247, + [2643] = 925, + [2644] = 924, + [2645] = 1204, + [2646] = 1272, + [2647] = 1123, + [2648] = 1181, + [2649] = 1140, + [2650] = 1125, + [2651] = 1126, + [2652] = 1245, + [2653] = 1279, + [2654] = 1280, + [2655] = 1128, + [2656] = 1299, + [2657] = 1303, + [2658] = 1312, + [2659] = 1313, + [2660] = 2660, + [2661] = 916, + [2662] = 1121, + [2663] = 1314, + [2664] = 915, + [2665] = 1316, + [2666] = 1328, + [2667] = 1333, + [2668] = 1334, + [2669] = 1336, + [2670] = 1275, + [2671] = 1325, + [2672] = 1425, + [2673] = 1272, + [2674] = 1266, + [2675] = 1259, + [2676] = 1255, + [2677] = 1160, + [2678] = 1216, + [2679] = 1338, + [2680] = 1336, + [2681] = 1334, + [2682] = 1333, + [2683] = 1127, + [2684] = 1328, + [2685] = 1316, + [2686] = 1307, + [2687] = 1314, + [2688] = 1146, + [2689] = 1147, + [2690] = 1148, + [2691] = 1090, + [2692] = 1313, + [2693] = 1312, [2694] = 1087, - [2695] = 1161, - [2696] = 1086, - [2697] = 1185, - [2698] = 1184, - [2699] = 1085, - [2700] = 1180, - [2701] = 1179, - [2702] = 1160, - [2703] = 1161, - [2704] = 1185, - [2705] = 1184, - [2706] = 1180, - [2707] = 1179, - [2708] = 1160, - [2709] = 1161, - [2710] = 1185, - [2711] = 1184, - [2712] = 1180, - [2713] = 1179, - [2714] = 1128, - [2715] = 1314, - [2716] = 914, - [2717] = 915, - [2718] = 916, - [2719] = 917, - [2720] = 1313, - [2721] = 1311, - [2722] = 1088, - [2723] = 1310, - [2724] = 1308, - [2725] = 1307, - [2726] = 1303, - [2727] = 1302, - [2728] = 1301, - [2729] = 1298, - [2730] = 1293, - [2731] = 1292, - [2732] = 1291, - [2733] = 1290, - [2734] = 918, - [2735] = 1288, - [2736] = 1287, - [2737] = 1088, - [2738] = 1177, - [2739] = 1176, - [2740] = 1175, - [2741] = 1174, + [2695] = 1121, + [2696] = 1088, + [2697] = 1303, + [2698] = 1299, + [2699] = 1280, + [2700] = 1279, + [2701] = 1155, + [2702] = 1245, + [2703] = 1140, + [2704] = 914, + [2705] = 913, + [2706] = 1338, + [2707] = 1216, + [2708] = 914, + [2709] = 913, + [2710] = 914, + [2711] = 913, + [2712] = 1160, + [2713] = 1255, + [2714] = 1259, + [2715] = 1279, + [2716] = 1280, + [2717] = 1299, + [2718] = 1298, + [2719] = 1303, + [2720] = 1312, + [2721] = 1221, + [2722] = 1220, + [2723] = 915, + [2724] = 916, + [2725] = 1313, + [2726] = 1314, + [2727] = 1316, + [2728] = 1328, + [2729] = 1333, + [2730] = 1334, + [2731] = 1336, + [2732] = 1338, + [2733] = 1425, + [2734] = 1266, + [2735] = 1216, + [2736] = 1160, + [2737] = 1084, + [2738] = 1272, + [2739] = 1255, + [2740] = 1275, + [2741] = 1209, [2742] = 1085, - [2743] = 1173, - [2744] = 1172, - [2745] = 1171, - [2746] = 1164, - [2747] = 1163, - [2748] = 1156, - [2749] = 1155, - [2750] = 1148, + [2743] = 1207, + [2744] = 1259, + [2745] = 1247, + [2746] = 1246, + [2747] = 1266, + [2748] = 1272, + [2749] = 1275, + [2750] = 1146, [2751] = 1147, - [2752] = 1146, - [2753] = 1145, - [2754] = 1144, - [2755] = 919, - [2756] = 1143, - [2757] = 1139, - [2758] = 1142, - [2759] = 1141, - [2760] = 1140, - [2761] = 1240, - [2762] = 1241, - [2763] = 1242, - [2764] = 1243, - [2765] = 1245, - [2766] = 1246, - [2767] = 1247, - [2768] = 1249, - [2769] = 1251, - [2770] = 1252, - [2771] = 1254, - [2772] = 1182, - [2773] = 1093, - [2774] = 1157, - [2775] = 914, - [2776] = 1094, - [2777] = 1135, - [2778] = 915, - [2779] = 918, - [2780] = 1258, - [2781] = 1259, - [2782] = 1260, - [2783] = 1263, - [2784] = 1265, - [2785] = 1271, - [2786] = 1272, - [2787] = 1273, - [2788] = 1277, - [2789] = 1278, - [2790] = 2790, - [2791] = 919, - [2792] = 917, - [2793] = 1284, - [2794] = 1283, - [2795] = 1282, - [2796] = 1281, - [2797] = 1279, - [2798] = 1280, - [2799] = 1281, - [2800] = 1282, - [2801] = 1283, - [2802] = 1284, - [2803] = 919, - [2804] = 918, - [2805] = 1280, - [2806] = 1279, - [2807] = 918, - [2808] = 1277, - [2809] = 1273, - [2810] = 1272, - [2811] = 1271, - [2812] = 1287, - [2813] = 1288, - [2814] = 1290, - [2815] = 1291, - [2816] = 1292, - [2817] = 1293, - [2818] = 1298, - [2819] = 1301, - [2820] = 1302, - [2821] = 1303, - [2822] = 1307, - [2823] = 1308, - [2824] = 1310, - [2825] = 1311, - [2826] = 1313, - [2827] = 1314, - [2828] = 1315, - [2829] = 1316, - [2830] = 1317, - [2831] = 1318, - [2832] = 1265, - [2833] = 1278, - [2834] = 917, - [2835] = 916, - [2836] = 1260, - [2837] = 1259, - [2838] = 1258, - [2839] = 1273, - [2840] = 1121, - [2841] = 919, - [2842] = 914, - [2843] = 1136, - [2844] = 1124, - [2845] = 1254, - [2846] = 1252, - [2847] = 1251, - [2848] = 1249, - [2849] = 1247, - [2850] = 1246, - [2851] = 1245, - [2852] = 915, - [2853] = 914, - [2854] = 915, - [2855] = 916, - [2856] = 1243, - [2857] = 1242, - [2858] = 1241, - [2859] = 1240, - [2860] = 1140, - [2861] = 1141, - [2862] = 1142, - [2863] = 1139, - [2864] = 1143, - [2865] = 1114, - [2866] = 917, - [2867] = 1144, - [2868] = 1145, - [2869] = 1146, - [2870] = 1147, - [2871] = 2871, - [2872] = 1148, - [2873] = 1155, - [2874] = 1156, - [2875] = 1163, - [2876] = 1164, - [2877] = 1171, - [2878] = 1263, - [2879] = 1108, - [2880] = 1107, - [2881] = 1102, - [2882] = 1114, - [2883] = 1124, - [2884] = 1173, - [2885] = 1136, - [2886] = 1121, - [2887] = 918, - [2888] = 1135, - [2889] = 1172, - [2890] = 1094, - [2891] = 1093, + [2752] = 1148, + [2753] = 1149, + [2754] = 1150, + [2755] = 1151, + [2756] = 1206, + [2757] = 1205, + [2758] = 1157, + [2759] = 1112, + [2760] = 1149, + [2761] = 1166, + [2762] = 1167, + [2763] = 1168, + [2764] = 1169, + [2765] = 915, + [2766] = 916, + [2767] = 1170, + [2768] = 1171, + [2769] = 1172, + [2770] = 1173, + [2771] = 1180, + [2772] = 1244, + [2773] = 1190, + [2774] = 1191, + [2775] = 1194, + [2776] = 1195, + [2777] = 1196, + [2778] = 1197, + [2779] = 1198, + [2780] = 1199, + [2781] = 1275, + [2782] = 1111, + [2783] = 1200, + [2784] = 1201, + [2785] = 1202, + [2786] = 1203, + [2787] = 1135, + [2788] = 1106, + [2789] = 1205, + [2790] = 1206, + [2791] = 1307, + [2792] = 1207, + [2793] = 1209, + [2794] = 924, + [2795] = 925, + [2796] = 1181, + [2797] = 1213, + [2798] = 1101, + [2799] = 1100, + [2800] = 1146, + [2801] = 1147, + [2802] = 1148, + [2803] = 1149, + [2804] = 1150, + [2805] = 1099, + [2806] = 1217, + [2807] = 1151, + [2808] = 1222, + [2809] = 1224, + [2810] = 1225, + [2811] = 1226, + [2812] = 1230, + [2813] = 1231, + [2814] = 1232, + [2815] = 1233, + [2816] = 1234, + [2817] = 1152, + [2818] = 1098, + [2819] = 1203, + [2820] = 1098, + [2821] = 1152, + [2822] = 1154, + [2823] = 1155, + [2824] = 1202, + [2825] = 1201, + [2826] = 1200, + [2827] = 1199, + [2828] = 1198, + [2829] = 1197, + [2830] = 1166, + [2831] = 1167, + [2832] = 1168, + [2833] = 1169, + [2834] = 1170, + [2835] = 1171, + [2836] = 1196, + [2837] = 1195, + [2838] = 1157, + [2839] = 1194, + [2840] = 1190, + [2841] = 1244, + [2842] = 1180, + [2843] = 1173, + [2844] = 1172, + [2845] = 1097, + [2846] = 1197, + [2847] = 1096, + [2848] = 1095, + [2849] = 1098, + [2850] = 1203, + [2851] = 1202, + [2852] = 1201, + [2853] = 1200, + [2854] = 1199, + [2855] = 1198, + [2856] = 1150, + [2857] = 1196, + [2858] = 1195, + [2859] = 1194, + [2860] = 1191, + [2861] = 1095, + [2862] = 1151, + [2863] = 1190, + [2864] = 1096, + [2865] = 1244, + [2866] = 1180, + [2867] = 1173, + [2868] = 1106, + [2869] = 1125, + [2870] = 1111, + [2871] = 1112, + [2872] = 1328, + [2873] = 1279, + [2874] = 1334, + [2875] = 1092, + [2876] = 1128, + [2877] = 1336, + [2878] = 1338, + [2879] = 1216, + [2880] = 1126, + [2881] = 1170, + [2882] = 1123, + [2883] = 1316, + [2884] = 1172, + [2885] = 1097, + [2886] = 1127, + [2887] = 1096, + [2888] = 1092, + [2889] = 1095, + [2890] = 1171, + [2891] = 1097, [2892] = 1126, - [2893] = 1109, - [2894] = 1112, - [2895] = 919, - [2896] = 1102, - [2897] = 1119, - [2898] = 1507, - [2899] = 1177, - [2900] = 1176, - [2901] = 1175, - [2902] = 1182, - [2903] = 1096, - [2904] = 1286, - [2905] = 1277, - [2906] = 1250, - [2907] = 1098, - [2908] = 1182, - [2909] = 1096, - [2910] = 1127, - [2911] = 1116, - [2912] = 1128, - [2913] = 1091, - [2914] = 1174, - [2915] = 1261, - [2916] = 1264, - [2917] = 1108, - [2918] = 1107, - [2919] = 1551, - [2920] = 1315, - [2921] = 1146, - [2922] = 1147, - [2923] = 1148, - [2924] = 1155, - [2925] = 1156, - [2926] = 1163, - [2927] = 1164, - [2928] = 1171, - [2929] = 1172, - [2930] = 1173, - [2931] = 1174, - [2932] = 1175, - [2933] = 1176, - [2934] = 1177, - [2935] = 1102, - [2936] = 1107, - [2937] = 1108, - [2938] = 1201, - [2939] = 1200, - [2940] = 1199, - [2941] = 1578, - [2942] = 1312, - [2943] = 1198, - [2944] = 1197, - [2945] = 1191, - [2946] = 1186, - [2947] = 1149, - [2948] = 1150, - [2949] = 1151, - [2950] = 1152, - [2951] = 1153, - [2952] = 1154, - [2953] = 1264, - [2954] = 1158, - [2955] = 1159, - [2956] = 1203, - [2957] = 1261, - [2958] = 1250, - [2959] = 914, - [2960] = 915, - [2961] = 2961, - [2962] = 1507, - [2963] = 1162, - [2964] = 1165, - [2965] = 1166, - [2966] = 1167, - [2967] = 1504, - [2968] = 1168, - [2969] = 1481, - [2970] = 1178, - [2971] = 1084, - [2972] = 1620, - [2973] = 1087, - [2974] = 1264, - [2975] = 1157, - [2976] = 1086, - [2977] = 1483, - [2978] = 1482, - [2979] = 1210, - [2980] = 1481, - [2981] = 1144, - [2982] = 1222, - [2983] = 1157, - [2984] = 1114, - [2985] = 1226, - [2986] = 1227, - [2987] = 1482, - [2988] = 1228, - [2989] = 1229, - [2990] = 1182, - [2991] = 1286, - [2992] = 916, - [2993] = 917, - [2994] = 1219, - [2995] = 1312, - [2996] = 1236, - [2997] = 1237, - [2998] = 919, - [2999] = 918, - [3000] = 917, - [3001] = 916, - [3002] = 915, - [3003] = 914, - [3004] = 1219, - [3005] = 1179, - [3006] = 1180, - [3007] = 1184, - [3008] = 1185, - [3009] = 1161, - [3010] = 1160, - [3011] = 1201, - [3012] = 1200, - [3013] = 1198, - [3014] = 1197, - [3015] = 1191, - [3016] = 1186, - [3017] = 1149, - [3018] = 1238, - [3019] = 1239, - [3020] = 1244, - [3021] = 1150, - [3022] = 1151, - [3023] = 1152, - [3024] = 1255, - [3025] = 1153, - [3026] = 1154, - [3027] = 1203, - [3028] = 1158, - [3029] = 1159, - [3030] = 1256, - [3031] = 1160, - [3032] = 1161, - [3033] = 1162, - [3034] = 1165, - [3035] = 1166, - [3036] = 1167, - [3037] = 1504, - [3038] = 1168, - [3039] = 1481, - [3040] = 1483, - [3041] = 1262, - [3042] = 1243, - [3043] = 1178, - [3044] = 1266, - [3045] = 1267, - [3046] = 1143, - [3047] = 1268, - [3048] = 1269, - [3049] = 1270, - [3050] = 1139, - [3051] = 1274, - [3052] = 1275, - [3053] = 1276, - [3054] = 1142, - [3055] = 1210, - [3056] = 918, - [3057] = 919, - [3058] = 1222, - [3059] = 1226, - [3060] = 1227, - [3061] = 1482, - [3062] = 1318, - [3063] = 1317, - [3064] = 1316, - [3065] = 1145, - [3066] = 1346, - [3067] = 1345, - [3068] = 1344, - [3069] = 1343, - [3070] = 1342, - [3071] = 1341, - [3072] = 1340, - [3073] = 1339, - [3074] = 1338, - [3075] = 1337, - [3076] = 1228, - [3077] = 1229, - [3078] = 1185, - [3079] = 1314, - [3080] = 1313, - [3081] = 1311, - [3082] = 1199, - [3083] = 1308, - [3084] = 1307, - [3085] = 1303, - [3086] = 1336, - [3087] = 1335, - [3088] = 1334, - [3089] = 1333, - [3090] = 1332, - [3091] = 1331, - [3092] = 1329, - [3093] = 1327, - [3094] = 1325, - [3095] = 1324, - [3096] = 1323, - [3097] = 1322, - [3098] = 1321, - [3099] = 1320, - [3100] = 1309, - [3101] = 1141, - [3102] = 1140, - [3103] = 1306, - [3104] = 1240, - [3105] = 1305, - [3106] = 1304, - [3107] = 1241, - [3108] = 1300, - [3109] = 1299, - [3110] = 1297, - [3111] = 1302, - [3112] = 1301, - [3113] = 1298, - [3114] = 1293, - [3115] = 1292, - [3116] = 1291, - [3117] = 1290, - [3118] = 1288, - [3119] = 1287, - [3120] = 1236, - [3121] = 1237, - [3122] = 1238, - [3123] = 1239, - [3124] = 1244, - [3125] = 1562, - [3126] = 1561, - [3127] = 1296, - [3128] = 1289, - [3129] = 1242, - [3130] = 1285, - [3131] = 1560, - [3132] = 1255, - [3133] = 1559, - [3134] = 1558, - [3135] = 1557, - [3136] = 1556, - [3137] = 1555, - [3138] = 1256, - [3139] = 1554, - [3140] = 1553, - [3141] = 1552, - [3142] = 1551, - [3143] = 1549, - [3144] = 1213, - [3145] = 1548, - [3146] = 1547, - [3147] = 1543, - [3148] = 1245, - [3149] = 1246, - [3150] = 1247, - [3151] = 1249, - [3152] = 1251, - [3153] = 1252, - [3154] = 1254, - [3155] = 1184, - [3156] = 1284, - [3157] = 1283, - [3158] = 1124, - [3159] = 1282, - [3160] = 1281, - [3161] = 1280, - [3162] = 1285, - [3163] = 1279, - [3164] = 1136, - [3165] = 1289, - [3166] = 1296, - [3167] = 1121, - [3168] = 1483, - [3169] = 1262, - [3170] = 1506, - [3171] = 1278, - [3172] = 1277, - [3173] = 1273, - [3174] = 1272, - [3175] = 1271, - [3176] = 1265, - [3177] = 1263, - [3178] = 1260, - [3179] = 1259, - [3180] = 1258, - [3181] = 1266, - [3182] = 1267, - [3183] = 1160, - [3184] = 1161, - [3185] = 1268, - [3186] = 1269, - [3187] = 1270, - [3188] = 1258, - [3189] = 1504, - [3190] = 1259, - [3191] = 1481, + [2893] = 1204, + [2894] = 1128, + [2895] = 1121, + [2896] = 1160, + [2897] = 1123, + [2898] = 1134, + [2899] = 1092, + [2900] = 1333, + [2901] = 1259, + [2902] = 1126, + [2903] = 1266, + [2904] = 1157, + [2905] = 1125, + [2906] = 1166, + [2907] = 1123, + [2908] = 1255, + [2909] = 1092, + [2910] = 1167, + [2911] = 1125, + [2912] = 1204, + [2913] = 1168, + [2914] = 1128, + [2915] = 1152, + [2916] = 1169, + [2917] = 1170, + [2918] = 1154, + [2919] = 1159, + [2920] = 1523, + [2921] = 1284, + [2922] = 1098, + [2923] = 1285, + [2924] = 1205, + [2925] = 1206, + [2926] = 1207, + [2927] = 1209, + [2928] = 1181, + [2929] = 1213, + [2930] = 1217, + [2931] = 1222, + [2932] = 1224, + [2933] = 1225, + [2934] = 1226, + [2935] = 1230, + [2936] = 1231, + [2937] = 1232, + [2938] = 1233, + [2939] = 1234, + [2940] = 1099, + [2941] = 1100, + [2942] = 1101, + [2943] = 1286, + [2944] = 1189, + [2945] = 1188, + [2946] = 1187, + [2947] = 1287, + [2948] = 1288, + [2949] = 1289, + [2950] = 2950, + [2951] = 1182, + [2952] = 1179, + [2953] = 1175, + [2954] = 1161, + [2955] = 1139, + [2956] = 1158, + [2957] = 1156, + [2958] = 1153, + [2959] = 1290, + [2960] = 2960, + [2961] = 1144, + [2962] = 1291, + [2963] = 1292, + [2964] = 1143, + [2965] = 1142, + [2966] = 1257, + [2967] = 1293, + [2968] = 916, + [2969] = 915, + [2970] = 1236, + [2971] = 1237, + [2972] = 1242, + [2973] = 1243, + [2974] = 1424, + [2975] = 1248, + [2976] = 1416, + [2977] = 1261, + [2978] = 1223, + [2979] = 1294, + [2980] = 1295, + [2981] = 1296, + [2982] = 1297, + [2983] = 1141, + [2984] = 1235, + [2985] = 1238, + [2986] = 1239, + [2987] = 1415, + [2988] = 1240, + [2989] = 1241, + [2990] = 1305, + [2991] = 1306, + [2992] = 913, + [2993] = 914, + [2994] = 1308, + [2995] = 1309, + [2996] = 1250, + [2997] = 1251, + [2998] = 1311, + [2999] = 1320, + [3000] = 1321, + [3001] = 1218, + [3002] = 1212, + [3003] = 1337, + [3004] = 1335, + [3005] = 1414, + [3006] = 1202, + [3007] = 1250, + [3008] = 1201, + [3009] = 1332, + [3010] = 1200, + [3011] = 1331, + [3012] = 1330, + [3013] = 1199, + [3014] = 1323, + [3015] = 1322, + [3016] = 1319, + [3017] = 1198, + [3018] = 1252, + [3019] = 1253, + [3020] = 1254, + [3021] = 1323, + [3022] = 1322, + [3023] = 1197, + [3024] = 1256, + [3025] = 1196, + [3026] = 1195, + [3027] = 1194, + [3028] = 1191, + [3029] = 1190, + [3030] = 1258, + [3031] = 1153, + [3032] = 1127, + [3033] = 1244, + [3034] = 1180, + [3035] = 1173, + [3036] = 1172, + [3037] = 1330, + [3038] = 1765, + [3039] = 1766, + [3040] = 1414, + [3041] = 1260, + [3042] = 1157, + [3043] = 1097, + [3044] = 1267, + [3045] = 1268, + [3046] = 1415, + [3047] = 1269, + [3048] = 1270, + [3049] = 1271, + [3050] = 1331, + [3051] = 1276, + [3052] = 1277, + [3053] = 1278, + [3054] = 1283, + [3055] = 1332, + [3056] = 924, + [3057] = 925, + [3058] = 1416, + [3059] = 1096, + [3060] = 1095, + [3061] = 1223, + [3062] = 1335, + [3063] = 1337, + [3064] = 1212, + [3065] = 1218, + [3066] = 1284, + [3067] = 1285, + [3068] = 1286, + [3069] = 1287, + [3070] = 1288, + [3071] = 1289, + [3072] = 1290, + [3073] = 1291, + [3074] = 1292, + [3075] = 1293, + [3076] = 1321, + [3077] = 1320, + [3078] = 1311, + [3079] = 1309, + [3080] = 1308, + [3081] = 1306, + [3082] = 1318, + [3083] = 1317, + [3084] = 1305, + [3085] = 1245, + [3086] = 1294, + [3087] = 1295, + [3088] = 1296, + [3089] = 1297, + [3090] = 1305, + [3091] = 1306, + [3092] = 1308, + [3093] = 1309, + [3094] = 1311, + [3095] = 1320, + [3096] = 1321, + [3097] = 1218, + [3098] = 1212, + [3099] = 1337, + [3100] = 1335, + [3101] = 1171, + [3102] = 1170, + [3103] = 1332, + [3104] = 1169, + [3105] = 1331, + [3106] = 1330, + [3107] = 1168, + [3108] = 1323, + [3109] = 1322, + [3110] = 1319, + [3111] = 1319, + [3112] = 1167, + [3113] = 1166, + [3114] = 1092, + [3115] = 1155, + [3116] = 1154, + [3117] = 1296, + [3118] = 1152, + [3119] = 1297, + [3120] = 1295, + [3121] = 1294, + [3122] = 1151, + [3123] = 1150, + [3124] = 1149, + [3125] = 1148, + [3126] = 1147, + [3127] = 1318, + [3128] = 1317, + [3129] = 1146, + [3130] = 1315, + [3131] = 1293, + [3132] = 1318, + [3133] = 1317, + [3134] = 1292, + [3135] = 1327, + [3136] = 1315, + [3137] = 1145, + [3138] = 1291, + [3139] = 1290, + [3140] = 1289, + [3141] = 1106, + [3142] = 1288, + [3143] = 1287, + [3144] = 1286, + [3145] = 1285, + [3146] = 1284, + [3147] = 1111, + [3148] = 1112, + [3149] = 1251, + [3150] = 1426, + [3151] = 1246, + [3152] = 1247, + [3153] = 1156, + [3154] = 1278, + [3155] = 1324, + [3156] = 1092, + [3157] = 1277, + [3158] = 1276, + [3159] = 1271, + [3160] = 1270, + [3161] = 1269, + [3162] = 1268, + [3163] = 1088, + [3164] = 1267, + [3165] = 1087, + [3166] = 1275, + [3167] = 1272, + [3168] = 1090, + [3169] = 1266, + [3170] = 1259, + [3171] = 1255, + [3172] = 1160, + [3173] = 1216, + [3174] = 1338, + [3175] = 1336, + [3176] = 1334, + [3177] = 1333, + [3178] = 1090, + [3179] = 1328, + [3180] = 1316, + [3181] = 1314, + [3182] = 1313, + [3183] = 1220, + [3184] = 1221, + [3185] = 1312, + [3186] = 1303, + [3187] = 1299, + [3188] = 1280, + [3189] = 1424, + [3190] = 1279, + [3191] = 1416, [3192] = 1260, - [3193] = 1263, - [3194] = 1297, - [3195] = 1274, - [3196] = 1299, - [3197] = 1300, - [3198] = 1265, - [3199] = 1304, - [3200] = 1310, - [3201] = 1305, - [3202] = 1306, - [3203] = 1271, - [3204] = 1272, - [3205] = 1273, - [3206] = 1277, - [3207] = 1309, - [3208] = 1320, - [3209] = 1321, - [3210] = 1322, - [3211] = 1323, - [3212] = 1324, - [3213] = 1325, - [3214] = 1327, - [3215] = 1329, - [3216] = 1331, - [3217] = 1278, - [3218] = 1333, - [3219] = 1334, - [3220] = 1335, - [3221] = 1336, - [3222] = 1275, - [3223] = 1482, - [3224] = 1276, - [3225] = 1213, - [3226] = 1180, - [3227] = 1179, - [3228] = 1346, - [3229] = 1345, - [3230] = 1185, - [3231] = 1184, - [3232] = 1344, - [3233] = 1343, - [3234] = 1342, - [3235] = 1341, - [3236] = 1504, - [3237] = 1279, - [3238] = 1280, - [3239] = 1281, - [3240] = 1282, - [3241] = 1283, - [3242] = 1284, - [3243] = 1340, - [3244] = 1254, - [3245] = 1252, - [3246] = 1251, - [3247] = 1249, - [3248] = 1264, - [3249] = 1213, - [3250] = 1247, - [3251] = 1246, - [3252] = 1245, - [3253] = 1135, - [3254] = 1542, - [3255] = 1242, - [3256] = 1241, - [3257] = 1562, - [3258] = 1561, - [3259] = 1560, + [3193] = 1414, + [3194] = 1258, + [3195] = 1256, + [3196] = 1254, + [3197] = 1425, + [3198] = 1325, + [3199] = 1253, + [3200] = 1252, + [3201] = 1121, + [3202] = 1254, + [3203] = 1128, + [3204] = 1527, + [3205] = 1526, + [3206] = 1525, + [3207] = 1524, + [3208] = 1203, + [3209] = 1522, + [3210] = 1521, + [3211] = 1520, + [3212] = 1519, + [3213] = 1518, + [3214] = 1517, + [3215] = 1516, + [3216] = 1515, + [3217] = 1514, + [3218] = 1513, + [3219] = 1512, + [3220] = 1511, + [3221] = 1126, + [3222] = 1125, + [3223] = 1415, + [3224] = 1123, + [3225] = 1325, + [3226] = 1251, + [3227] = 1250, + [3228] = 1245, + [3229] = 1140, + [3230] = 1140, + [3231] = 1245, + [3232] = 1253, + [3233] = 1241, + [3234] = 1324, + [3235] = 1240, + [3236] = 1415, + [3237] = 1239, + [3238] = 1238, + [3239] = 1277, + [3240] = 1235, + [3241] = 1141, + [3242] = 1187, + [3243] = 1511, + [3244] = 1307, + [3245] = 1261, + [3246] = 1416, + [3247] = 1248, + [3248] = 1243, + [3249] = 1242, + [3250] = 1237, + [3251] = 1236, + [3252] = 1182, + [3253] = 1179, + [3254] = 1221, + [3255] = 1241, + [3256] = 1220, + [3257] = 1511, + [3258] = 1512, + [3259] = 1513, [3260] = 1240, - [3261] = 1559, - [3262] = 1558, - [3263] = 1557, - [3264] = 1556, - [3265] = 1555, - [3266] = 1140, - [3267] = 1554, - [3268] = 1553, - [3269] = 1552, - [3270] = 1551, - [3271] = 1549, - [3272] = 1548, - [3273] = 1547, - [3274] = 1543, - [3275] = 1542, - [3276] = 1483, - [3277] = 1337, - [3278] = 1338, - [3279] = 1339, - [3280] = 1340, - [3281] = 1341, - [3282] = 1098, - [3283] = 1342, - [3284] = 1343, - [3285] = 1344, - [3286] = 1345, - [3287] = 1346, + [3261] = 1514, + [3262] = 1515, + [3263] = 1516, + [3264] = 1517, + [3265] = 1518, + [3266] = 1415, + [3267] = 1519, + [3268] = 1520, + [3269] = 1521, + [3270] = 1522, + [3271] = 1523, + [3272] = 1524, + [3273] = 1525, + [3274] = 1526, + [3275] = 1527, + [3276] = 1414, + [3277] = 1239, + [3278] = 1238, + [3279] = 1416, + [3280] = 1235, + [3281] = 1298, + [3282] = 1512, + [3283] = 1513, + [3284] = 1256, + [3285] = 1514, + [3286] = 1117, + [3287] = 1142, [3288] = 1141, - [3289] = 1094, - [3290] = 1338, - [3291] = 1142, - [3292] = 1093, - [3293] = 1139, - [3294] = 1180, - [3295] = 1179, - [3296] = 1143, - [3297] = 1337, - [3298] = 1578, - [3299] = 1336, - [3300] = 1335, - [3301] = 1334, - [3302] = 1333, - [3303] = 1332, - [3304] = 1331, - [3305] = 1329, - [3306] = 1327, - [3307] = 1507, - [3308] = 1179, - [3309] = 1180, - [3310] = 1325, - [3311] = 1324, - [3312] = 1323, - [3313] = 1322, - [3314] = 1321, - [3315] = 1320, - [3316] = 1309, - [3317] = 1306, - [3318] = 1305, - [3319] = 1304, - [3320] = 1300, - [3321] = 1299, - [3322] = 1287, - [3323] = 1288, - [3324] = 1276, - [3325] = 1297, - [3326] = 1275, - [3327] = 1274, - [3328] = 1290, - [3329] = 1270, - [3330] = 1269, - [3331] = 1268, - [3332] = 1267, - [3333] = 1266, - [3334] = 1291, - [3335] = 1292, - [3336] = 1293, - [3337] = 1298, - [3338] = 1262, - [3339] = 1483, - [3340] = 1301, - [3341] = 1296, - [3342] = 1289, - [3343] = 1285, - [3344] = 1339, - [3345] = 1261, - [3346] = 1198, - [3347] = 1302, - [3348] = 1303, - [3349] = 1307, - [3350] = 1308, - [3351] = 1310, - [3352] = 1311, - [3353] = 1313, - [3354] = 1314, - [3355] = 1315, - [3356] = 1316, - [3357] = 1317, - [3358] = 1318, - [3359] = 1197, - [3360] = 1218, - [3361] = 1144, - [3362] = 1145, - [3363] = 1146, - [3364] = 1147, - [3365] = 1148, - [3366] = 1256, - [3367] = 1155, - [3368] = 1156, - [3369] = 1506, - [3370] = 1261, - [3371] = 1163, - [3372] = 1164, - [3373] = 1171, - [3374] = 1172, - [3375] = 1173, - [3376] = 1126, - [3377] = 1109, - [3378] = 1174, - [3379] = 1112, - [3380] = 1116, - [3381] = 1091, - [3382] = 1175, - [3383] = 1176, - [3384] = 1243, - [3385] = 1201, - [3386] = 1200, - [3387] = 1199, - [3388] = 1191, - [3389] = 1186, - [3390] = 1149, - [3391] = 1150, - [3392] = 1255, - [3393] = 1151, - [3394] = 1119, - [3395] = 1185, - [3396] = 1250, - [3397] = 1160, - [3398] = 1161, - [3399] = 1244, - [3400] = 1239, - [3401] = 1507, - [3402] = 1238, - [3403] = 1203, - [3404] = 1127, - [3405] = 1332, - [3406] = 1152, - [3407] = 1153, - [3408] = 1542, - [3409] = 1543, - [3410] = 1547, - [3411] = 1548, - [3412] = 1549, - [3413] = 1552, - [3414] = 3414, - [3415] = 1553, - [3416] = 1286, - [3417] = 1554, - [3418] = 1555, - [3419] = 1556, - [3420] = 1557, - [3421] = 1185, - [3422] = 1184, - [3423] = 1098, - [3424] = 1091, - [3425] = 1558, - [3426] = 1559, - [3427] = 1560, - [3428] = 1561, - [3429] = 1562, - [3430] = 1086, - [3431] = 1154, - [3432] = 1158, - [3433] = 1159, - [3434] = 1087, - [3435] = 1084, - [3436] = 1160, - [3437] = 1250, - [3438] = 1161, - [3439] = 1162, - [3440] = 1165, - [3441] = 1166, - [3442] = 1177, - [3443] = 1116, - [3444] = 1167, - [3445] = 1168, - [3446] = 1481, - [3447] = 1178, - [3448] = 1105, - [3449] = 1092, - [3450] = 919, - [3451] = 918, - [3452] = 1542, - [3453] = 1543, - [3454] = 1547, - [3455] = 1548, - [3456] = 1112, - [3457] = 1109, - [3458] = 1549, - [3459] = 1551, - [3460] = 1552, - [3461] = 1553, - [3462] = 1554, - [3463] = 1555, - [3464] = 1180, - [3465] = 1179, - [3466] = 1250, - [3467] = 1556, - [3468] = 1264, - [3469] = 1557, - [3470] = 1558, - [3471] = 1261, - [3472] = 1506, - [3473] = 1559, - [3474] = 1560, - [3475] = 1561, - [3476] = 1562, - [3477] = 1506, - [3478] = 1128, - [3479] = 917, - [3480] = 916, - [3481] = 1210, - [3482] = 1222, - [3483] = 1620, - [3484] = 1226, - [3485] = 1227, - [3486] = 1482, - [3487] = 1228, - [3488] = 1229, - [3489] = 1507, - [3490] = 915, + [3289] = 1261, + [3290] = 1248, + [3291] = 1424, + [3292] = 1516, + [3293] = 1517, + [3294] = 1247, + [3295] = 1246, + [3296] = 1518, + [3297] = 1242, + [3298] = 1258, + [3299] = 1515, + [3300] = 1158, + [3301] = 1237, + [3302] = 1236, + [3303] = 1159, + [3304] = 1139, + [3305] = 1161, + [3306] = 1175, + [3307] = 1424, + [3308] = 1425, + [3309] = 1426, + [3310] = 1202, + [3311] = 1188, + [3312] = 1143, + [3313] = 1189, + [3314] = 1182, + [3315] = 1221, + [3316] = 1220, + [3317] = 1204, + [3318] = 1144, + [3319] = 1179, + [3320] = 1257, + [3321] = 1153, + [3322] = 1252, + [3323] = 1088, + [3324] = 1519, + [3325] = 1279, + [3326] = 1280, + [3327] = 1299, + [3328] = 1303, + [3329] = 1156, + [3330] = 1312, + [3331] = 1158, + [3332] = 1159, + [3333] = 1139, + [3334] = 1161, + [3335] = 1313, + [3336] = 1175, + [3337] = 1187, + [3338] = 1188, + [3339] = 1327, + [3340] = 1189, + [3341] = 1135, + [3342] = 1137, + [3343] = 1766, + [3344] = 1316, + [3345] = 1328, + [3346] = 1333, + [3347] = 1521, + [3348] = 1243, + [3349] = 1234, + [3350] = 1522, + [3351] = 1765, + [3352] = 1283, + [3353] = 1334, + [3354] = 1233, + [3355] = 1232, + [3356] = 1231, + [3357] = 1230, + [3358] = 1226, + [3359] = 1225, + [3360] = 1224, + [3361] = 1222, + [3362] = 1217, + [3363] = 1213, + [3364] = 1181, + [3365] = 1209, + [3366] = 1207, + [3367] = 1206, + [3368] = 1205, + [3369] = 1203, + [3370] = 1171, + [3371] = 1201, + [3372] = 1200, + [3373] = 1199, + [3374] = 1336, + [3375] = 1338, + [3376] = 1523, + [3377] = 1198, + [3378] = 1197, + [3379] = 1196, + [3380] = 1195, + [3381] = 1325, + [3382] = 1216, + [3383] = 1160, + [3384] = 1327, + [3385] = 1255, + [3386] = 1194, + [3387] = 1191, + [3388] = 1259, + [3389] = 1246, + [3390] = 1190, + [3391] = 1244, + [3392] = 1142, + [3393] = 1266, + [3394] = 1143, + [3395] = 1180, + [3396] = 1173, + [3397] = 1220, + [3398] = 1221, + [3399] = 1172, + [3400] = 1247, + [3401] = 1272, + [3402] = 1275, + [3403] = 1314, + [3404] = 1524, + [3405] = 1525, + [3406] = 1087, + [3407] = 1526, + [3408] = 1166, + [3409] = 925, + [3410] = 1170, + [3411] = 1298, + [3412] = 1136, + [3413] = 1169, + [3414] = 1168, + [3415] = 1167, + [3416] = 1527, + [3417] = 925, + [3418] = 924, + [3419] = 1527, + [3420] = 1526, + [3421] = 1140, + [3422] = 1245, + [3423] = 1525, + [3424] = 1524, + [3425] = 1523, + [3426] = 1522, + [3427] = 1521, + [3428] = 1520, + [3429] = 1519, + [3430] = 1518, + [3431] = 1517, + [3432] = 1516, + [3433] = 1515, + [3434] = 1514, + [3435] = 1513, + [3436] = 1512, + [3437] = 1511, + [3438] = 1414, + [3439] = 1520, + [3440] = 1145, + [3441] = 1134, + [3442] = 1324, + [3443] = 1249, + [3444] = 1278, + [3445] = 1220, + [3446] = 1221, + [3447] = 1140, + [3448] = 1140, + [3449] = 1249, + [3450] = 1245, + [3451] = 1247, + [3452] = 1425, + [3453] = 1325, + [3454] = 1246, + [3455] = 1145, + [3456] = 1146, + [3457] = 1147, + [3458] = 1148, + [3459] = 1149, + [3460] = 1150, + [3461] = 1267, + [3462] = 1268, + [3463] = 1157, + [3464] = 1247, + [3465] = 1246, + [3466] = 1155, + [3467] = 1154, + [3468] = 1152, + [3469] = 1151, + [3470] = 1260, + [3471] = 1327, + [3472] = 1276, + [3473] = 1271, + [3474] = 1307, + [3475] = 1270, + [3476] = 914, + [3477] = 913, + [3478] = 1315, + [3479] = 1426, + [3480] = 1257, + [3481] = 1269, + [3482] = 1128, + [3483] = 916, + [3484] = 1126, + [3485] = 1125, + [3486] = 915, + [3487] = 1123, + [3488] = 913, + [3489] = 1426, + [3490] = 1425, [3491] = 914, - [3492] = 1184, - [3493] = 1236, - [3494] = 1237, - [3495] = 1182, - [3496] = 1096, - [3497] = 1218, - [3498] = 1180, - [3499] = 1161, - [3500] = 1093, - [3501] = 1136, - [3502] = 1094, - [3503] = 1124, - [3504] = 1086, - [3505] = 1087, - [3506] = 1542, - [3507] = 1254, - [3508] = 1126, - [3509] = 1252, - [3510] = 1251, - [3511] = 1249, - [3512] = 1247, - [3513] = 1160, - [3514] = 1246, - [3515] = 1245, - [3516] = 1243, - [3517] = 1280, - [3518] = 1161, - [3519] = 1242, - [3520] = 1241, - [3521] = 1084, - [3522] = 1301, - [3523] = 1298, - [3524] = 1135, - [3525] = 1283, - [3526] = 1240, - [3527] = 1213, - [3528] = 1292, - [3529] = 915, - [3530] = 918, - [3531] = 919, - [3532] = 1140, - [3533] = 1141, - [3534] = 3534, - [3535] = 1293, - [3536] = 1284, - [3537] = 1142, - [3538] = 1271, - [3539] = 1562, - [3540] = 1561, - [3541] = 1560, - [3542] = 1139, - [3543] = 1283, - [3544] = 1094, - [3545] = 1559, - [3546] = 1558, - [3547] = 1282, - [3548] = 1557, - [3549] = 1556, - [3550] = 1555, - [3551] = 1554, - [3552] = 1093, - [3553] = 1553, - [3554] = 1552, - [3555] = 916, - [3556] = 1264, - [3557] = 1261, - [3558] = 1250, - [3559] = 1312, - [3560] = 1143, - [3561] = 1289, - [3562] = 1302, - [3563] = 1281, - [3564] = 1280, - [3565] = 1279, - [3566] = 1278, - [3567] = 1277, - [3568] = 1273, - [3569] = 1272, - [3570] = 1121, - [3571] = 1265, - [3572] = 1263, - [3573] = 1260, - [3574] = 1291, - [3575] = 1290, - [3576] = 1201, - [3577] = 1200, - [3578] = 1264, - [3579] = 1199, - [3580] = 1282, - [3581] = 1259, - [3582] = 1198, - [3583] = 1197, - [3584] = 1191, - [3585] = 1186, - [3586] = 1149, - [3587] = 1150, - [3588] = 914, - [3589] = 1258, - [3590] = 1506, - [3591] = 1507, - [3592] = 1114, - [3593] = 1285, - [3594] = 1506, - [3595] = 1185, - [3596] = 1504, - [3597] = 1144, - [3598] = 1145, - [3599] = 1146, - [3600] = 1147, - [3601] = 1148, - [3602] = 1155, - [3603] = 1320, - [3604] = 919, - [3605] = 1219, - [3606] = 918, - [3607] = 1121, - [3608] = 917, - [3609] = 1303, - [3610] = 916, - [3611] = 1184, - [3612] = 1136, - [3613] = 915, - [3614] = 1279, - [3615] = 914, - [3616] = 1318, - [3617] = 1317, - [3618] = 1124, - [3619] = 1316, - [3620] = 1315, - [3621] = 1314, - [3622] = 1313, - [3623] = 1254, - [3624] = 1252, - [3625] = 1251, - [3626] = 1151, - [3627] = 1152, - [3628] = 1249, - [3629] = 1247, - [3630] = 1246, - [3631] = 1245, - [3632] = 1273, - [3633] = 1243, - [3634] = 1318, - [3635] = 1242, - [3636] = 1241, - [3637] = 1240, - [3638] = 1140, - [3639] = 1263, - [3640] = 1153, - [3641] = 1141, - [3642] = 1142, - [3643] = 1139, - [3644] = 1281, - [3645] = 1154, - [3646] = 1504, - [3647] = 1288, - [3648] = 1143, - [3649] = 1114, - [3650] = 1158, - [3651] = 1159, - [3652] = 1311, - [3653] = 1203, - [3654] = 1105, - [3655] = 1092, - [3656] = 914, - [3657] = 1144, - [3658] = 915, - [3659] = 1145, - [3660] = 1146, - [3661] = 1147, - [3662] = 919, - [3663] = 1160, - [3664] = 1161, - [3665] = 1162, - [3666] = 1165, - [3667] = 1166, - [3668] = 918, - [3669] = 1260, - [3670] = 1148, - [3671] = 1317, - [3672] = 1155, - [3673] = 917, - [3674] = 916, - [3675] = 1177, - [3676] = 1176, - [3677] = 1175, - [3678] = 1174, - [3679] = 1173, - [3680] = 1172, - [3681] = 1171, - [3682] = 1164, - [3683] = 1163, - [3684] = 1156, - [3685] = 1155, - [3686] = 1148, - [3687] = 1147, - [3688] = 1146, - [3689] = 1145, - [3690] = 1144, - [3691] = 1143, - [3692] = 1139, - [3693] = 1167, - [3694] = 1504, - [3695] = 1168, - [3696] = 1481, - [3697] = 1178, - [3698] = 1287, - [3699] = 1218, - [3700] = 1156, - [3701] = 1261, - [3702] = 1272, - [3703] = 1163, - [3704] = 915, - [3705] = 914, - [3706] = 1179, - [3707] = 1180, - [3708] = 1164, - [3709] = 1171, - [3710] = 1184, - [3711] = 1185, - [3712] = 1142, - [3713] = 1141, - [3714] = 1140, - [3715] = 1240, - [3716] = 1241, - [3717] = 1242, - [3718] = 1243, - [3719] = 1245, - [3720] = 1172, - [3721] = 1173, - [3722] = 1092, - [3723] = 1246, - [3724] = 1247, - [3725] = 1249, - [3726] = 1251, - [3727] = 1252, - [3728] = 1254, - [3729] = 1105, - [3730] = 1258, - [3731] = 1259, - [3732] = 1260, - [3733] = 1263, - [3734] = 1265, - [3735] = 1271, - [3736] = 1272, - [3737] = 1273, - [3738] = 1277, - [3739] = 1278, - [3740] = 1279, - [3741] = 1280, - [3742] = 1281, - [3743] = 1282, - [3744] = 1283, - [3745] = 1284, - [3746] = 919, - [3747] = 1562, - [3748] = 1264, - [3749] = 1160, - [3750] = 1250, - [3751] = 1174, - [3752] = 1175, - [3753] = 1310, - [3754] = 1308, - [3755] = 919, - [3756] = 918, - [3757] = 1307, - [3758] = 1303, - [3759] = 917, - [3760] = 916, - [3761] = 1302, - [3762] = 1301, - [3763] = 915, - [3764] = 1560, - [3765] = 914, - [3766] = 1176, - [3767] = 1177, - [3768] = 1156, - [3769] = 1507, - [3770] = 1559, - [3771] = 1163, - [3772] = 1102, - [3773] = 1107, - [3774] = 1164, - [3775] = 1558, - [3776] = 918, - [3777] = 1557, - [3778] = 1556, - [3779] = 1555, - [3780] = 1210, - [3781] = 1271, - [3782] = 1222, - [3783] = 1226, - [3784] = 1227, - [3785] = 1482, - [3786] = 1228, - [3787] = 1229, - [3788] = 916, - [3789] = 917, - [3790] = 1554, - [3791] = 1553, - [3792] = 1552, - [3793] = 1185, - [3794] = 1172, - [3795] = 1173, - [3796] = 916, - [3797] = 1298, - [3798] = 1293, - [3799] = 1108, - [3800] = 1287, - [3801] = 1288, - [3802] = 1290, - [3803] = 1291, - [3804] = 1292, - [3805] = 1293, - [3806] = 1298, - [3807] = 1301, - [3808] = 1302, - [3809] = 1303, - [3810] = 1307, - [3811] = 1308, - [3812] = 1310, - [3813] = 1311, - [3814] = 1313, - [3815] = 1314, - [3816] = 1315, - [3817] = 1316, - [3818] = 1317, - [3819] = 1318, - [3820] = 1307, - [3821] = 1506, - [3822] = 1261, - [3823] = 1314, - [3824] = 914, - [3825] = 915, - [3826] = 1551, - [3827] = 1179, - [3828] = 1180, - [3829] = 1174, - [3830] = 1175, - [3831] = 1184, - [3832] = 1185, - [3833] = 1184, - [3834] = 1176, - [3835] = 1177, - [3836] = 1161, - [3837] = 1160, - [3838] = 1549, - [3839] = 1236, - [3840] = 1102, - [3841] = 1107, - [3842] = 1108, - [3843] = 1316, - [3844] = 1277, - [3845] = 1313, - [3846] = 1250, - [3847] = 1126, - [3848] = 1311, - [3849] = 1292, - [3850] = 1291, - [3851] = 1290, - [3852] = 1288, - [3853] = 1287, - [3854] = 1237, - [3855] = 1551, - [3856] = 1504, - [3857] = 1481, - [3858] = 1549, - [3859] = 1296, - [3860] = 1548, - [3861] = 1547, - [3862] = 1315, - [3863] = 1543, - [3864] = 1542, - [3865] = 1265, - [3866] = 1238, - [3867] = 1239, - [3868] = 1244, - [3869] = 1562, - [3870] = 1561, - [3871] = 917, - [3872] = 1310, - [3873] = 1560, - [3874] = 1255, - [3875] = 1559, - [3876] = 1558, - [3877] = 1557, - [3878] = 1556, - [3879] = 1555, - [3880] = 1256, - [3881] = 1554, - [3882] = 1553, - [3883] = 1552, - [3884] = 1551, - [3885] = 1549, - [3886] = 1548, - [3887] = 1547, - [3888] = 1543, - [3889] = 1278, - [3890] = 1308, - [3891] = 1542, - [3892] = 1483, - [3893] = 1287, - [3894] = 1288, - [3895] = 1160, - [3896] = 1161, - [3897] = 1262, - [3898] = 1264, - [3899] = 1290, - [3900] = 1266, - [3901] = 1561, - [3902] = 1119, - [3903] = 1268, - [3904] = 1291, - [3905] = 1269, - [3906] = 1270, - [3907] = 1274, - [3908] = 1275, - [3909] = 1276, - [3910] = 918, - [3911] = 1292, - [3912] = 919, - [3913] = 1180, - [3914] = 1179, - [3915] = 1293, - [3916] = 1346, - [3917] = 1185, - [3918] = 1184, - [3919] = 1345, - [3920] = 1344, - [3921] = 1343, - [3922] = 1342, - [3923] = 1341, - [3924] = 1127, - [3925] = 1340, - [3926] = 1507, - [3927] = 1298, - [3928] = 1261, - [3929] = 1339, - [3930] = 1338, - [3931] = 1337, - [3932] = 1301, - [3933] = 1302, - [3934] = 1336, - [3935] = 1335, - [3936] = 1267, - [3937] = 1333, - [3938] = 1332, - [3939] = 1303, - [3940] = 1482, - [3941] = 1250, - [3942] = 1331, - [3943] = 1329, - [3944] = 1327, - [3945] = 1325, - [3946] = 1324, - [3947] = 1323, - [3948] = 1322, - [3949] = 1180, - [3950] = 1321, - [3951] = 1259, - [3952] = 1318, - [3953] = 1317, - [3954] = 1316, - [3955] = 1315, - [3956] = 917, - [3957] = 1171, - [3958] = 1307, - [3959] = 1179, - [3960] = 1314, - [3961] = 1313, - [3962] = 1311, - [3963] = 1284, - [3964] = 1309, - [3965] = 1306, - [3966] = 1127, - [3967] = 1305, - [3968] = 1304, - [3969] = 1300, - [3970] = 1299, - [3971] = 1297, - [3972] = 1334, - [3973] = 1177, - [3974] = 1176, - [3975] = 1175, - [3976] = 1174, - [3977] = 1173, - [3978] = 1172, - [3979] = 1171, - [3980] = 1164, - [3981] = 1163, - [3982] = 1156, - [3983] = 1119, - [3984] = 1155, - [3985] = 1148, - [3986] = 1147, - [3987] = 1506, - [3988] = 1146, - [3989] = 1483, - [3990] = 1542, - [3991] = 1543, - [3992] = 1547, - [3993] = 1548, - [3994] = 1549, - [3995] = 1551, - [3996] = 1552, - [3997] = 1553, - [3998] = 1554, - [3999] = 1145, - [4000] = 1555, - [4001] = 1556, - [4002] = 1557, - [4003] = 1558, - [4004] = 1559, - [4005] = 1144, - [4006] = 1560, - [4007] = 1561, - [4008] = 1543, - [4009] = 1562, - [4010] = 1143, - [4011] = 1258, - [4012] = 1547, - [4013] = 1135, - [4014] = 1139, - [4015] = 1142, - [4016] = 1141, - [4017] = 1140, - [4018] = 1240, - [4019] = 1241, - [4020] = 1242, - [4021] = 1243, - [4022] = 1548, - [4023] = 1245, - [4024] = 1246, - [4025] = 1247, - [4026] = 1249, - [4027] = 1308, - [4028] = 1251, - [4029] = 1252, - [4030] = 1254, - [4031] = 1258, - [4032] = 1259, - [4033] = 1260, - [4034] = 1263, - [4035] = 1265, - [4036] = 1271, - [4037] = 1272, - [4038] = 1273, - [4039] = 1310, - [4040] = 1277, - [4041] = 1278, - [4042] = 1279, - [4043] = 1280, - [4044] = 1281, - [4045] = 1282, - [4046] = 1283, - [4047] = 1284, - [4048] = 1179, - [4049] = 915, - [4050] = 1301, - [4051] = 1158, - [4052] = 1274, - [4053] = 1203, - [4054] = 1333, - [4055] = 1250, - [4056] = 1237, - [4057] = 1244, - [4058] = 1236, - [4059] = 1264, - [4060] = 1184, - [4061] = 1160, - [4062] = 1562, - [4063] = 1506, - [4064] = 1543, - [4065] = 1238, - [4066] = 1275, - [4067] = 1213, - [4068] = 1547, - [4069] = 1548, - [4070] = 1238, - [4071] = 1549, - [4072] = 1239, - [4073] = 1551, - [4074] = 1244, - [4075] = 1562, - [4076] = 1222, - [4077] = 1561, - [4078] = 1185, - [4079] = 1339, - [4080] = 1542, - [4081] = 1543, - [4082] = 1547, - [4083] = 1548, - [4084] = 1549, - [4085] = 1336, - [4086] = 1335, - [4087] = 1551, - [4088] = 1229, - [4089] = 1552, - [4090] = 1338, - [4091] = 1553, - [4092] = 1334, - [4093] = 1554, - [4094] = 1255, - [4095] = 3534, - [4096] = 1559, - [4097] = 1300, - [4098] = 1556, - [4099] = 1558, - [4100] = 1557, - [4101] = 1337, - [4102] = 1333, - [4103] = 1557, - [4104] = 1556, - [4105] = 1558, - [4106] = 1332, - [4107] = 1555, - [4108] = 1331, - [4109] = 1559, - [4110] = 1560, - [4111] = 1561, - [4112] = 1562, - [4113] = 1228, - [4114] = 1482, - [4115] = 1343, - [4116] = 1227, - [4117] = 1340, - [4118] = 1329, - [4119] = 1327, - [4120] = 1226, - [4121] = 1504, - [4122] = 1481, - [4123] = 1341, - [4124] = 1210, - [4125] = 1325, - [4126] = 1324, - [4127] = 1323, - [4128] = 1322, - [4129] = 1342, - [4130] = 1321, - [4131] = 1269, - [4132] = 1178, - [4133] = 1320, - [4134] = 1256, - [4135] = 1481, - [4136] = 1179, - [4137] = 1180, - [4138] = 1168, - [4139] = 1504, - [4140] = 1167, - [4141] = 1166, - [4142] = 1165, - [4143] = 1162, - [4144] = 1161, - [4145] = 1268, - [4146] = 1160, - [4147] = 914, - [4148] = 1299, - [4149] = 1554, - [4150] = 1482, - [4151] = 916, - [4152] = 917, - [4153] = 1562, - [4154] = 1561, - [4155] = 918, - [4156] = 919, - [4157] = 1560, - [4158] = 1553, - [4159] = 1184, - [4160] = 1185, - [4161] = 1560, - [4162] = 1175, - [4163] = 1285, - [4164] = 1558, - [4165] = 1161, - [4166] = 1160, - [4167] = 1557, - [4168] = 1179, - [4169] = 1552, - [4170] = 1553, - [4171] = 1180, - [4172] = 1556, - [4173] = 1559, - [4174] = 1555, - [4175] = 1554, - [4176] = 1553, - [4177] = 1552, - [4178] = 1551, - [4179] = 1549, - [4180] = 1548, - [4181] = 1547, - [4182] = 1543, - [4183] = 1559, - [4184] = 1483, - [4185] = 1213, - [4186] = 1287, - [4187] = 1256, - [4188] = 1555, - [4189] = 1561, - [4190] = 914, - [4191] = 915, - [4192] = 1504, - [4193] = 1168, - [4194] = 1481, - [4195] = 1178, - [4196] = 1552, - [4197] = 4197, - [4198] = 1506, - [4199] = 1163, - [4200] = 1159, - [4201] = 1158, - [4202] = 1154, - [4203] = 1344, - [4204] = 1105, - [4205] = 1092, - [4206] = 1153, - [4207] = 1152, - [4208] = 1151, - [4209] = 1285, - [4210] = 1542, - [4211] = 1149, - [4212] = 1289, - [4213] = 1296, - [4214] = 1186, - [4215] = 1556, - [4216] = 1557, - [4217] = 1191, - [4218] = 1159, - [4219] = 1197, - [4220] = 1345, - [4221] = 1198, - [4222] = 1346, - [4223] = 1199, - [4224] = 1200, - [4225] = 1201, - [4226] = 1203, - [4227] = 1108, - [4228] = 1107, - [4229] = 1102, - [4230] = 1297, - [4231] = 1177, - [4232] = 1558, - [4233] = 1176, - [4234] = 1270, - [4235] = 1276, - [4236] = 1174, - [4237] = 1173, - [4238] = 1304, - [4239] = 1172, - [4240] = 1171, - [4241] = 1305, - [4242] = 1306, - [4243] = 1164, - [4244] = 1156, - [4245] = 1155, - [4246] = 1148, - [4247] = 1147, - [4248] = 1146, - [4249] = 1145, - [4250] = 1309, - [4251] = 1144, - [4252] = 1114, - [4253] = 1320, - [4254] = 1321, - [4255] = 1143, - [4256] = 1139, - [4257] = 1142, - [4258] = 1141, - [4259] = 1140, - [4260] = 1240, - [4261] = 1241, - [4262] = 1322, - [4263] = 1323, - [4264] = 1324, - [4265] = 1242, - [4266] = 1309, - [4267] = 1325, - [4268] = 1327, - [4269] = 1243, - [4270] = 1261, - [4271] = 1329, - [4272] = 1331, - [4273] = 1245, - [4274] = 1246, - [4275] = 1332, - [4276] = 1288, - [4277] = 1247, - [4278] = 1249, - [4279] = 1334, - [4280] = 1335, - [4281] = 1336, - [4282] = 1251, - [4283] = 1126, - [4284] = 1506, - [4285] = 916, - [4286] = 1481, - [4287] = 1482, - [4288] = 1483, - [4289] = 917, - [4290] = 1318, - [4291] = 1551, - [4292] = 1317, - [4293] = 1252, - [4294] = 1254, - [4295] = 1237, - [4296] = 1337, - [4297] = 1338, - [4298] = 1339, - [4299] = 1340, - [4300] = 1341, - [4301] = 1342, - [4302] = 1343, - [4303] = 1344, - [4304] = 1345, - [4305] = 1346, - [4306] = 1236, - [4307] = 1316, - [4308] = 1124, - [4309] = 1250, - [4310] = 1261, - [4311] = 1264, - [4312] = 1289, - [4313] = 1296, - [4314] = 1184, - [4315] = 1161, - [4316] = 1162, - [4317] = 1136, - [4318] = 1315, - [4319] = 1121, - [4320] = 1185, - [4321] = 1506, - [4322] = 1258, - [4323] = 1259, - [4324] = 1260, - [4325] = 1263, - [4326] = 1119, - [4327] = 1265, - [4328] = 1271, - [4329] = 1267, - [4330] = 1266, - [4331] = 1314, - [4332] = 1313, - [4333] = 1272, - [4334] = 1311, - [4335] = 1273, - [4336] = 1277, - [4337] = 1278, - [4338] = 919, - [4339] = 1154, - [4340] = 1310, - [4341] = 1150, - [4342] = 1308, - [4343] = 1307, - [4344] = 1303, - [4345] = 1179, - [4346] = 1180, - [4347] = 1282, - [4348] = 1302, - [4349] = 1542, - [4350] = 1555, - [4351] = 1165, - [4352] = 1279, - [4353] = 1280, - [4354] = 1276, - [4355] = 1275, + [3492] = 1204, + [3493] = 1144, + [3494] = 1324, + [3495] = 916, + [3496] = 915, + [3497] = 924, + [3498] = 1244, + [3499] = 1521, + [3500] = 1146, + [3501] = 914, + [3502] = 1147, + [3503] = 1148, + [3504] = 913, + [3505] = 1098, + [3506] = 1149, + [3507] = 1150, + [3508] = 1151, + [3509] = 1152, + [3510] = 1154, + [3511] = 1279, + [3512] = 1155, + [3513] = 1280, + [3514] = 1157, + [3515] = 1166, + [3516] = 1223, + [3517] = 1299, + [3518] = 1167, + [3519] = 1303, + [3520] = 1327, + [3521] = 1312, + [3522] = 1313, + [3523] = 1314, + [3524] = 1169, + [3525] = 1316, + [3526] = 1121, + [3527] = 1170, + [3528] = 1171, + [3529] = 1197, + [3530] = 1172, + [3531] = 1137, + [3532] = 1135, + [3533] = 1328, + [3534] = 1173, + [3535] = 1333, + [3536] = 1180, + [3537] = 1190, + [3538] = 1191, + [3539] = 1088, + [3540] = 1194, + [3541] = 1087, + [3542] = 1195, + [3543] = 1205, + [3544] = 1196, + [3545] = 1206, + [3546] = 1203, + [3547] = 1090, + [3548] = 1197, + [3549] = 1202, + [3550] = 1201, + [3551] = 1198, + [3552] = 1199, + [3553] = 1200, + [3554] = 1199, + [3555] = 1200, + [3556] = 1334, + [3557] = 1336, + [3558] = 1338, + [3559] = 1201, + [3560] = 1168, + [3561] = 1216, + [3562] = 1327, + [3563] = 1198, + [3564] = 1095, + [3565] = 1203, + [3566] = 1205, + [3567] = 1206, + [3568] = 1160, + [3569] = 1207, + [3570] = 1259, + [3571] = 1266, + [3572] = 1209, + [3573] = 1272, + [3574] = 1197, + [3575] = 1275, + [3576] = 1181, + [3577] = 1209, + [3578] = 3578, + [3579] = 1181, + [3580] = 1213, + [3581] = 1217, + [3582] = 1222, + [3583] = 1213, + [3584] = 1224, + [3585] = 1217, + [3586] = 1222, + [3587] = 1224, + [3588] = 1225, + [3589] = 1225, + [3590] = 1325, + [3591] = 1207, + [3592] = 915, + [3593] = 1196, + [3594] = 916, + [3595] = 1226, + [3596] = 1195, + [3597] = 1202, + [3598] = 1231, + [3599] = 1194, + [3600] = 1230, + [3601] = 1232, + [3602] = 1255, + [3603] = 1157, + [3604] = 1231, + [3605] = 925, + [3606] = 1233, + [3607] = 1191, + [3608] = 1324, + [3609] = 1234, + [3610] = 1232, + [3611] = 1233, + [3612] = 1234, + [3613] = 1426, + [3614] = 1230, + [3615] = 1527, + [3616] = 924, + [3617] = 1526, + [3618] = 1525, + [3619] = 1524, + [3620] = 1523, + [3621] = 1522, + [3622] = 1521, + [3623] = 1520, + [3624] = 1519, + [3625] = 1518, + [3626] = 1517, + [3627] = 1516, + [3628] = 1515, + [3629] = 1514, + [3630] = 1513, + [3631] = 1512, + [3632] = 1511, + [3633] = 1226, + [3634] = 1099, + [3635] = 1190, + [3636] = 1101, + [3637] = 1100, + [3638] = 1101, + [3639] = 1100, + [3640] = 1099, + [3641] = 1234, + [3642] = 1233, + [3643] = 1232, + [3644] = 1231, + [3645] = 1424, + [3646] = 1166, + [3647] = 1172, + [3648] = 1416, + [3649] = 1415, + [3650] = 1170, + [3651] = 1230, + [3652] = 1425, + [3653] = 1171, + [3654] = 1226, + [3655] = 1225, + [3656] = 1224, + [3657] = 1222, + [3658] = 1217, + [3659] = 1154, + [3660] = 1244, + [3661] = 1180, + [3662] = 1213, + [3663] = 1181, + [3664] = 1209, + [3665] = 1207, + [3666] = 1206, + [3667] = 1327, + [3668] = 1205, + [3669] = 1098, + [3670] = 1203, + [3671] = 1151, + [3672] = 1249, + [3673] = 1202, + [3674] = 1201, + [3675] = 1111, + [3676] = 1200, + [3677] = 1112, + [3678] = 1199, + [3679] = 1198, + [3680] = 1196, + [3681] = 1195, + [3682] = 1194, + [3683] = 1191, + [3684] = 1511, + [3685] = 1512, + [3686] = 1513, + [3687] = 1514, + [3688] = 1190, + [3689] = 1325, + [3690] = 1244, + [3691] = 1180, + [3692] = 1173, + [3693] = 1172, + [3694] = 1097, + [3695] = 1096, + [3696] = 1095, + [3697] = 1516, + [3698] = 1517, + [3699] = 1518, + [3700] = 1519, + [3701] = 1520, + [3702] = 1283, + [3703] = 1522, + [3704] = 1523, + [3705] = 1524, + [3706] = 1525, + [3707] = 1526, + [3708] = 1527, + [3709] = 1414, + [3710] = 1134, + [3711] = 1171, + [3712] = 1170, + [3713] = 1169, + [3714] = 1168, + [3715] = 1167, + [3716] = 925, + [3717] = 924, + [3718] = 1166, + [3719] = 1157, + [3720] = 914, + [3721] = 913, + [3722] = 1155, + [3723] = 1154, + [3724] = 915, + [3725] = 916, + [3726] = 1152, + [3727] = 1151, + [3728] = 1150, + [3729] = 1324, + [3730] = 1155, + [3731] = 1149, + [3732] = 1148, + [3733] = 1147, + [3734] = 1146, + [3735] = 1334, + [3736] = 925, + [3737] = 924, + [3738] = 1145, + [3739] = 1146, + [3740] = 1106, + [3741] = 1515, + [3742] = 1111, + [3743] = 1112, + [3744] = 925, + [3745] = 1191, + [3746] = 924, + [3747] = 914, + [3748] = 913, + [3749] = 916, + [3750] = 915, + [3751] = 915, + [3752] = 916, + [3753] = 1234, + [3754] = 1233, + [3755] = 1232, + [3756] = 1231, + [3757] = 1230, + [3758] = 1226, + [3759] = 1225, + [3760] = 1224, + [3761] = 1222, + [3762] = 1246, + [3763] = 1217, + [3764] = 1247, + [3765] = 1245, + [3766] = 1140, + [3767] = 1150, + [3768] = 1213, + [3769] = 1181, + [3770] = 1209, + [3771] = 1207, + [3772] = 1221, + [3773] = 1220, + [3774] = 1206, + [3775] = 1205, + [3776] = 1327, + [3777] = 1203, + [3778] = 1202, + [3779] = 1201, + [3780] = 1200, + [3781] = 925, + [3782] = 1199, + [3783] = 1198, + [3784] = 1197, + [3785] = 1196, + [3786] = 1195, + [3787] = 1194, + [3788] = 924, + [3789] = 1190, + [3790] = 1244, + [3791] = 1180, + [3792] = 1173, + [3793] = 1325, + [3794] = 1096, + [3795] = 914, + [3796] = 1172, + [3797] = 913, + [3798] = 1171, + [3799] = 1170, + [3800] = 1169, + [3801] = 1168, + [3802] = 1167, + [3803] = 1166, + [3804] = 1157, + [3805] = 1155, + [3806] = 1154, + [3807] = 1152, + [3808] = 1151, + [3809] = 1150, + [3810] = 1149, + [3811] = 1148, + [3812] = 1147, + [3813] = 1146, + [3814] = 1246, + [3815] = 1247, + [3816] = 915, + [3817] = 916, + [3818] = 1275, + [3819] = 1272, + [3820] = 1266, + [3821] = 1259, + [3822] = 1255, + [3823] = 1246, + [3824] = 1247, + [3825] = 1160, + [3826] = 1097, + [3827] = 1216, + [3828] = 1245, + [3829] = 1140, + [3830] = 1338, + [3831] = 1221, + [3832] = 1220, + [3833] = 1336, + [3834] = 1334, + [3835] = 1275, + [3836] = 1272, + [3837] = 1266, + [3838] = 1275, + [3839] = 1272, + [3840] = 1266, + [3841] = 1259, + [3842] = 1255, + [3843] = 1160, + [3844] = 1216, + [3845] = 1338, + [3846] = 1336, + [3847] = 1334, + [3848] = 1333, + [3849] = 1328, + [3850] = 1316, + [3851] = 1314, + [3852] = 1313, + [3853] = 1312, + [3854] = 1303, + [3855] = 1299, + [3856] = 1280, + [3857] = 1279, + [3858] = 1245, + [3859] = 1140, + [3860] = 1425, + [3861] = 1259, + [3862] = 1255, + [3863] = 1160, + [3864] = 1216, + [3865] = 1338, + [3866] = 1336, + [3867] = 1333, + [3868] = 1333, + [3869] = 1328, + [3870] = 1316, + [3871] = 1426, + [3872] = 1147, + [3873] = 1221, + [3874] = 1220, + [3875] = 1314, + [3876] = 1313, + [3877] = 1121, + [3878] = 1312, + [3879] = 1303, + [3880] = 1299, + [3881] = 1280, + [3882] = 1279, + [3883] = 1292, + [3884] = 1315, + [3885] = 1324, + [3886] = 1317, + [3887] = 1318, + [3888] = 1319, + [3889] = 1322, + [3890] = 1323, + [3891] = 1330, + [3892] = 1331, + [3893] = 1127, + [3894] = 1425, + [3895] = 1220, + [3896] = 1221, + [3897] = 1332, + [3898] = 1335, + [3899] = 1337, + [3900] = 1212, + [3901] = 1218, + [3902] = 1321, + [3903] = 1320, + [3904] = 1169, + [3905] = 1311, + [3906] = 1309, + [3907] = 1308, + [3908] = 1306, + [3909] = 1305, + [3910] = 1297, + [3911] = 1296, + [3912] = 1295, + [3913] = 1294, + [3914] = 1293, + [3915] = 1325, + [3916] = 1152, + [3917] = 1140, + [3918] = 1245, + [3919] = 1252, + [3920] = 1291, + [3921] = 1290, + [3922] = 1289, + [3923] = 1288, + [3924] = 1287, + [3925] = 1286, + [3926] = 1285, + [3927] = 1424, + [3928] = 1284, + [3929] = 1246, + [3930] = 1247, + [3931] = 925, + [3932] = 1324, + [3933] = 924, + [3934] = 1278, + [3935] = 1277, + [3936] = 1276, + [3937] = 1271, + [3938] = 1270, + [3939] = 1269, + [3940] = 1134, + [3941] = 1268, + [3942] = 1267, + [3943] = 1260, + [3944] = 1414, + [3945] = 1527, + [3946] = 1526, + [3947] = 1525, + [3948] = 1524, + [3949] = 1523, + [3950] = 1522, + [3951] = 1521, + [3952] = 1189, + [3953] = 1520, + [3954] = 1519, + [3955] = 1258, + [3956] = 1518, + [3957] = 1188, + [3958] = 1247, + [3959] = 1246, + [3960] = 1167, + [3961] = 1517, + [3962] = 1516, + [3963] = 1515, + [3964] = 1514, + [3965] = 1256, + [3966] = 1513, + [3967] = 1512, + [3968] = 1511, + [3969] = 1254, + [3970] = 1253, + [3971] = 1313, + [3972] = 1251, + [3973] = 1250, + [3974] = 1245, + [3975] = 1527, + [3976] = 1526, + [3977] = 1525, + [3978] = 1524, + [3979] = 1523, + [3980] = 1522, + [3981] = 1521, + [3982] = 1520, + [3983] = 1519, + [3984] = 1140, + [3985] = 1518, + [3986] = 1517, + [3987] = 1516, + [3988] = 1515, + [3989] = 1514, + [3990] = 914, + [3991] = 1513, + [3992] = 1512, + [3993] = 1511, + [3994] = 1173, + [3995] = 913, + [3996] = 1241, + [3997] = 1240, + [3998] = 1415, + [3999] = 1239, + [4000] = 1238, + [4001] = 1235, + [4002] = 1141, + [4003] = 1187, + [4004] = 1424, + [4005] = 913, + [4006] = 1148, + [4007] = 914, + [4008] = 1328, + [4009] = 1316, + [4010] = 1168, + [4011] = 1182, + [4012] = 1127, + [4013] = 1106, + [4014] = 1179, + [4015] = 1175, + [4016] = 1161, + [4017] = 1279, + [4018] = 1280, + [4019] = 1299, + [4020] = 1139, + [4021] = 1303, + [4022] = 1312, + [4023] = 1261, + [4024] = 1416, + [4025] = 1248, + [4026] = 1424, + [4027] = 1159, + [4028] = 1243, + [4029] = 1242, + [4030] = 1237, + [4031] = 1236, + [4032] = 1425, + [4033] = 1221, + [4034] = 1426, + [4035] = 1158, + [4036] = 1220, + [4037] = 915, + [4038] = 916, + [4039] = 1137, + [4040] = 1135, + [4041] = 1257, + [4042] = 1142, + [4043] = 1143, + [4044] = 1156, + [4045] = 1314, + [4046] = 1153, + [4047] = 1144, + [4048] = 1149, + [4049] = 1291, + [4050] = 1258, + [4051] = 1279, + [4052] = 1271, + [4053] = 1250, + [4054] = 1251, + [4055] = 1245, + [4056] = 1250, + [4057] = 1416, + [4058] = 1276, + [4059] = 1245, + [4060] = 1140, + [4061] = 1415, + [4062] = 1331, + [4063] = 1241, + [4064] = 1240, + [4065] = 1187, + [4066] = 1414, + [4067] = 1251, + [4068] = 1415, + [4069] = 1292, + [4070] = 1287, + [4071] = 1290, + [4072] = 1330, + [4073] = 1424, + [4074] = 1137, + [4075] = 1135, + [4076] = 1416, + [4077] = 1140, + [4078] = 1289, + [4079] = 1522, + [4080] = 914, + [4081] = 1324, + [4082] = 1425, + [4083] = 913, + [4084] = 1335, + [4085] = 1415, + [4086] = 1325, + [4087] = 1277, + [4088] = 1327, + [4089] = 1241, + [4090] = 1323, + [4091] = 1239, + [4092] = 1238, + [4093] = 1322, + [4094] = 1182, + [4095] = 1235, + [4096] = 1324, + [4097] = 1317, + [4098] = 1141, + [4099] = 1179, + [4100] = 1121, + [4101] = 1175, + [4102] = 1237, + [4103] = 1261, + [4104] = 1416, + [4105] = 1248, + [4106] = 1424, + [4107] = 1243, + [4108] = 1242, + [4109] = 1325, + [4110] = 1511, + [4111] = 1246, + [4112] = 1247, + [4113] = 1511, + [4114] = 1512, + [4115] = 1513, + [4116] = 1514, + [4117] = 1515, + [4118] = 1516, + [4119] = 1240, + [4120] = 1517, + [4121] = 1518, + [4122] = 1519, + [4123] = 1520, + [4124] = 1521, + [4125] = 1516, + [4126] = 1523, + [4127] = 1188, + [4128] = 1524, + [4129] = 1425, + [4130] = 1512, + [4131] = 1270, + [4132] = 1526, + [4133] = 1527, + [4134] = 1513, + [4135] = 1514, + [4136] = 1515, + [4137] = 1414, + [4138] = 1516, + [4139] = 1517, + [4140] = 1518, + [4141] = 1519, + [4142] = 1521, + [4143] = 1522, + [4144] = 1523, + [4145] = 1269, + [4146] = 1415, + [4147] = 916, + [4148] = 915, + [4149] = 1524, + [4150] = 1525, + [4151] = 913, + [4152] = 914, + [4153] = 1526, + [4154] = 1527, + [4155] = 924, + [4156] = 925, + [4157] = 1221, + [4158] = 1252, + [4159] = 1253, + [4160] = 1254, + [4161] = 1189, + [4162] = 1239, + [4163] = 1511, + [4164] = 1512, + [4165] = 1513, + [4166] = 1256, + [4167] = 1332, + [4168] = 1514, + [4169] = 1515, + [4170] = 1238, + [4171] = 1235, + [4172] = 1327, + [4173] = 1127, + [4174] = 1517, + [4175] = 1236, + [4176] = 1245, + [4177] = 1140, + [4178] = 1518, + [4179] = 1520, + [4180] = 1278, + [4181] = 915, + [4182] = 1519, + [4183] = 1520, + [4184] = 1521, + [4185] = 1221, + [4186] = 1220, + [4187] = 916, + [4188] = 1522, + [4189] = 1315, + [4190] = 1319, + [4191] = 1523, + [4192] = 1524, + [4193] = 1141, + [4194] = 1299, + [4195] = 1318, + [4196] = 1220, + [4197] = 1525, + [4198] = 1526, + [4199] = 4199, + [4200] = 1161, + [4201] = 1527, + [4202] = 1414, + [4203] = 1142, + [4204] = 1139, + [4205] = 1260, + [4206] = 1144, + [4207] = 1159, + [4208] = 1267, + [4209] = 1153, + [4210] = 1268, + [4211] = 1330, + [4212] = 1525, + [4213] = 1269, + [4214] = 1270, + [4215] = 1271, + [4216] = 1156, + [4217] = 1276, + [4218] = 1277, + [4219] = 1278, + [4220] = 1158, + [4221] = 1159, + [4222] = 1303, + [4223] = 1158, + [4224] = 1139, + [4225] = 1246, + [4226] = 1161, + [4227] = 1175, + [4228] = 1179, + [4229] = 1182, + [4230] = 1187, + [4231] = 1188, + [4232] = 1284, + [4233] = 1285, + [4234] = 1247, + [4235] = 1287, + [4236] = 1337, + [4237] = 1289, + [4238] = 1290, + [4239] = 1291, + [4240] = 1292, + [4241] = 1293, + [4242] = 1189, + [4243] = 1101, + [4244] = 1100, + [4245] = 1099, + [4246] = 1234, + [4247] = 1233, + [4248] = 1312, + [4249] = 1313, + [4250] = 1232, + [4251] = 1231, + [4252] = 1230, + [4253] = 1226, + [4254] = 1156, + [4255] = 1134, + [4256] = 1225, + [4257] = 1224, + [4258] = 1222, + [4259] = 1294, + [4260] = 1295, + [4261] = 1314, + [4262] = 1316, + [4263] = 1328, + [4264] = 1296, + [4265] = 1297, + [4266] = 1333, + [4267] = 1305, + [4268] = 1306, + [4269] = 1334, + [4270] = 1217, + [4271] = 1308, + [4272] = 1309, + [4273] = 1311, + [4274] = 1336, + [4275] = 1320, + [4276] = 1321, + [4277] = 1338, + [4278] = 1213, + [4279] = 1181, + [4280] = 1209, + [4281] = 1207, + [4282] = 1206, + [4283] = 1205, + [4284] = 1216, + [4285] = 1280, + [4286] = 1098, + [4287] = 4287, + [4288] = 1261, + [4289] = 1203, + [4290] = 1202, + [4291] = 1218, + [4292] = 1212, + [4293] = 1337, + [4294] = 1335, + [4295] = 1201, + [4296] = 1200, + [4297] = 1332, + [4298] = 1293, + [4299] = 1331, + [4300] = 1257, + [4301] = 1199, + [4302] = 1323, + [4303] = 1322, + [4304] = 1319, + [4305] = 1198, + [4306] = 1197, + [4307] = 1196, + [4308] = 1195, + [4309] = 1425, + [4310] = 1194, + [4311] = 1191, + [4312] = 1190, + [4313] = 1244, + [4314] = 1180, + [4315] = 1173, + [4316] = 1172, + [4317] = 1160, + [4318] = 1286, + [4319] = 1416, + [4320] = 1248, + [4321] = 1255, + [4322] = 1424, + [4323] = 1097, + [4324] = 1259, + [4325] = 1266, + [4326] = 1272, + [4327] = 1243, + [4328] = 1275, + [4329] = 1268, + [4330] = 1267, + [4331] = 1242, + [4332] = 1237, + [4333] = 1252, + [4334] = 1253, + [4335] = 1096, + [4336] = 1236, + [4337] = 1254, + [4338] = 1221, + [4339] = 1220, + [4340] = 1425, + [4341] = 1511, + [4342] = 1512, + [4343] = 1513, + [4344] = 1112, + [4345] = 1111, + [4346] = 1256, + [4347] = 1106, + [4348] = 1257, + [4349] = 1142, + [4350] = 1145, + [4351] = 1515, + [4352] = 1095, + [4353] = 1516, + [4354] = 1143, + [4355] = 1143, [4356] = 4356, - [4357] = 1483, - [4358] = 1274, - [4359] = 1281, - [4360] = 1229, - [4361] = 1298, - [4362] = 1270, - [4363] = 1293, - [4364] = 1153, - [4365] = 1152, - [4366] = 1262, - [4367] = 1283, - [4368] = 1166, - [4369] = 1554, - [4370] = 1255, - [4371] = 1151, - [4372] = 1504, - [4373] = 1269, - [4374] = 1150, - [4375] = 1284, - [4376] = 1149, - [4377] = 1186, - [4378] = 1268, - [4379] = 1228, - [4380] = 1191, - [4381] = 1197, - [4382] = 1560, - [4383] = 1198, - [4384] = 1482, - [4385] = 918, - [4386] = 1227, - [4387] = 1199, - [4388] = 1226, - [4389] = 1200, - [4390] = 1201, - [4391] = 1135, - [4392] = 1094, - [4393] = 1267, - [4394] = 1297, - [4395] = 1292, - [4396] = 1291, - [4397] = 1093, - [4398] = 1266, - [4399] = 4399, - [4400] = 1299, - [4401] = 1300, - [4402] = 1222, - [4403] = 1304, - [4404] = 1305, - [4405] = 1127, - [4406] = 1306, - [4407] = 1210, - [4408] = 1167, - [4409] = 1290, - [4410] = 1262, - [4411] = 1239, - [4412] = 1483, - [4413] = 1542, - [4414] = 1543, - [4415] = 1547, - [4416] = 1548, - [4417] = 1549, - [4418] = 1558, - [4419] = 1154, - [4420] = 1197, - [4421] = 1198, - [4422] = 1299, - [4423] = 1285, - [4424] = 1289, - [4425] = 1213, - [4426] = 1296, - [4427] = 1297, - [4428] = 1324, - [4429] = 1300, - [4430] = 1304, - [4431] = 1305, - [4432] = 1306, - [4433] = 1309, - [4434] = 1320, - [4435] = 1321, - [4436] = 1322, - [4437] = 1323, - [4438] = 1340, - [4439] = 1325, - [4440] = 1327, - [4441] = 1329, - [4442] = 1504, - [4443] = 4443, - [4444] = 1331, - [4445] = 1506, - [4446] = 1332, - [4447] = 1333, - [4448] = 1334, - [4449] = 1335, - [4450] = 1336, - [4451] = 1337, - [4452] = 1338, - [4453] = 1339, - [4454] = 1341, - [4455] = 1551, - [4456] = 2871, - [4457] = 1342, - [4458] = 1343, - [4459] = 1344, - [4460] = 1345, - [4461] = 1346, - [4462] = 1179, - [4463] = 1180, - [4464] = 1276, - [4465] = 1275, - [4466] = 1274, - [4467] = 1270, - [4468] = 1269, - [4469] = 2790, - [4470] = 1268, - [4471] = 1267, - [4472] = 1266, - [4473] = 1262, - [4474] = 1483, - [4475] = 1542, - [4476] = 1543, - [4477] = 1547, - [4478] = 1548, - [4479] = 1549, - [4480] = 1222, - [4481] = 1552, - [4482] = 1553, - [4483] = 1554, - [4484] = 1256, - [4485] = 1555, - [4486] = 1556, - [4487] = 1557, - [4488] = 2871, - [4489] = 1700, - [4490] = 2871, - [4491] = 1558, - [4492] = 1559, - [4493] = 1255, - [4494] = 1560, - [4495] = 1507, - [4496] = 4496, - [4497] = 1561, - [4498] = 1576, - [4499] = 1562, - [4500] = 1244, - [4501] = 1239, - [4502] = 1238, - [4503] = 1237, - [4504] = 1236, - [4505] = 1184, - [4506] = 1203, - [4507] = 1185, - [4508] = 1229, - [4509] = 1228, - [4510] = 1482, - [4511] = 1227, - [4512] = 1226, - [4513] = 1210, - [4514] = 1178, - [4515] = 1481, - [4516] = 1506, - [4517] = 1562, - [4518] = 1561, - [4519] = 1560, - [4520] = 1559, - [4521] = 1168, - [4522] = 1557, - [4523] = 1556, - [4524] = 1555, - [4525] = 1554, - [4526] = 1553, - [4527] = 1552, - [4528] = 1551, - [4529] = 1549, - [4530] = 1548, - [4531] = 1547, - [4532] = 1543, - [4533] = 1542, - [4534] = 1504, - [4535] = 1167, - [4536] = 1201, - [4537] = 1166, - [4538] = 1165, - [4539] = 1200, - [4540] = 1199, - [4541] = 1191, - [4542] = 1162, - [4543] = 1186, - [4544] = 1161, - [4545] = 1160, - [4546] = 1159, - [4547] = 1158, - [4548] = 1149, - [4549] = 1150, - [4550] = 1151, - [4551] = 1152, - [4552] = 1153, + [4357] = 1517, + [4358] = 1318, + [4359] = 924, + [4360] = 1317, + [4361] = 1153, + [4362] = 1315, + [4363] = 1518, + [4364] = 1258, + [4365] = 1514, + [4366] = 1247, + [4367] = 1520, + [4368] = 1521, + [4369] = 1246, + [4370] = 1522, + [4371] = 1523, + [4372] = 1524, + [4373] = 1525, + [4374] = 1526, + [4375] = 925, + [4376] = 1146, + [4377] = 1147, + [4378] = 1148, + [4379] = 1149, + [4380] = 1150, + [4381] = 1151, + [4382] = 1288, + [4383] = 1288, + [4384] = 1212, + [4385] = 1527, + [4386] = 1152, + [4387] = 1414, + [4388] = 1154, + [4389] = 1218, + [4390] = 1260, + [4391] = 1321, + [4392] = 1320, + [4393] = 1145, + [4394] = 1519, + [4395] = 1286, + [4396] = 1311, + [4397] = 1424, + [4398] = 1155, + [4399] = 1157, + [4400] = 1309, + [4401] = 1308, + [4402] = 1306, + [4403] = 1305, + [4404] = 1297, + [4405] = 1166, + [4406] = 1167, + [4407] = 1168, + [4408] = 3578, + [4409] = 1296, + [4410] = 1169, + [4411] = 1170, + [4412] = 1295, + [4413] = 1294, + [4414] = 1285, + [4415] = 1171, + [4416] = 1284, + [4417] = 1144, + [4418] = 1293, + [4419] = 1512, + [4420] = 1267, + [4421] = 1268, + [4422] = 1425, + [4423] = 1260, + [4424] = 1414, + [4425] = 1269, + [4426] = 1251, + [4427] = 1250, + [4428] = 1308, + [4429] = 1257, + [4430] = 1245, + [4431] = 1270, + [4432] = 1271, + [4433] = 1139, + [4434] = 1309, + [4435] = 1221, + [4436] = 1159, + [4437] = 1526, + [4438] = 1277, + [4439] = 1524, + [4440] = 1523, + [4441] = 4441, + [4442] = 1522, + [4443] = 1521, + [4444] = 1520, + [4445] = 1278, + [4446] = 1519, + [4447] = 1335, + [4448] = 1332, + [4449] = 1258, + [4450] = 1140, + [4451] = 1331, + [4452] = 1518, + [4453] = 1774, + [4454] = 1517, + [4455] = 1516, + [4456] = 2660, + [4457] = 1515, + [4458] = 1144, + [4459] = 1337, + [4460] = 1256, + [4461] = 1306, + [4462] = 1305, + [4463] = 1513, + [4464] = 1241, + [4465] = 1319, + [4466] = 1240, + [4467] = 1511, + [4468] = 1415, + [4469] = 1254, + [4470] = 1424, + [4471] = 1239, + [4472] = 1253, + [4473] = 1252, + [4474] = 1330, + [4475] = 1323, + [4476] = 1238, + [4477] = 1322, + [4478] = 1235, + [4479] = 1141, + [4480] = 1297, + [4481] = 1179, + [4482] = 1261, + [4483] = 1290, + [4484] = 1318, + [4485] = 1296, + [4486] = 1317, + [4487] = 1311, + [4488] = 1295, + [4489] = 1416, + [4490] = 2660, + [4491] = 1315, + [4492] = 2660, + [4493] = 1189, + [4494] = 1425, + [4495] = 1294, + [4496] = 1188, + [4497] = 1187, + [4498] = 1604, + [4499] = 1248, + [4500] = 1424, + [4501] = 1243, + [4502] = 1182, + [4503] = 1320, + [4504] = 1247, + [4505] = 1242, + [4506] = 1246, + [4507] = 1426, + [4508] = 1237, + [4509] = 1284, + [4510] = 1285, + [4511] = 1236, + [4512] = 1145, + [4513] = 1321, + [4514] = 1175, + [4515] = 1161, + [4516] = 1220, + [4517] = 1511, + [4518] = 1512, + [4519] = 1513, + [4520] = 1514, + [4521] = 1515, + [4522] = 1516, + [4523] = 1517, + [4524] = 1518, + [4525] = 1519, + [4526] = 1520, + [4527] = 1521, + [4528] = 1522, + [4529] = 1523, + [4530] = 1524, + [4531] = 1525, + [4532] = 1526, + [4533] = 1527, + [4534] = 1158, + [4535] = 2584, + [4536] = 4536, + [4537] = 1287, + [4538] = 1218, + [4539] = 1212, + [4540] = 1288, + [4541] = 1527, + [4542] = 1142, + [4543] = 1289, + [4544] = 1143, + [4545] = 1276, + [4546] = 1291, + [4547] = 1292, + [4548] = 1286, + [4549] = 1525, + [4550] = 1156, + [4551] = 1153, + [4552] = 1514, [4553] = 4553, - [4554] = 4554, - [4555] = 4553, - [4556] = 4553, + [4554] = 4553, + [4555] = 4555, + [4556] = 4555, [4557] = 4553, - [4558] = 4554, - [4559] = 4554, - [4560] = 4554, + [4558] = 4553, + [4559] = 4555, + [4560] = 4553, [4561] = 4561, - [4562] = 4553, + [4562] = 4562, [4563] = 4553, - [4564] = 4554, + [4564] = 4553, [4565] = 4553, - [4566] = 4554, + [4566] = 4553, [4567] = 4553, - [4568] = 4553, - [4569] = 4569, - [4570] = 4570, - [4571] = 4553, - [4572] = 4554, - [4573] = 4554, - [4574] = 4554, - [4575] = 4553, + [4568] = 4555, + [4569] = 4555, + [4570] = 4553, + [4571] = 4555, + [4572] = 4555, + [4573] = 4555, + [4574] = 4555, + [4575] = 4575, [4576] = 4576, - [4577] = 4554, - [4578] = 4553, + [4577] = 4553, + [4578] = 4555, [4579] = 4579, [4580] = 4580, - [4581] = 4581, - [4582] = 4581, - [4583] = 4580, - [4584] = 4581, - [4585] = 4581, - [4586] = 4581, - [4587] = 4580, - [4588] = 4581, + [4581] = 4580, + [4582] = 4580, + [4583] = 4583, + [4584] = 4580, + [4585] = 4583, + [4586] = 4580, + [4587] = 4583, + [4588] = 4583, [4589] = 4580, - [4590] = 4581, - [4591] = 4580, - [4592] = 4581, - [4593] = 4581, + [4590] = 4580, + [4591] = 4583, + [4592] = 4583, + [4593] = 4580, [4594] = 4580, - [4595] = 4581, - [4596] = 4580, - [4597] = 4580, + [4595] = 4583, + [4596] = 4583, + [4597] = 4583, [4598] = 4580, - [4599] = 4581, - [4600] = 4581, - [4601] = 4581, - [4602] = 4580, + [4599] = 4583, + [4600] = 4583, + [4601] = 4583, + [4602] = 4583, [4603] = 4580, - [4604] = 4580, - [4605] = 4581, + [4604] = 4583, + [4605] = 4580, [4606] = 4580, [4607] = 4580, - [4608] = 4581, - [4609] = 4581, + [4608] = 4583, + [4609] = 4580, [4610] = 4580, - [4611] = 4581, - [4612] = 4580, - [4613] = 4581, + [4611] = 4583, + [4612] = 4583, + [4613] = 4580, [4614] = 4580, - [4615] = 4580, + [4615] = 4583, [4616] = 4616, - [4617] = 4616, + [4617] = 4617, [4618] = 4618, - [4619] = 4616, + [4619] = 4617, [4620] = 4620, - [4621] = 4616, - [4622] = 4618, - [4623] = 4623, - [4624] = 4620, - [4625] = 4616, - [4626] = 4626, - [4627] = 4618, - [4628] = 4628, - [4629] = 4623, - [4630] = 4626, - [4631] = 4616, + [4621] = 4620, + [4622] = 4622, + [4623] = 4617, + [4624] = 4617, + [4625] = 4620, + [4626] = 4620, + [4627] = 4627, + [4628] = 4622, + [4629] = 4616, + [4630] = 4617, + [4631] = 4618, [4632] = 4616, - [4633] = 4628, - [4634] = 4616, - [4635] = 4626, - [4636] = 4620, - [4637] = 4623, - [4638] = 4620, - [4639] = 4618, - [4640] = 4623, + [4633] = 4627, + [4634] = 4618, + [4635] = 4616, + [4636] = 4622, + [4637] = 4617, + [4638] = 4622, + [4639] = 4627, + [4640] = 4618, [4641] = 4618, - [4642] = 4626, - [4643] = 4626, - [4644] = 4628, - [4645] = 4618, - [4646] = 4626, + [4642] = 4627, + [4643] = 4618, + [4644] = 4627, + [4645] = 4617, + [4646] = 4617, [4647] = 4616, - [4648] = 4620, - [4649] = 4618, - [4650] = 4628, - [4651] = 4623, - [4652] = 4618, - [4653] = 4623, - [4654] = 4623, - [4655] = 4620, - [4656] = 4626, - [4657] = 4628, - [4658] = 4616, - [4659] = 4628, - [4660] = 4623, - [4661] = 4628, - [4662] = 4626, - [4663] = 4628, - [4664] = 4616, - [4665] = 4620, - [4666] = 4618, - [4667] = 4623, - [4668] = 4623, - [4669] = 4618, - [4670] = 4620, - [4671] = 4626, - [4672] = 4628, - [4673] = 4628, - [4674] = 4626, - [4675] = 4626, - [4676] = 4628, - [4677] = 4620, - [4678] = 4620, - [4679] = 4623, + [4648] = 4616, + [4649] = 4616, + [4650] = 4617, + [4651] = 4618, + [4652] = 4627, + [4653] = 4622, + [4654] = 4622, + [4655] = 4618, + [4656] = 4622, + [4657] = 4620, + [4658] = 4620, + [4659] = 4620, + [4660] = 4620, + [4661] = 4618, + [4662] = 4620, + [4663] = 4627, + [4664] = 4618, + [4665] = 4627, + [4666] = 4617, + [4667] = 4616, + [4668] = 4627, + [4669] = 4617, + [4670] = 4622, + [4671] = 4622, + [4672] = 4616, + [4673] = 4622, + [4674] = 4620, + [4675] = 4616, + [4676] = 4620, + [4677] = 4622, + [4678] = 4627, + [4679] = 4620, [4680] = 4618, - [4681] = 4623, - [4682] = 4626, - [4683] = 4620, - [4684] = 4618, - [4685] = 4616, - [4686] = 4620, - [4687] = 4628, + [4681] = 4618, + [4682] = 4622, + [4683] = 4616, + [4684] = 4617, + [4685] = 4627, + [4686] = 4627, + [4687] = 4616, [4688] = 4688, [4689] = 4689, [4690] = 4690, [4691] = 4691, - [4692] = 4691, - [4693] = 4691, - [4694] = 4694, - [4695] = 4691, - [4696] = 4691, - [4697] = 4691, - [4698] = 4698, - [4699] = 4698, - [4700] = 4694, - [4701] = 4690, - [4702] = 4694, - [4703] = 4698, - [4704] = 4704, - [4705] = 4704, - [4706] = 4690, - [4707] = 4698, - [4708] = 4698, - [4709] = 4691, - [4710] = 4690, - [4711] = 4698, - [4712] = 4694, - [4713] = 4704, - [4714] = 4698, - [4715] = 4704, - [4716] = 4691, - [4717] = 4690, - [4718] = 4704, - [4719] = 4694, - [4720] = 4694, - [4721] = 4690, - [4722] = 4704, - [4723] = 4694, - [4724] = 4694, - [4725] = 4690, - [4726] = 4704, - [4727] = 4698, - [4728] = 4704, - [4729] = 4690, - [4730] = 4698, + [4692] = 4692, + [4693] = 4693, + [4694] = 4691, + [4695] = 4695, + [4696] = 4692, + [4697] = 4690, + [4698] = 4693, + [4699] = 4690, + [4700] = 4691, + [4701] = 4695, + [4702] = 4691, + [4703] = 4691, + [4704] = 4690, + [4705] = 4693, + [4706] = 4692, + [4707] = 4690, + [4708] = 4695, + [4709] = 4690, + [4710] = 4695, + [4711] = 4695, + [4712] = 4690, + [4713] = 4690, + [4714] = 4691, + [4715] = 4693, + [4716] = 4692, + [4717] = 4691, + [4718] = 4693, + [4719] = 4690, + [4720] = 4692, + [4721] = 4695, + [4722] = 4692, + [4723] = 4692, + [4724] = 4693, + [4725] = 4691, + [4726] = 4695, + [4727] = 4690, + [4728] = 4693, + [4729] = 4691, + [4730] = 4693, [4731] = 4691, - [4732] = 4694, - [4733] = 4691, - [4734] = 4690, - [4735] = 4691, - [4736] = 4694, - [4737] = 4698, - [4738] = 4698, - [4739] = 4704, - [4740] = 4690, - [4741] = 4704, - [4742] = 4704, - [4743] = 4694, - [4744] = 4694, - [4745] = 4745, - [4746] = 4691, - [4747] = 4698, - [4748] = 4704, - [4749] = 4690, + [4732] = 4695, + [4733] = 4733, + [4734] = 4692, + [4735] = 4695, + [4736] = 4690, + [4737] = 4693, + [4738] = 4691, + [4739] = 4691, + [4740] = 4693, + [4741] = 4693, + [4742] = 4692, + [4743] = 4692, + [4744] = 4695, + [4745] = 4692, + [4746] = 4695, + [4747] = 4692, + [4748] = 4693, + [4749] = 4695, [4750] = 4690, [4751] = 4751, - [4752] = 4752, + [4752] = 4689, [4753] = 4753, [4754] = 4754, [4755] = 4755, @@ -6617,7 +6616,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4757] = 4757, [4758] = 4758, [4759] = 4759, - [4760] = 4760, + [4760] = 4688, [4761] = 4761, [4762] = 4762, [4763] = 4763, @@ -6632,9 +6631,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4772] = 4772, [4773] = 4773, [4774] = 4774, - [4775] = 4689, + [4775] = 4775, [4776] = 4776, - [4777] = 4688, + [4777] = 4777, [4778] = 4778, [4779] = 4779, [4780] = 4780, @@ -6643,295 +6642,295 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4783] = 4783, [4784] = 4782, [4785] = 4783, - [4786] = 4783, + [4786] = 4782, [4787] = 4783, - [4788] = 4782, + [4788] = 4783, [4789] = 4782, [4790] = 4782, - [4791] = 4782, + [4791] = 4783, [4792] = 4782, - [4793] = 4782, - [4794] = 4783, + [4793] = 4783, + [4794] = 4782, [4795] = 4782, - [4796] = 4782, - [4797] = 4783, + [4796] = 4783, + [4797] = 4782, [4798] = 4783, - [4799] = 4782, + [4799] = 4783, [4800] = 4782, [4801] = 4782, [4802] = 4783, - [4803] = 4783, - [4804] = 4782, + [4803] = 4782, + [4804] = 4783, [4805] = 4783, - [4806] = 4783, + [4806] = 4782, [4807] = 4782, - [4808] = 4783, + [4808] = 4782, [4809] = 4782, - [4810] = 4783, + [4810] = 4782, [4811] = 4782, - [4812] = 4783, - [4813] = 4782, + [4812] = 4782, + [4813] = 4783, [4814] = 4782, - [4815] = 4783, - [4816] = 4782, + [4815] = 4782, + [4816] = 4783, [4817] = 4783, [4818] = 4782, - [4819] = 4782, - [4820] = 4783, - [4821] = 4782, + [4819] = 4783, + [4820] = 4782, + [4821] = 4783, [4822] = 4783, [4823] = 4783, [4824] = 4783, [4825] = 4825, - [4826] = 1213, - [4827] = 4827, + [4826] = 4826, + [4827] = 1145, [4828] = 4828, [4829] = 4829, - [4830] = 4830, + [4830] = 4829, [4831] = 4831, [4832] = 4832, - [4833] = 4830, - [4834] = 4829, - [4835] = 4831, - [4836] = 4832, - [4837] = 4830, - [4838] = 4829, - [4839] = 4831, - [4840] = 4832, - [4841] = 4830, - [4842] = 4829, - [4843] = 4831, - [4844] = 4832, - [4845] = 4830, - [4846] = 4829, - [4847] = 4831, - [4848] = 4832, - [4849] = 4830, + [4833] = 4832, + [4834] = 4834, + [4835] = 4832, + [4836] = 4831, + [4837] = 4831, + [4838] = 4838, + [4839] = 4829, + [4840] = 4838, + [4841] = 4829, + [4842] = 4831, + [4843] = 4832, + [4844] = 4829, + [4845] = 4829, + [4846] = 4831, + [4847] = 4832, + [4848] = 4838, + [4849] = 4831, [4850] = 4829, [4851] = 4831, - [4852] = 4832, - [4853] = 4830, - [4854] = 4829, - [4855] = 4832, - [4856] = 4830, + [4852] = 4831, + [4853] = 4832, + [4854] = 4838, + [4855] = 4838, + [4856] = 4838, [4857] = 4829, - [4858] = 4831, - [4859] = 4832, - [4860] = 4830, - [4861] = 4829, - [4862] = 4831, - [4863] = 4832, - [4864] = 4830, - [4865] = 4829, - [4866] = 4831, - [4867] = 4832, - [4868] = 4830, - [4869] = 4829, - [4870] = 4831, - [4871] = 4871, - [4872] = 4872, - [4873] = 4873, - [4874] = 4874, - [4875] = 4875, - [4876] = 4876, - [4877] = 4832, - [4878] = 4830, - [4879] = 4829, - [4880] = 4831, - [4881] = 4871, - [4882] = 4872, - [4883] = 4873, - [4884] = 4874, - [4885] = 4875, - [4886] = 4876, - [4887] = 4832, - [4888] = 4830, - [4889] = 4829, - [4890] = 4831, - [4891] = 4871, - [4892] = 4872, - [4893] = 4873, - [4894] = 4874, - [4895] = 4875, - [4896] = 4876, - [4897] = 4832, - [4898] = 4830, - [4899] = 4829, - [4900] = 4831, - [4901] = 4871, - [4902] = 4872, - [4903] = 4873, - [4904] = 4874, - [4905] = 4875, - [4906] = 4876, - [4907] = 4832, - [4908] = 4831, - [4909] = 4829, - [4910] = 4830, - [4911] = 4832, - [4912] = 4830, - [4913] = 4829, - [4914] = 4875, - [4915] = 4831, - [4916] = 4829, - [4917] = 4871, - [4918] = 4872, - [4919] = 4873, - [4920] = 4874, - [4921] = 4875, - [4922] = 4876, - [4923] = 4830, - [4924] = 4832, - [4925] = 4830, - [4926] = 4832, - [4927] = 4831, - [4928] = 4831, - [4929] = 4871, - [4930] = 4872, - [4931] = 4873, - [4932] = 4874, - [4933] = 4875, - [4934] = 4876, - [4935] = 4831, - [4936] = 4832, - [4937] = 4830, - [4938] = 4829, - [4939] = 4831, - [4940] = 4830, - [4941] = 4871, - [4942] = 4872, - [4943] = 4873, - [4944] = 4874, - [4945] = 4875, - [4946] = 4832, - [4947] = 4876, - [4948] = 4831, - [4949] = 4832, + [4858] = 4834, + [4859] = 4859, + [4860] = 4860, + [4861] = 4861, + [4862] = 4862, + [4863] = 4863, + [4864] = 4859, + [4865] = 4834, + [4866] = 4863, + [4867] = 4862, + [4868] = 4861, + [4869] = 4860, + [4870] = 4829, + [4871] = 4838, + [4872] = 4829, + [4873] = 4831, + [4874] = 4832, + [4875] = 4832, + [4876] = 4838, + [4877] = 4831, + [4878] = 4831, + [4879] = 4832, + [4880] = 4832, + [4881] = 4838, + [4882] = 4832, + [4883] = 4838, + [4884] = 4838, + [4885] = 4829, + [4886] = 4831, + [4887] = 4838, + [4888] = 4831, + [4889] = 4831, + [4890] = 4860, + [4891] = 4861, + [4892] = 4832, + [4893] = 4834, + [4894] = 4838, + [4895] = 4862, + [4896] = 4863, + [4897] = 4859, + [4898] = 4829, + [4899] = 4859, + [4900] = 4829, + [4901] = 4863, + [4902] = 4831, + [4903] = 4862, + [4904] = 4860, + [4905] = 4834, + [4906] = 4861, + [4907] = 4862, + [4908] = 4832, + [4909] = 4831, + [4910] = 4834, + [4911] = 4838, + [4912] = 4863, + [4913] = 4859, + [4914] = 4859, + [4915] = 4834, + [4916] = 4832, + [4917] = 4838, + [4918] = 4829, + [4919] = 4861, + [4920] = 4860, + [4921] = 4861, + [4922] = 4862, + [4923] = 4863, + [4924] = 4860, + [4925] = 4831, + [4926] = 4859, + [4927] = 4832, + [4928] = 4834, + [4929] = 4838, + [4930] = 4829, + [4931] = 4831, + [4932] = 4832, + [4933] = 4859, + [4934] = 4838, + [4935] = 4863, + [4936] = 4862, + [4937] = 4829, + [4938] = 4831, + [4939] = 4832, + [4940] = 4832, + [4941] = 4861, + [4942] = 4838, + [4943] = 4838, + [4944] = 4860, + [4945] = 4829, + [4946] = 4831, + [4947] = 4831, + [4948] = 4832, + [4949] = 4831, [4950] = 4829, [4951] = 4829, [4952] = 4831, - [4953] = 4876, - [4954] = 4875, - [4955] = 4874, - [4956] = 4873, - [4957] = 4872, - [4958] = 4871, + [4953] = 4834, + [4954] = 4859, + [4955] = 4863, + [4956] = 4862, + [4957] = 4861, + [4958] = 4860, [4959] = 4829, - [4960] = 4871, - [4961] = 4872, - [4962] = 4873, - [4963] = 4874, - [4964] = 4871, - [4965] = 4872, - [4966] = 4873, - [4967] = 4874, - [4968] = 4875, - [4969] = 4876, + [4960] = 4831, + [4961] = 4829, + [4962] = 4859, + [4963] = 4832, + [4964] = 4863, + [4965] = 4838, + [4966] = 4832, + [4967] = 4862, + [4968] = 4861, + [4969] = 4832, [4970] = 4831, - [4971] = 4876, - [4972] = 4832, - [4973] = 4830, - [4974] = 4829, - [4975] = 4831, - [4976] = 4829, + [4971] = 4831, + [4972] = 4860, + [4973] = 4838, + [4974] = 4860, + [4975] = 4832, + [4976] = 4832, [4977] = 4831, - [4978] = 4875, + [4978] = 4832, [4979] = 4829, - [4980] = 4871, - [4981] = 4872, - [4982] = 4873, - [4983] = 4874, - [4984] = 4875, - [4985] = 4876, - [4986] = 4831, - [4987] = 4832, - [4988] = 4830, - [4989] = 4871, - [4990] = 4829, - [4991] = 4831, - [4992] = 4832, - [4993] = 4830, - [4994] = 4829, - [4995] = 4831, - [4996] = 4829, - [4997] = 4831, - [4998] = 4831, - [4999] = 4829, - [5000] = 4830, - [5001] = 4832, - [5002] = 4831, - [5003] = 4871, - [5004] = 4872, - [5005] = 4873, - [5006] = 4874, - [5007] = 4875, - [5008] = 4876, - [5009] = 4829, - [5010] = 4832, - [5011] = 4830, - [5012] = 4829, - [5013] = 4831, - [5014] = 4871, - [5015] = 4872, - [5016] = 4873, - [5017] = 4876, - [5018] = 4875, - [5019] = 4874, - [5020] = 4873, - [5021] = 4872, - [5022] = 4871, - [5023] = 4871, - [5024] = 4872, - [5025] = 4873, - [5026] = 4874, - [5027] = 4875, - [5028] = 4876, - [5029] = 4872, - [5030] = 4832, - [5031] = 4830, - [5032] = 4873, - [5033] = 4874, - [5034] = 4829, - [5035] = 4874, - [5036] = 4875, - [5037] = 4832, - [5038] = 4830, - [5039] = 4829, + [4980] = 4838, + [4981] = 4861, + [4982] = 4834, + [4983] = 4859, + [4984] = 4832, + [4985] = 4863, + [4986] = 4862, + [4987] = 4861, + [4988] = 4860, + [4989] = 4860, + [4990] = 4860, + [4991] = 4861, + [4992] = 4862, + [4993] = 4863, + [4994] = 4859, + [4995] = 4834, + [4996] = 4862, + [4997] = 4863, + [4998] = 4832, + [4999] = 4832, + [5000] = 4859, + [5001] = 4834, + [5002] = 4834, + [5003] = 4832, + [5004] = 4860, + [5005] = 4859, + [5006] = 4863, + [5007] = 4861, + [5008] = 4831, + [5009] = 4862, + [5010] = 4838, + [5011] = 4829, + [5012] = 4831, + [5013] = 4832, + [5014] = 4829, + [5015] = 4861, + [5016] = 4862, + [5017] = 4863, + [5018] = 4838, + [5019] = 4859, + [5020] = 4860, + [5021] = 4834, + [5022] = 4834, + [5023] = 4859, + [5024] = 4863, + [5025] = 4838, + [5026] = 4862, + [5027] = 4861, + [5028] = 4838, + [5029] = 4861, + [5030] = 4860, + [5031] = 4829, + [5032] = 4862, + [5033] = 4863, + [5034] = 4832, + [5035] = 4832, + [5036] = 4831, + [5037] = 4831, + [5038] = 4829, + [5039] = 4838, [5040] = 4831, - [5041] = 4876, - [5042] = 4831, - [5043] = 4871, - [5044] = 4872, - [5045] = 4873, - [5046] = 4874, - [5047] = 4875, - [5048] = 4876, - [5049] = 4829, - [5050] = 4831, - [5051] = 4831, - [5052] = 4832, - [5053] = 4830, - [5054] = 4829, - [5055] = 4829, - [5056] = 4876, + [5041] = 4834, + [5042] = 4860, + [5043] = 4861, + [5044] = 4862, + [5045] = 4863, + [5046] = 4859, + [5047] = 4834, + [5048] = 4859, + [5049] = 4832, + [5050] = 4863, + [5051] = 4862, + [5052] = 4861, + [5053] = 4831, + [5054] = 4860, + [5055] = 4832, + [5056] = 4834, [5057] = 4831, [5058] = 4832, - [5059] = 4830, - [5060] = 4829, - [5061] = 4876, - [5062] = 4831, - [5063] = 4829, - [5064] = 4830, - [5065] = 4832, - [5066] = 4875, - [5067] = 4874, - [5068] = 4873, - [5069] = 4872, - [5070] = 4871, + [5059] = 4829, + [5060] = 4838, + [5061] = 4829, + [5062] = 4832, + [5063] = 4831, + [5064] = 4829, + [5065] = 4838, + [5066] = 4831, + [5067] = 4832, + [5068] = 4831, + [5069] = 4829, + [5070] = 4838, [5071] = 5071, [5072] = 5072, [5073] = 5073, - [5074] = 1264, + [5074] = 5072, [5075] = 5075, [5076] = 5076, [5077] = 5077, @@ -6942,1092 +6941,1092 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5082] = 5082, [5083] = 5083, [5084] = 5084, - [5085] = 5075, + [5085] = 5085, [5086] = 5086, - [5087] = 5087, + [5087] = 5075, [5088] = 5088, [5089] = 5089, [5090] = 5090, - [5091] = 5091, + [5091] = 5082, [5092] = 5092, - [5093] = 5072, - [5094] = 4769, - [5095] = 5095, + [5093] = 5081, + [5094] = 5080, + [5095] = 5079, [5096] = 5096, - [5097] = 5071, + [5097] = 5097, [5098] = 5098, - [5099] = 5099, + [5099] = 5083, [5100] = 5100, - [5101] = 5101, - [5102] = 5102, + [5101] = 5071, + [5102] = 5084, [5103] = 5103, - [5104] = 5104, - [5105] = 5105, - [5106] = 5106, - [5107] = 5107, + [5104] = 5097, + [5105] = 5088, + [5106] = 5078, + [5107] = 5077, [5108] = 5108, - [5109] = 5109, - [5110] = 5104, - [5111] = 5095, + [5109] = 5085, + [5110] = 5076, + [5111] = 5072, [5112] = 5112, - [5113] = 5113, - [5114] = 5089, - [5115] = 5088, - [5116] = 5087, - [5117] = 5086, - [5118] = 5075, - [5119] = 5084, - [5120] = 5083, - [5121] = 5081, + [5113] = 5089, + [5114] = 5108, + [5115] = 5115, + [5116] = 5096, + [5117] = 5098, + [5118] = 5118, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, [5122] = 5122, - [5123] = 5086, - [5124] = 5124, + [5123] = 5115, + [5124] = 5118, [5125] = 5125, - [5126] = 5078, + [5126] = 5126, [5127] = 5127, [5128] = 5128, [5129] = 5129, - [5130] = 5130, + [5130] = 5112, [5131] = 5131, - [5132] = 5131, - [5133] = 5133, - [5134] = 5130, - [5135] = 5109, + [5132] = 5127, + [5133] = 5112, + [5134] = 5131, + [5135] = 5103, [5136] = 5136, [5137] = 5137, - [5138] = 5138, - [5139] = 5139, - [5140] = 5076, - [5141] = 5082, - [5142] = 5090, - [5143] = 5091, - [5144] = 5092, - [5145] = 5072, - [5146] = 5122, - [5147] = 5113, - [5148] = 5112, - [5149] = 5100, + [5138] = 5129, + [5139] = 5122, + [5140] = 5121, + [5141] = 5120, + [5142] = 5119, + [5143] = 5118, + [5144] = 5115, + [5145] = 5108, + [5146] = 5085, + [5147] = 5084, + [5148] = 5083, + [5149] = 5075, [5150] = 5150, - [5151] = 5072, - [5152] = 5103, - [5153] = 5122, - [5154] = 5105, - [5155] = 5106, - [5156] = 5122, - [5157] = 5113, - [5158] = 5112, - [5159] = 5100, - [5160] = 5139, - [5161] = 5161, - [5162] = 5107, - [5163] = 5109, - [5164] = 5107, - [5165] = 5075, - [5166] = 5084, - [5167] = 5083, - [5168] = 5081, - [5169] = 5109, - [5170] = 5087, + [5151] = 5122, + [5152] = 5119, + [5153] = 5120, + [5154] = 5154, + [5155] = 5121, + [5156] = 5156, + [5157] = 5129, + [5158] = 1307, + [5159] = 5077, + [5160] = 5078, + [5161] = 1327, + [5162] = 5079, + [5163] = 4781, + [5164] = 4754, + [5165] = 4757, + [5166] = 5137, + [5167] = 5136, + [5168] = 5080, + [5169] = 4780, + [5170] = 5081, [5171] = 5171, - [5172] = 5127, - [5173] = 5108, - [5174] = 5101, - [5175] = 5109, - [5176] = 5071, - [5177] = 1157, + [5172] = 5150, + [5173] = 5154, + [5174] = 5156, + [5175] = 5156, + [5176] = 5171, + [5177] = 5082, [5178] = 5178, - [5179] = 5107, - [5180] = 5075, - [5181] = 5071, - [5182] = 5101, - [5183] = 5108, - [5184] = 5127, - [5185] = 5131, - [5186] = 5130, - [5187] = 5084, - [5188] = 5083, - [5189] = 5081, - [5190] = 5095, - [5191] = 5088, - [5192] = 5109, - [5193] = 5107, - [5194] = 5075, - [5195] = 5084, - [5196] = 5083, - [5197] = 5113, - [5198] = 5089, - [5199] = 5171, - [5200] = 5081, + [5179] = 5154, + [5180] = 5088, + [5181] = 5156, + [5182] = 5154, + [5183] = 5150, + [5184] = 5131, + [5185] = 5112, + [5186] = 5127, + [5187] = 5187, + [5188] = 5188, + [5189] = 4764, + [5190] = 5103, + [5191] = 5071, + [5192] = 5078, + [5193] = 5077, + [5194] = 5076, + [5195] = 5072, + [5196] = 5103, + [5197] = 5071, + [5198] = 5078, + [5199] = 5077, + [5200] = 5076, [5201] = 5072, - [5202] = 5092, - [5203] = 5091, - [5204] = 5107, - [5205] = 5090, - [5206] = 5082, - [5207] = 5109, - [5208] = 5139, - [5209] = 5076, + [5202] = 5097, + [5203] = 5073, + [5204] = 5071, + [5205] = 5103, + [5206] = 5103, + [5207] = 5071, + [5208] = 5078, + [5209] = 5077, [5210] = 5076, - [5211] = 5139, - [5212] = 5107, - [5213] = 5075, - [5214] = 5106, - [5215] = 5084, - [5216] = 5083, - [5217] = 5081, - [5218] = 5138, - [5219] = 5080, - [5220] = 5081, - [5221] = 1261, - [5222] = 5083, - [5223] = 5084, - [5224] = 5075, - [5225] = 5086, - [5226] = 5087, - [5227] = 5088, - [5228] = 5089, - [5229] = 5130, - [5230] = 5109, - [5231] = 5107, - [5232] = 5075, - [5233] = 5084, - [5234] = 5125, - [5235] = 5096, + [5211] = 5072, + [5212] = 5072, + [5213] = 5103, + [5214] = 5100, + [5215] = 5071, + [5216] = 5078, + [5217] = 5077, + [5218] = 5076, + [5219] = 5073, + [5220] = 5072, + [5221] = 1325, + [5222] = 5076, + [5223] = 5077, + [5224] = 5078, + [5225] = 5079, + [5226] = 5080, + [5227] = 5081, + [5228] = 5082, + [5229] = 5072, + [5230] = 5076, + [5231] = 5103, + [5232] = 5071, + [5233] = 5078, + [5234] = 5075, + [5235] = 5089, [5236] = 5083, - [5237] = 5081, - [5238] = 5131, - [5239] = 5127, - [5240] = 5109, - [5241] = 5107, - [5242] = 5103, - [5243] = 5108, - [5244] = 5105, - [5245] = 5075, - [5246] = 5106, - [5247] = 5107, - [5248] = 5084, - [5249] = 5109, - [5250] = 5104, - [5251] = 5095, - [5252] = 5083, - [5253] = 5081, - [5254] = 5101, - [5255] = 5071, - [5256] = 5109, - [5257] = 5107, - [5258] = 5080, - [5259] = 5081, - [5260] = 5083, - [5261] = 5084, - [5262] = 5095, - [5263] = 5104, - [5264] = 5109, - [5265] = 5071, - [5266] = 5101, - [5267] = 5108, - [5268] = 5075, - [5269] = 5105, - [5270] = 5084, + [5237] = 5084, + [5238] = 5077, + [5239] = 5085, + [5240] = 5076, + [5241] = 5108, + [5242] = 5096, + [5243] = 5156, + [5244] = 5098, + [5245] = 5115, + [5246] = 5100, + [5247] = 5071, + [5248] = 5118, + [5249] = 5103, + [5250] = 5097, + [5251] = 5088, + [5252] = 5119, + [5253] = 5120, + [5254] = 5121, + [5255] = 5122, + [5256] = 5129, + [5257] = 5137, + [5258] = 5154, + [5259] = 5150, + [5260] = 5131, + [5261] = 5112, + [5262] = 5075, + [5263] = 5083, + [5264] = 5084, + [5265] = 5085, + [5266] = 5108, + [5267] = 5115, + [5268] = 5072, + [5269] = 5098, + [5270] = 5136, [5271] = 5125, - [5272] = 5078, - [5273] = 5083, - [5274] = 5103, - [5275] = 5081, - [5276] = 5127, - [5277] = 5095, - [5278] = 5100, - [5279] = 5104, - [5280] = 5109, - [5281] = 5107, - [5282] = 5089, - [5283] = 5088, - [5284] = 5087, - [5285] = 5086, - [5286] = 5075, - [5287] = 5112, + [5272] = 5126, + [5273] = 5077, + [5274] = 5096, + [5275] = 5078, + [5276] = 5103, + [5277] = 5071, + [5278] = 5078, + [5279] = 5077, + [5280] = 5076, + [5281] = 5072, + [5282] = 5079, + [5283] = 5080, + [5284] = 5103, + [5285] = 5071, + [5286] = 5078, + [5287] = 5077, [5288] = 5136, [5289] = 5137, - [5290] = 5138, - [5291] = 5139, - [5292] = 5076, - [5293] = 5082, - [5294] = 5090, - [5295] = 5091, - [5296] = 5092, - [5297] = 5072, - [5298] = 5122, - [5299] = 5113, - [5300] = 5112, - [5301] = 5100, - [5302] = 5084, - [5303] = 5083, + [5290] = 5129, + [5291] = 5122, + [5292] = 5121, + [5293] = 5120, + [5294] = 5119, + [5295] = 5118, + [5296] = 5115, + [5297] = 5108, + [5298] = 5085, + [5299] = 5084, + [5300] = 5083, + [5301] = 5075, + [5302] = 5076, + [5303] = 5072, [5304] = 5081, - [5305] = 5112, - [5306] = 5100, - [5307] = 5125, - [5308] = 5078, - [5309] = 5095, - [5310] = 5104, - [5311] = 5109, - [5312] = 5107, - [5313] = 5089, - [5314] = 5088, - [5315] = 5087, - [5316] = 5086, - [5317] = 5075, - [5318] = 5084, - [5319] = 5083, - [5320] = 5081, - [5321] = 5080, - [5322] = 5113, + [5305] = 5082, + [5306] = 5088, + [5307] = 5097, + [5308] = 5103, + [5309] = 5071, + [5310] = 5082, + [5311] = 5081, + [5312] = 5080, + [5313] = 5079, + [5314] = 5078, + [5315] = 5077, + [5316] = 5076, + [5317] = 5072, + [5318] = 5089, + [5319] = 5088, + [5320] = 5097, + [5321] = 5103, + [5322] = 5071, [5323] = 5171, - [5324] = 5138, - [5325] = 5122, - [5326] = 5072, - [5327] = 5092, - [5328] = 5091, - [5329] = 5090, - [5330] = 5082, - [5331] = 5112, - [5332] = 5076, - [5333] = 5092, - [5334] = 5101, - [5335] = 5108, - [5336] = 5127, - [5337] = 5131, - [5338] = 5130, - [5339] = 5096, - [5340] = 5095, - [5341] = 5104, - [5342] = 5109, - [5343] = 5107, - [5344] = 5089, - [5345] = 5088, - [5346] = 5087, - [5347] = 5086, - [5348] = 5075, - [5349] = 5139, - [5350] = 5113, - [5351] = 5137, - [5352] = 5136, - [5353] = 5130, - [5354] = 4773, - [5355] = 5084, - [5356] = 5083, - [5357] = 5081, - [5358] = 5122, - [5359] = 5091, - [5360] = 5072, - [5361] = 5095, - [5362] = 5131, - [5363] = 5127, - [5364] = 5092, - [5365] = 5104, - [5366] = 5109, - [5367] = 5107, - [5368] = 5089, - [5369] = 5088, - [5370] = 5087, - [5371] = 5080, - [5372] = 5081, - [5373] = 5086, - [5374] = 5083, - [5375] = 5084, - [5376] = 5075, - [5377] = 5086, - [5378] = 5087, - [5379] = 5088, - [5380] = 5089, - [5381] = 5075, - [5382] = 5084, - [5383] = 5108, - [5384] = 5078, - [5385] = 5083, - [5386] = 5125, - [5387] = 5096, + [5324] = 5082, + [5325] = 5081, + [5326] = 5080, + [5327] = 5126, + [5328] = 5125, + [5329] = 5079, + [5330] = 5118, + [5331] = 5078, + [5332] = 5119, + [5333] = 5156, + [5334] = 5154, + [5335] = 5150, + [5336] = 5131, + [5337] = 5112, + [5338] = 5127, + [5339] = 5077, + [5340] = 5076, + [5341] = 5072, + [5342] = 5096, + [5343] = 5088, + [5344] = 5097, + [5345] = 5103, + [5346] = 5071, + [5347] = 5082, + [5348] = 5081, + [5349] = 5120, + [5350] = 5121, + [5351] = 5122, + [5352] = 5129, + [5353] = 5100, + [5354] = 5071, + [5355] = 5103, + [5356] = 5097, + [5357] = 5088, + [5358] = 5076, + [5359] = 5097, + [5360] = 5103, + [5361] = 5071, + [5362] = 5100, + [5363] = 5098, + [5364] = 5096, + [5365] = 5080, + [5366] = 5079, + [5367] = 5078, + [5368] = 5077, + [5369] = 5369, + [5370] = 5089, + [5371] = 5073, + [5372] = 5072, + [5373] = 5076, + [5374] = 5076, + [5375] = 5077, + [5376] = 5078, + [5377] = 5079, + [5378] = 5080, + [5379] = 5081, + [5380] = 5082, + [5381] = 5072, + [5382] = 5098, + [5383] = 5100, + [5384] = 5088, + [5385] = 5088, + [5386] = 5082, + [5387] = 5089, [5388] = 5081, - [5389] = 5095, - [5390] = 5104, - [5391] = 5109, - [5392] = 5091, - [5393] = 5103, - [5394] = 5090, - [5395] = 5105, - [5396] = 5101, - [5397] = 5106, - [5398] = 5107, - [5399] = 5082, - [5400] = 5109, - [5401] = 5104, - [5402] = 5095, - [5403] = 5071, - [5404] = 5082, - [5405] = 5107, - [5406] = 5089, - [5407] = 5171, - [5408] = 5088, - [5409] = 5076, - [5410] = 5139, - [5411] = 5138, - [5412] = 5131, - [5413] = 5083, - [5414] = 5130, - [5415] = 5096, - [5416] = 5095, - [5417] = 5104, - [5418] = 5109, - [5419] = 5087, - [5420] = 5086, - [5421] = 5107, + [5389] = 5080, + [5390] = 5097, + [5391] = 5079, + [5392] = 5078, + [5393] = 5096, + [5394] = 5077, + [5395] = 5098, + [5396] = 5076, + [5397] = 5100, + [5398] = 5071, + [5399] = 5072, + [5400] = 5103, + [5401] = 5097, + [5402] = 5088, + [5403] = 5073, + [5404] = 5103, + [5405] = 5097, + [5406] = 5103, + [5407] = 5071, + [5408] = 5082, + [5409] = 5081, + [5410] = 5080, + [5411] = 5079, + [5412] = 5078, + [5413] = 5077, + [5414] = 5076, + [5415] = 5072, + [5416] = 5127, + [5417] = 5127, + [5418] = 5125, + [5419] = 5071, + [5420] = 5082, + [5421] = 5126, [5422] = 5125, - [5423] = 5078, - [5424] = 5081, - [5425] = 5087, - [5426] = 5089, - [5427] = 5088, - [5428] = 5087, + [5423] = 5126, + [5424] = 5072, + [5425] = 5073, + [5426] = 5081, + [5427] = 5080, + [5428] = 5079, [5429] = 5429, - [5430] = 5075, - [5431] = 5084, + [5430] = 5078, + [5431] = 5077, [5432] = 5136, [5433] = 5137, - [5434] = 5138, - [5435] = 5139, - [5436] = 5076, - [5437] = 5082, - [5438] = 5090, - [5439] = 5091, - [5440] = 5092, - [5441] = 5072, - [5442] = 5122, - [5443] = 5113, - [5444] = 5112, - [5445] = 5100, - [5446] = 5083, - [5447] = 5081, - [5448] = 5104, - [5449] = 5095, - [5450] = 5104, - [5451] = 5109, - [5452] = 5107, - [5453] = 5089, - [5454] = 5088, - [5455] = 5087, - [5456] = 5086, - [5457] = 5075, - [5458] = 5084, - [5459] = 5083, - [5460] = 5081, - [5461] = 5136, - [5462] = 5137, - [5463] = 5138, - [5464] = 5139, - [5465] = 5095, - [5466] = 5104, + [5434] = 5129, + [5435] = 5122, + [5436] = 5121, + [5437] = 5120, + [5438] = 5119, + [5439] = 5118, + [5440] = 5115, + [5441] = 5108, + [5442] = 5085, + [5443] = 5084, + [5444] = 5083, + [5445] = 5075, + [5446] = 5076, + [5447] = 5072, + [5448] = 5103, + [5449] = 5097, + [5450] = 5088, + [5451] = 5088, + [5452] = 5097, + [5453] = 5103, + [5454] = 5071, + [5455] = 5082, + [5456] = 5081, + [5457] = 5080, + [5458] = 5079, + [5459] = 5078, + [5460] = 5077, + [5461] = 5076, + [5462] = 5072, + [5463] = 5131, + [5464] = 5072, + [5465] = 5076, + [5466] = 5077, [5467] = 5171, - [5468] = 5109, - [5469] = 5107, - [5470] = 5089, - [5471] = 5088, - [5472] = 5087, - [5473] = 5086, - [5474] = 5075, - [5475] = 5095, - [5476] = 5104, - [5477] = 5071, - [5478] = 5101, - [5479] = 5108, - [5480] = 5127, - [5481] = 5131, - [5482] = 5130, - [5483] = 5084, - [5484] = 5083, - [5485] = 5081, + [5468] = 5088, + [5469] = 5085, + [5470] = 5097, + [5471] = 5103, + [5472] = 5071, + [5473] = 5082, + [5474] = 5081, + [5475] = 5080, + [5476] = 5127, + [5477] = 5156, + [5478] = 5154, + [5479] = 5150, + [5480] = 5131, + [5481] = 5112, + [5482] = 5127, + [5483] = 5079, + [5484] = 5078, + [5485] = 5077, [5486] = 5076, - [5487] = 5082, - [5488] = 5090, - [5489] = 5091, - [5490] = 5095, - [5491] = 5104, - [5492] = 5109, - [5493] = 5109, - [5494] = 5107, - [5495] = 5106, - [5496] = 5107, - [5497] = 5105, - [5498] = 5086, - [5499] = 5103, - [5500] = 4776, - [5501] = 5089, - [5502] = 5075, - [5503] = 5088, - [5504] = 5087, - [5505] = 5086, - [5506] = 5075, - [5507] = 5084, - [5508] = 5083, - [5509] = 5081, - [5510] = 5092, - [5511] = 5072, - [5512] = 5122, - [5513] = 5096, - [5514] = 5137, - [5515] = 5080, - [5516] = 5081, - [5517] = 5171, - [5518] = 5083, - [5519] = 5084, - [5520] = 5075, - [5521] = 5086, - [5522] = 5087, - [5523] = 5088, - [5524] = 5089, - [5525] = 5095, - [5526] = 5104, - [5527] = 5109, - [5528] = 5107, - [5529] = 5089, - [5530] = 5089, - [5531] = 5096, - [5532] = 5088, - [5533] = 5087, - [5534] = 5088, - [5535] = 5086, - [5536] = 5075, - [5537] = 5103, - [5538] = 5084, - [5539] = 5105, - [5540] = 5087, - [5541] = 5106, - [5542] = 5107, - [5543] = 5084, - [5544] = 5109, - [5545] = 5104, - [5546] = 5095, - [5547] = 5086, - [5548] = 5075, - [5549] = 5084, - [5550] = 5083, - [5551] = 5083, - [5552] = 5081, - [5553] = 5081, - [5554] = 5127, - [5555] = 5081, - [5556] = 5083, - [5557] = 5138, - [5558] = 5084, - [5559] = 5075, - [5560] = 5086, - [5561] = 5136, - [5562] = 4753, - [5563] = 5113, - [5564] = 5083, - [5565] = 5136, + [5487] = 5072, + [5488] = 5078, + [5489] = 5079, + [5490] = 5080, + [5491] = 5081, + [5492] = 5088, + [5493] = 5112, + [5494] = 5131, + [5495] = 5150, + [5496] = 5154, + [5497] = 5156, + [5498] = 5082, + [5499] = 5171, + [5500] = 5097, + [5501] = 5071, + [5502] = 5127, + [5503] = 5103, + [5504] = 5171, + [5505] = 5071, + [5506] = 5082, + [5507] = 5081, + [5508] = 5080, + [5509] = 5079, + [5510] = 5078, + [5511] = 5077, + [5512] = 5076, + [5513] = 5072, + [5514] = 5112, + [5515] = 5073, + [5516] = 5072, + [5517] = 5131, + [5518] = 5076, + [5519] = 5077, + [5520] = 5078, + [5521] = 5079, + [5522] = 5080, + [5523] = 5081, + [5524] = 5082, + [5525] = 5125, + [5526] = 5088, + [5527] = 5097, + [5528] = 5103, + [5529] = 5071, + [5530] = 5082, + [5531] = 5089, + [5532] = 5081, + [5533] = 5080, + [5534] = 5079, + [5535] = 5078, + [5536] = 5077, + [5537] = 5096, + [5538] = 5076, + [5539] = 5098, + [5540] = 5072, + [5541] = 5100, + [5542] = 5071, + [5543] = 5126, + [5544] = 5103, + [5545] = 5097, + [5546] = 5088, + [5547] = 5088, + [5548] = 5097, + [5549] = 5103, + [5550] = 5150, + [5551] = 5071, + [5552] = 5082, + [5553] = 5154, + [5554] = 5156, + [5555] = 5103, + [5556] = 5097, + [5557] = 5088, + [5558] = 4764, + [5559] = 5088, + [5560] = 5560, + [5561] = 5171, + [5562] = 5129, + [5563] = 5081, + [5564] = 5080, + [5565] = 5079, [5566] = 5125, - [5567] = 5078, - [5568] = 5081, - [5569] = 5112, - [5570] = 5080, - [5571] = 5100, - [5572] = 5100, - [5573] = 5095, - [5574] = 5104, - [5575] = 5109, + [5567] = 5126, + [5568] = 5078, + [5569] = 5077, + [5570] = 5076, + [5571] = 5075, + [5572] = 5083, + [5573] = 5084, + [5574] = 5072, + [5575] = 5088, [5576] = 5136, [5577] = 5137, - [5578] = 5138, - [5579] = 5139, - [5580] = 5076, - [5581] = 5082, - [5582] = 5090, - [5583] = 5091, - [5584] = 5092, - [5585] = 5072, - [5586] = 5122, - [5587] = 5113, - [5588] = 5112, - [5589] = 5100, - [5590] = 5107, - [5591] = 5089, - [5592] = 5088, - [5593] = 5087, - [5594] = 5086, - [5595] = 5075, - [5596] = 5084, - [5597] = 5083, - [5598] = 5081, - [5599] = 5095, - [5600] = 5104, - [5601] = 5109, - [5602] = 5107, - [5603] = 5089, - [5604] = 5088, - [5605] = 5087, - [5606] = 5086, - [5607] = 5075, - [5608] = 5084, - [5609] = 5083, - [5610] = 5081, + [5578] = 5129, + [5579] = 5122, + [5580] = 5121, + [5581] = 5120, + [5582] = 5119, + [5583] = 5118, + [5584] = 5115, + [5585] = 5108, + [5586] = 5085, + [5587] = 5084, + [5588] = 5083, + [5589] = 5075, + [5590] = 5097, + [5591] = 5103, + [5592] = 5071, + [5593] = 5082, + [5594] = 5081, + [5595] = 5080, + [5596] = 5079, + [5597] = 5078, + [5598] = 5077, + [5599] = 5076, + [5600] = 5072, + [5601] = 4780, + [5602] = 4764, + [5603] = 5088, + [5604] = 5097, + [5605] = 5103, + [5606] = 5071, + [5607] = 5082, + [5608] = 5081, + [5609] = 5080, + [5610] = 5079, [5611] = 5171, - [5612] = 5095, - [5613] = 5104, - [5614] = 4772, - [5615] = 5109, - [5616] = 5112, - [5617] = 5113, - [5618] = 5107, - [5619] = 5122, - [5620] = 5107, - [5621] = 5071, - [5622] = 5101, - [5623] = 5108, - [5624] = 5127, - [5625] = 5131, - [5626] = 5130, - [5627] = 5089, - [5628] = 5088, - [5629] = 5087, - [5630] = 5086, - [5631] = 5075, - [5632] = 5084, - [5633] = 5083, - [5634] = 5081, - [5635] = 5171, - [5636] = 5100, - [5637] = 5130, - [5638] = 4772, - [5639] = 5092, - [5640] = 5131, - [5641] = 5127, - [5642] = 5108, - [5643] = 5101, - [5644] = 5096, - [5645] = 5091, - [5646] = 5087, - [5647] = 5071, - [5648] = 5090, - [5649] = 5082, + [5612] = 5078, + [5613] = 5122, + [5614] = 5108, + [5615] = 5077, + [5616] = 5115, + [5617] = 5118, + [5618] = 5119, + [5619] = 5076, + [5620] = 5071, + [5621] = 5156, + [5622] = 5154, + [5623] = 5150, + [5624] = 5131, + [5625] = 5112, + [5626] = 5127, + [5627] = 5136, + [5628] = 5137, + [5629] = 5071, + [5630] = 1327, + [5631] = 5122, + [5632] = 5088, + [5633] = 5097, + [5634] = 5103, + [5635] = 5071, + [5636] = 5082, + [5637] = 5081, + [5638] = 5120, + [5639] = 5121, + [5640] = 5122, + [5641] = 5129, + [5642] = 5137, + [5643] = 5136, + [5644] = 5089, + [5645] = 5080, + [5646] = 5121, + [5647] = 5079, + [5648] = 5078, + [5649] = 5077, [5650] = 5076, - [5651] = 5139, - [5652] = 5100, - [5653] = 5112, - [5654] = 5113, - [5655] = 5122, - [5656] = 5088, - [5657] = 5138, - [5658] = 5137, - [5659] = 5080, - [5660] = 5081, - [5661] = 5136, - [5662] = 5083, - [5663] = 5084, - [5664] = 5075, - [5665] = 5086, - [5666] = 5087, - [5667] = 5088, - [5668] = 5089, - [5669] = 5072, - [5670] = 5092, - [5671] = 5125, - [5672] = 5091, - [5673] = 5090, - [5674] = 5082, - [5675] = 5096, - [5676] = 5076, - [5677] = 5139, - [5678] = 5138, - [5679] = 5080, - [5680] = 5089, - [5681] = 5103, - [5682] = 5087, - [5683] = 5105, - [5684] = 5107, - [5685] = 5106, - [5686] = 5107, - [5687] = 5081, - [5688] = 5109, - [5689] = 5104, - [5690] = 5095, - [5691] = 5109, - [5692] = 5104, - [5693] = 5095, - [5694] = 5084, - [5695] = 5130, - [5696] = 5131, - [5697] = 5127, - [5698] = 5108, - [5699] = 5101, - [5700] = 5071, - [5701] = 4753, - [5702] = 4753, - [5703] = 5075, - [5704] = 5086, - [5705] = 5171, - [5706] = 5138, - [5707] = 5139, - [5708] = 5076, - [5709] = 5095, + [5651] = 5072, + [5652] = 5150, + [5653] = 5121, + [5654] = 5120, + [5655] = 5119, + [5656] = 5118, + [5657] = 5126, + [5658] = 5125, + [5659] = 5073, + [5660] = 5072, + [5661] = 5115, + [5662] = 5076, + [5663] = 5077, + [5664] = 5078, + [5665] = 5079, + [5666] = 5080, + [5667] = 5081, + [5668] = 5082, + [5669] = 5127, + [5670] = 5112, + [5671] = 5120, + [5672] = 5119, + [5673] = 5131, + [5674] = 5118, + [5675] = 5089, + [5676] = 5150, + [5677] = 5154, + [5678] = 5156, + [5679] = 5115, + [5680] = 5108, + [5681] = 5096, + [5682] = 5080, + [5683] = 5098, + [5684] = 5085, + [5685] = 5100, + [5686] = 5084, + [5687] = 5083, + [5688] = 5103, + [5689] = 5097, + [5690] = 5088, + [5691] = 5075, + [5692] = 5100, + [5693] = 5088, + [5694] = 5097, + [5695] = 5103, + [5696] = 5071, + [5697] = 5075, + [5698] = 5083, + [5699] = 5084, + [5700] = 5085, + [5701] = 5108, + [5702] = 5115, + [5703] = 5118, + [5704] = 5119, + [5705] = 5120, + [5706] = 5121, + [5707] = 5075, + [5708] = 5083, + [5709] = 5084, [5710] = 5125, - [5711] = 5078, - [5712] = 5103, - [5713] = 5083, - [5714] = 5084, - [5715] = 5075, - [5716] = 5086, - [5717] = 5087, - [5718] = 5104, - [5719] = 5088, + [5711] = 5126, + [5712] = 5098, + [5713] = 5096, + [5714] = 5085, + [5715] = 5108, + [5716] = 5122, + [5717] = 5115, + [5718] = 5118, + [5719] = 5089, [5720] = 5136, [5721] = 5137, - [5722] = 5138, - [5723] = 5139, - [5724] = 5076, - [5725] = 5082, - [5726] = 5090, - [5727] = 5091, - [5728] = 5092, - [5729] = 5072, - [5730] = 5122, - [5731] = 5113, - [5732] = 5112, - [5733] = 5100, - [5734] = 5109, - [5735] = 5107, - [5736] = 5171, - [5737] = 4769, - [5738] = 1264, - [5739] = 5089, - [5740] = 5088, - [5741] = 5087, - [5742] = 5086, - [5743] = 5075, - [5744] = 5084, - [5745] = 5083, - [5746] = 5081, - [5747] = 5082, - [5748] = 5090, - [5749] = 5130, - [5750] = 5131, - [5751] = 5127, - [5752] = 5108, - [5753] = 5101, - [5754] = 5071, + [5722] = 5129, + [5723] = 5122, + [5724] = 5121, + [5725] = 5120, + [5726] = 5119, + [5727] = 5118, + [5728] = 5115, + [5729] = 5108, + [5730] = 5085, + [5731] = 5084, + [5732] = 5083, + [5733] = 5075, + [5734] = 5119, + [5735] = 5120, + [5736] = 5121, + [5737] = 5122, + [5738] = 5129, + [5739] = 5129, + [5740] = 5137, + [5741] = 5136, + [5742] = 5137, + [5743] = 5156, + [5744] = 5129, + [5745] = 5122, + [5746] = 5154, + [5747] = 5747, + [5748] = 5121, + [5749] = 5108, + [5750] = 5085, + [5751] = 5084, + [5752] = 5083, + [5753] = 5075, + [5754] = 5088, [5755] = 5171, - [5756] = 5089, - [5757] = 5100, - [5758] = 5112, - [5759] = 5113, - [5760] = 5122, - [5761] = 5096, - [5762] = 5072, - [5763] = 5092, - [5764] = 5091, - [5765] = 5071, - [5766] = 5101, - [5767] = 5108, - [5768] = 5127, - [5769] = 5131, - [5770] = 5130, - [5771] = 5090, - [5772] = 5082, - [5773] = 5076, - [5774] = 5139, - [5775] = 5138, - [5776] = 5091, - [5777] = 5092, - [5778] = 5072, - [5779] = 5122, - [5780] = 5113, + [5756] = 5097, + [5757] = 5103, + [5758] = 5071, + [5759] = 5082, + [5760] = 5081, + [5761] = 5082, + [5762] = 5081, + [5763] = 5080, + [5764] = 5080, + [5765] = 5156, + [5766] = 5154, + [5767] = 5150, + [5768] = 5131, + [5769] = 5112, + [5770] = 5127, + [5771] = 5079, + [5772] = 5078, + [5773] = 5077, + [5774] = 5076, + [5775] = 5072, + [5776] = 5129, + [5777] = 5127, + [5778] = 5112, + [5779] = 5131, + [5780] = 5150, [5781] = 5781, - [5782] = 5112, - [5783] = 5100, - [5784] = 5105, - [5785] = 5090, - [5786] = 5071, - [5787] = 5101, - [5788] = 5106, - [5789] = 5100, - [5790] = 5112, - [5791] = 5107, - [5792] = 5089, - [5793] = 5113, - [5794] = 5122, - [5795] = 5078, - [5796] = 5089, - [5797] = 5072, - [5798] = 5092, - [5799] = 5091, - [5800] = 5088, - [5801] = 5109, - [5802] = 5104, - [5803] = 5080, - [5804] = 5081, - [5805] = 5083, - [5806] = 5084, - [5807] = 5075, - [5808] = 5086, - [5809] = 5087, - [5810] = 5088, - [5811] = 5089, - [5812] = 5090, - [5813] = 5071, - [5814] = 5095, - [5815] = 5101, - [5816] = 5095, - [5817] = 5104, - [5818] = 5096, - [5819] = 5082, - [5820] = 5076, - [5821] = 5109, - [5822] = 5107, - [5823] = 5139, - [5824] = 5103, - [5825] = 5086, - [5826] = 5105, - [5827] = 5108, - [5828] = 5106, - [5829] = 5107, - [5830] = 5109, - [5831] = 5104, - [5832] = 5095, - [5833] = 5138, - [5834] = 5071, - [5835] = 5137, - [5836] = 5136, - [5837] = 5108, - [5838] = 5127, - [5839] = 5131, - [5840] = 5130, - [5841] = 5088, - [5842] = 5078, - [5843] = 5078, - [5844] = 5125, - [5845] = 5081, - [5846] = 5083, - [5847] = 5084, - [5848] = 5075, - [5849] = 5101, - [5850] = 5075, - [5851] = 5108, + [5782] = 5079, + [5783] = 5078, + [5784] = 5077, + [5785] = 5076, + [5786] = 5154, + [5787] = 5072, + [5788] = 5073, + [5789] = 5156, + [5790] = 5126, + [5791] = 5075, + [5792] = 5125, + [5793] = 5125, + [5794] = 5126, + [5795] = 5795, + [5796] = 5082, + [5797] = 5120, + [5798] = 5083, + [5799] = 5084, + [5800] = 5081, + [5801] = 5085, + [5802] = 5108, + [5803] = 5073, + [5804] = 5072, + [5805] = 5076, + [5806] = 5077, + [5807] = 5078, + [5808] = 5079, + [5809] = 5080, + [5810] = 5081, + [5811] = 5082, + [5812] = 5115, + [5813] = 5118, + [5814] = 5119, + [5815] = 5120, + [5816] = 5121, + [5817] = 5122, + [5818] = 5089, + [5819] = 5129, + [5820] = 5150, + [5821] = 5131, + [5822] = 5119, + [5823] = 5118, + [5824] = 5096, + [5825] = 5079, + [5826] = 5098, + [5827] = 5115, + [5828] = 5100, + [5829] = 5071, + [5830] = 5103, + [5831] = 5097, + [5832] = 5088, + [5833] = 5108, + [5834] = 5075, + [5835] = 5085, + [5836] = 5127, + [5837] = 5112, + [5838] = 5131, + [5839] = 5084, + [5840] = 5088, + [5841] = 5097, + [5842] = 5103, + [5843] = 5071, + [5844] = 5100, + [5845] = 5083, + [5846] = 5098, + [5847] = 1324, + [5848] = 5096, + [5849] = 5136, + [5850] = 5078, + [5851] = 5150, [5852] = 5125, - [5853] = 5078, - [5854] = 5125, - [5855] = 5103, - [5856] = 5105, - [5857] = 5106, - [5858] = 5107, - [5859] = 5089, - [5860] = 5088, + [5853] = 5126, + [5854] = 5154, + [5855] = 5112, + [5856] = 5127, + [5857] = 5156, + [5858] = 5171, + [5859] = 5073, + [5860] = 5860, [5861] = 5136, [5862] = 5137, - [5863] = 5138, - [5864] = 5139, - [5865] = 5076, - [5866] = 5082, - [5867] = 5090, - [5868] = 5091, - [5869] = 5092, - [5870] = 5072, - [5871] = 5122, - [5872] = 5113, - [5873] = 5112, - [5874] = 5100, - [5875] = 5087, - [5876] = 5086, - [5877] = 5075, - [5878] = 5084, - [5879] = 5083, + [5863] = 5129, + [5864] = 5122, + [5865] = 5121, + [5866] = 5120, + [5867] = 5119, + [5868] = 5118, + [5869] = 5115, + [5870] = 5108, + [5871] = 5085, + [5872] = 5084, + [5873] = 5083, + [5874] = 5075, + [5875] = 5088, + [5876] = 5097, + [5877] = 5103, + [5878] = 5071, + [5879] = 5082, [5880] = 5081, - [5881] = 5137, - [5882] = 5127, - [5883] = 5131, - [5884] = 5130, - [5885] = 5130, - [5886] = 5131, - [5887] = 5127, - [5888] = 5108, - [5889] = 5101, - [5890] = 5071, - [5891] = 5100, - [5892] = 5112, - [5893] = 5113, - [5894] = 5122, - [5895] = 5072, + [5881] = 5080, + [5882] = 5079, + [5883] = 5078, + [5884] = 5077, + [5885] = 5076, + [5886] = 5072, + [5887] = 5887, + [5888] = 5171, + [5889] = 4781, + [5890] = 5156, + [5891] = 5154, + [5892] = 5127, + [5893] = 5112, + [5894] = 5131, + [5895] = 5150, [5896] = 5171, - [5897] = 5095, - [5898] = 5104, - [5899] = 5109, - [5900] = 5084, - [5901] = 5107, - [5902] = 5106, - [5903] = 5083, - [5904] = 5092, - [5905] = 5071, - [5906] = 5101, - [5907] = 5108, - [5908] = 5127, - [5909] = 5131, - [5910] = 5130, - [5911] = 5091, - [5912] = 5090, - [5913] = 5082, - [5914] = 5076, - [5915] = 5139, - [5916] = 5138, - [5917] = 5105, - [5918] = 1250, - [5919] = 5103, - [5920] = 5086, - [5921] = 5087, - [5922] = 5088, - [5923] = 5080, - [5924] = 5089, - [5925] = 5096, - [5926] = 5130, - [5927] = 5131, - [5928] = 5138, - [5929] = 5107, - [5930] = 5081, - [5931] = 5109, - [5932] = 5095, - [5933] = 5104, - [5934] = 5109, - [5935] = 5089, + [5897] = 5154, + [5898] = 5156, + [5899] = 5075, + [5900] = 5077, + [5901] = 5083, + [5902] = 5084, + [5903] = 5076, + [5904] = 5085, + [5905] = 5156, + [5906] = 5154, + [5907] = 5150, + [5908] = 5131, + [5909] = 5112, + [5910] = 5127, + [5911] = 5108, + [5912] = 5115, + [5913] = 5118, + [5914] = 5119, + [5915] = 5120, + [5916] = 5121, + [5917] = 5122, + [5918] = 5129, + [5919] = 5089, + [5920] = 5072, + [5921] = 5076, + [5922] = 5077, + [5923] = 5078, + [5924] = 5079, + [5925] = 5080, + [5926] = 5082, + [5927] = 5081, + [5928] = 5080, + [5929] = 5079, + [5930] = 5072, + [5931] = 5078, + [5932] = 5150, + [5933] = 5131, + [5934] = 5112, + [5935] = 5127, [5936] = 5088, - [5937] = 5087, - [5938] = 5086, - [5939] = 5095, - [5940] = 5104, - [5941] = 5075, - [5942] = 5080, - [5943] = 5081, - [5944] = 5083, - [5945] = 5084, + [5937] = 5097, + [5938] = 5103, + [5939] = 5071, + [5940] = 5082, + [5941] = 5081, + [5942] = 5073, + [5943] = 5072, + [5944] = 5076, + [5945] = 5077, [5946] = 5946, - [5947] = 5947, + [5947] = 5946, [5948] = 5948, [5949] = 5949, [5950] = 5946, [5951] = 5951, [5952] = 5952, [5953] = 5953, - [5954] = 5953, + [5954] = 5954, [5955] = 5955, [5956] = 5956, [5957] = 5957, - [5958] = 5956, - [5959] = 5947, - [5960] = 5946, + [5958] = 5948, + [5959] = 5956, + [5960] = 5949, [5961] = 5961, - [5962] = 5957, - [5963] = 5955, + [5962] = 5946, + [5963] = 5957, [5964] = 5964, - [5965] = 5953, - [5966] = 5966, - [5967] = 5949, - [5968] = 5948, - [5969] = 5951, + [5965] = 5954, + [5966] = 5953, + [5967] = 5952, + [5968] = 5951, + [5969] = 5946, [5970] = 5949, - [5971] = 5946, - [5972] = 5947, - [5973] = 5956, - [5974] = 5966, - [5975] = 5952, - [5976] = 5976, - [5977] = 5953, - [5978] = 5951, - [5979] = 5948, + [5971] = 5956, + [5972] = 5948, + [5973] = 5951, + [5974] = 5952, + [5975] = 5953, + [5976] = 5954, + [5977] = 5964, + [5978] = 5948, + [5979] = 5956, [5980] = 5949, [5981] = 5946, - [5982] = 5947, - [5983] = 5956, - [5984] = 5957, - [5985] = 5955, + [5982] = 5951, + [5983] = 5952, + [5984] = 5953, + [5985] = 5954, [5986] = 5964, - [5987] = 5953, - [5988] = 5964, - [5989] = 5955, - [5990] = 5957, - [5991] = 5956, - [5992] = 5947, - [5993] = 5957, - [5994] = 5946, + [5987] = 5957, + [5988] = 5957, + [5989] = 5989, + [5990] = 5990, + [5991] = 5991, + [5992] = 5991, + [5993] = 5948, + [5994] = 5956, [5995] = 5949, - [5996] = 5948, + [5996] = 5946, [5997] = 5951, - [5998] = 5957, - [5999] = 5955, - [6000] = 5964, - [6001] = 5953, - [6002] = 5966, - [6003] = 6003, - [6004] = 6004, - [6005] = 5948, - [6006] = 5966, - [6007] = 5955, - [6008] = 5964, - [6009] = 6009, - [6010] = 6010, - [6011] = 6003, - [6012] = 5952, - [6013] = 5951, - [6014] = 5948, + [5998] = 5952, + [5999] = 5953, + [6000] = 5954, + [6001] = 5964, + [6002] = 5957, + [6003] = 5948, + [6004] = 5957, + [6005] = 5964, + [6006] = 5954, + [6007] = 5953, + [6008] = 5952, + [6009] = 5951, + [6010] = 5946, + [6011] = 5949, + [6012] = 5956, + [6013] = 5948, + [6014] = 5956, [6015] = 5949, [6016] = 5946, - [6017] = 5947, - [6018] = 5956, - [6019] = 5957, - [6020] = 5955, + [6017] = 5951, + [6018] = 5952, + [6019] = 5953, + [6020] = 5954, [6021] = 5964, - [6022] = 5953, - [6023] = 5953, - [6024] = 6024, - [6025] = 5951, - [6026] = 5948, - [6027] = 5953, - [6028] = 5953, - [6029] = 5964, - [6030] = 5955, - [6031] = 5957, - [6032] = 5956, - [6033] = 5947, - [6034] = 5946, + [6022] = 5957, + [6023] = 5991, + [6024] = 5948, + [6025] = 5957, + [6026] = 5957, + [6027] = 5964, + [6028] = 5954, + [6029] = 5953, + [6030] = 5952, + [6031] = 5951, + [6032] = 5946, + [6033] = 5949, + [6034] = 5956, [6035] = 5964, - [6036] = 6003, - [6037] = 5949, + [6036] = 5954, + [6037] = 5953, [6038] = 5948, - [6039] = 5951, - [6040] = 5955, - [6041] = 5957, - [6042] = 5956, - [6043] = 5947, - [6044] = 5946, - [6045] = 5949, - [6046] = 5948, - [6047] = 5951, - [6048] = 5949, - [6049] = 5946, - [6050] = 5956, - [6051] = 5947, - [6052] = 5947, - [6053] = 5952, - [6054] = 5956, - [6055] = 5957, - [6056] = 5955, - [6057] = 5964, - [6058] = 5952, - [6059] = 5951, - [6060] = 6003, - [6061] = 5964, - [6062] = 5952, - [6063] = 5953, - [6064] = 5964, - [6065] = 5955, - [6066] = 5957, - [6067] = 5956, - [6068] = 5947, - [6069] = 5946, - [6070] = 5949, - [6071] = 5948, - [6072] = 5966, - [6073] = 5951, - [6074] = 6074, - [6075] = 5966, - [6076] = 5952, - [6077] = 6077, - [6078] = 5948, - [6079] = 5949, - [6080] = 5946, - [6081] = 5947, - [6082] = 5948, - [6083] = 6003, + [6039] = 5952, + [6040] = 6040, + [6041] = 5951, + [6042] = 5946, + [6043] = 5949, + [6044] = 5956, + [6045] = 5948, + [6046] = 6046, + [6047] = 5957, + [6048] = 5964, + [6049] = 5991, + [6050] = 5957, + [6051] = 5964, + [6052] = 5991, + [6053] = 5954, + [6054] = 5954, + [6055] = 5953, + [6056] = 5952, + [6057] = 5951, + [6058] = 5956, + [6059] = 5991, + [6060] = 5964, + [6061] = 5948, + [6062] = 5953, + [6063] = 5952, + [6064] = 5951, + [6065] = 5957, + [6066] = 5964, + [6067] = 5957, + [6068] = 5964, + [6069] = 5954, + [6070] = 5953, + [6071] = 5952, + [6072] = 5954, + [6073] = 5953, + [6074] = 5952, + [6075] = 5951, + [6076] = 5946, + [6077] = 5949, + [6078] = 5956, + [6079] = 5948, + [6080] = 5991, + [6081] = 5951, + [6082] = 5946, + [6083] = 5949, [6084] = 5956, - [6085] = 5957, - [6086] = 5953, - [6087] = 5964, - [6088] = 5955, - [6089] = 5957, - [6090] = 5949, - [6091] = 5956, - [6092] = 6092, - [6093] = 5947, + [6085] = 5946, + [6086] = 5949, + [6087] = 5956, + [6088] = 5991, + [6089] = 5948, + [6090] = 5991, + [6091] = 5948, + [6092] = 5956, + [6093] = 5949, [6094] = 5946, - [6095] = 5951, - [6096] = 5948, + [6095] = 5948, + [6096] = 5956, [6097] = 5949, [6098] = 5946, - [6099] = 5947, - [6100] = 5956, - [6101] = 5957, - [6102] = 5955, + [6099] = 5951, + [6100] = 5952, + [6101] = 5953, + [6102] = 5954, [6103] = 5964, - [6104] = 5953, - [6105] = 5949, - [6106] = 5948, - [6107] = 5951, - [6108] = 5955, + [6104] = 5957, + [6105] = 5951, + [6106] = 5952, + [6107] = 5953, + [6108] = 5954, [6109] = 5964, - [6110] = 5953, - [6111] = 6003, - [6112] = 6003, - [6113] = 5952, - [6114] = 5951, - [6115] = 5966, - [6116] = 6116, - [6117] = 5953, - [6118] = 5953, - [6119] = 5964, - [6120] = 5955, - [6121] = 5957, - [6122] = 5956, - [6123] = 5947, - [6124] = 5946, - [6125] = 5949, - [6126] = 5966, - [6127] = 5948, - [6128] = 5951, - [6129] = 6003, - [6130] = 5951, + [6110] = 5957, + [6111] = 5957, + [6112] = 5964, + [6113] = 5954, + [6114] = 5953, + [6115] = 5952, + [6116] = 5951, + [6117] = 5946, + [6118] = 5949, + [6119] = 5956, + [6120] = 5948, + [6121] = 6121, + [6122] = 5991, + [6123] = 6040, + [6124] = 6124, + [6125] = 6040, + [6126] = 6124, + [6127] = 6127, + [6128] = 6124, + [6129] = 6040, + [6130] = 6124, [6131] = 5948, - [6132] = 5949, - [6133] = 5946, - [6134] = 5947, - [6135] = 5956, - [6136] = 5957, - [6137] = 5964, - [6138] = 5955, - [6139] = 6139, - [6140] = 5957, - [6141] = 5956, - [6142] = 5947, - [6143] = 5955, - [6144] = 5964, - [6145] = 5953, - [6146] = 5946, - [6147] = 5952, - [6148] = 6148, - [6149] = 5952, - [6150] = 5952, - [6151] = 5949, - [6152] = 5966, - [6153] = 5948, - [6154] = 6003, - [6155] = 5951, - [6156] = 5966, - [6157] = 5951, - [6158] = 6003, - [6159] = 5953, - [6160] = 5964, - [6161] = 5955, - [6162] = 5957, - [6163] = 5956, - [6164] = 5947, - [6165] = 5946, - [6166] = 5949, - [6167] = 5948, - [6168] = 5951, - [6169] = 5952, - [6170] = 6170, + [6132] = 5956, + [6133] = 5949, + [6134] = 5946, + [6135] = 5951, + [6136] = 5952, + [6137] = 6137, + [6138] = 6138, + [6139] = 6040, + [6140] = 6124, + [6141] = 6141, + [6142] = 6040, + [6143] = 5953, + [6144] = 5954, + [6145] = 5964, + [6146] = 5957, + [6147] = 6147, + [6148] = 6040, + [6149] = 5957, + [6150] = 5964, + [6151] = 5954, + [6152] = 5953, + [6153] = 5952, + [6154] = 5951, + [6155] = 5949, + [6156] = 5949, + [6157] = 5956, + [6158] = 5948, + [6159] = 6124, + [6160] = 6124, + [6161] = 5991, + [6162] = 6162, + [6163] = 6163, + [6164] = 6124, + [6165] = 6040, + [6166] = 5991, + [6167] = 6124, + [6168] = 6040, + [6169] = 6124, + [6170] = 6040, [6171] = 6171, [6172] = 6172, [6173] = 6173, @@ -8049,800 +8048,800 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6189] = 6189, [6190] = 6190, [6191] = 6191, - [6192] = 6192, - [6193] = 6172, + [6192] = 6172, + [6193] = 6193, [6194] = 6194, [6195] = 6195, [6196] = 6196, [6197] = 6197, - [6198] = 6191, - [6199] = 6172, - [6200] = 6192, + [6198] = 6198, + [6199] = 6199, + [6200] = 6200, [6201] = 6201, [6202] = 6202, - [6203] = 6171, - [6204] = 6204, - [6205] = 6205, - [6206] = 6173, - [6207] = 6174, - [6208] = 6175, - [6209] = 6176, - [6210] = 6177, - [6211] = 6178, - [6212] = 6179, - [6213] = 6180, - [6214] = 6181, - [6215] = 6182, - [6216] = 6183, - [6217] = 6184, - [6218] = 6185, - [6219] = 6186, - [6220] = 6187, - [6221] = 6201, - [6222] = 6204, - [6223] = 6171, - [6224] = 6202, - [6225] = 6205, - [6226] = 6188, - [6227] = 6189, - [6228] = 6190, - [6229] = 6191, - [6230] = 6192, - [6231] = 6172, - [6232] = 6194, - [6233] = 6195, - [6234] = 6196, - [6235] = 6197, - [6236] = 6236, - [6237] = 6197, + [6203] = 6199, + [6204] = 6198, + [6205] = 6200, + [6206] = 6206, + [6207] = 6207, + [6208] = 6171, + [6209] = 6173, + [6210] = 6174, + [6211] = 6175, + [6212] = 6176, + [6213] = 6177, + [6214] = 6178, + [6215] = 6179, + [6216] = 6180, + [6217] = 6181, + [6218] = 6182, + [6219] = 6183, + [6220] = 6184, + [6221] = 6185, + [6222] = 6186, + [6223] = 6198, + [6224] = 6207, + [6225] = 6201, + [6226] = 6200, + [6227] = 6199, + [6228] = 6185, + [6229] = 6187, + [6230] = 6188, + [6231] = 6189, + [6232] = 6190, + [6233] = 6191, + [6234] = 6172, + [6235] = 6193, + [6236] = 6194, + [6237] = 6195, [6238] = 6196, - [6239] = 6239, - [6240] = 6201, + [6239] = 6196, + [6240] = 6195, [6241] = 6241, - [6242] = 6242, - [6243] = 6195, - [6244] = 6196, - [6245] = 6202, - [6246] = 6171, - [6247] = 6247, - [6248] = 6248, - [6249] = 6197, - [6250] = 6186, - [6251] = 6195, - [6252] = 6252, + [6242] = 6194, + [6243] = 5090, + [6244] = 5781, + [6245] = 6193, + [6246] = 6172, + [6247] = 6196, + [6248] = 6195, + [6249] = 6194, + [6250] = 6193, + [6251] = 6172, + [6252] = 6191, [6253] = 6190, - [6254] = 6189, - [6255] = 6194, - [6256] = 6197, - [6257] = 6196, - [6258] = 6195, - [6259] = 6194, - [6260] = 6172, - [6261] = 6192, - [6262] = 6191, - [6263] = 6190, - [6264] = 6189, - [6265] = 6188, - [6266] = 6266, - [6267] = 5073, - [6268] = 6185, - [6269] = 5781, - [6270] = 6270, - [6271] = 6172, - [6272] = 6187, - [6273] = 6186, - [6274] = 6185, - [6275] = 6184, - [6276] = 6183, - [6277] = 6182, - [6278] = 6181, - [6279] = 6180, - [6280] = 6179, - [6281] = 6178, - [6282] = 6177, - [6283] = 6176, - [6284] = 6175, - [6285] = 6174, - [6286] = 6173, - [6287] = 6205, - [6288] = 6204, - [6289] = 6201, - [6290] = 6202, - [6291] = 6171, - [6292] = 6204, - [6293] = 6205, - [6294] = 6173, - [6295] = 6174, - [6296] = 6175, - [6297] = 6176, - [6298] = 6177, - [6299] = 6178, - [6300] = 6179, - [6301] = 6180, - [6302] = 6181, - [6303] = 6182, - [6304] = 6183, - [6305] = 6184, - [6306] = 6185, - [6307] = 6186, - [6308] = 6187, - [6309] = 6171, - [6310] = 6202, - [6311] = 6201, - [6312] = 6312, - [6313] = 6192, - [6314] = 6191, - [6315] = 6188, - [6316] = 6189, - [6317] = 6190, - [6318] = 6191, - [6319] = 6192, + [6254] = 6191, + [6255] = 6189, + [6256] = 6190, + [6257] = 6188, + [6258] = 6187, + [6259] = 6259, + [6260] = 6189, + [6261] = 6188, + [6262] = 6188, + [6263] = 6263, + [6264] = 6187, + [6265] = 6265, + [6266] = 6185, + [6267] = 6198, + [6268] = 6199, + [6269] = 6200, + [6270] = 6186, + [6271] = 6185, + [6272] = 6184, + [6273] = 6183, + [6274] = 6182, + [6275] = 6181, + [6276] = 6180, + [6277] = 6179, + [6278] = 6178, + [6279] = 6177, + [6280] = 6176, + [6281] = 6175, + [6282] = 6174, + [6283] = 6173, + [6284] = 6171, + [6285] = 6207, + [6286] = 6201, + [6287] = 6200, + [6288] = 6199, + [6289] = 6198, + [6290] = 6199, + [6291] = 6200, + [6292] = 6201, + [6293] = 6207, + [6294] = 6171, + [6295] = 6173, + [6296] = 6174, + [6297] = 6175, + [6298] = 6176, + [6299] = 6177, + [6300] = 6178, + [6301] = 6179, + [6302] = 6180, + [6303] = 6181, + [6304] = 6182, + [6305] = 6183, + [6306] = 6184, + [6307] = 6185, + [6308] = 6186, + [6309] = 6198, + [6310] = 6201, + [6311] = 6187, + [6312] = 6207, + [6313] = 6171, + [6314] = 6314, + [6315] = 6187, + [6316] = 6188, + [6317] = 6189, + [6318] = 6190, + [6319] = 6191, [6320] = 6172, - [6321] = 6194, - [6322] = 6195, - [6323] = 6196, - [6324] = 6197, - [6325] = 6325, - [6326] = 6190, - [6327] = 6327, - [6328] = 6197, - [6329] = 6196, - [6330] = 6189, - [6331] = 6194, - [6332] = 6184, - [6333] = 6188, - [6334] = 6334, - [6335] = 6181, - [6336] = 6336, + [6321] = 6193, + [6322] = 6194, + [6323] = 6195, + [6324] = 6196, + [6325] = 6196, + [6326] = 6195, + [6327] = 6194, + [6328] = 6193, + [6329] = 6172, + [6330] = 6173, + [6331] = 6198, + [6332] = 6201, + [6333] = 6207, + [6334] = 6199, + [6335] = 6200, + [6336] = 6174, [6337] = 6337, - [6338] = 6338, - [6339] = 6188, - [6340] = 6182, + [6338] = 6188, + [6339] = 6191, + [6340] = 6190, [6341] = 6341, - [6342] = 6201, - [6343] = 6343, - [6344] = 6202, - [6345] = 6188, - [6346] = 6346, - [6347] = 6195, - [6348] = 6194, - [6349] = 6172, - [6350] = 6192, - [6351] = 6191, - [6352] = 6190, - [6353] = 6178, - [6354] = 6189, - [6355] = 6355, - [6356] = 6190, - [6357] = 6357, - [6358] = 6191, - [6359] = 6180, - [6360] = 6197, - [6361] = 6196, - [6362] = 6195, - [6363] = 6194, - [6364] = 6172, - [6365] = 6192, - [6366] = 6191, - [6367] = 6190, - [6368] = 6189, - [6369] = 6188, - [6370] = 6183, - [6371] = 6171, - [6372] = 6187, - [6373] = 6186, - [6374] = 6185, - [6375] = 6201, - [6376] = 6202, - [6377] = 6171, - [6378] = 6204, - [6379] = 6205, - [6380] = 6173, - [6381] = 6174, - [6382] = 6175, - [6383] = 6176, - [6384] = 6177, - [6385] = 6178, - [6386] = 6179, - [6387] = 6180, - [6388] = 6181, - [6389] = 6182, - [6390] = 6183, - [6391] = 6184, - [6392] = 6185, - [6393] = 6186, - [6394] = 6187, + [6342] = 6189, + [6343] = 6201, + [6344] = 6344, + [6345] = 6345, + [6346] = 6175, + [6347] = 6176, + [6348] = 6187, + [6349] = 6171, + [6350] = 6176, + [6351] = 6207, + [6352] = 6171, + [6353] = 6173, + [6354] = 6174, + [6355] = 6175, + [6356] = 6176, + [6357] = 6177, + [6358] = 6178, + [6359] = 6179, + [6360] = 6180, + [6361] = 6181, + [6362] = 6196, + [6363] = 6195, + [6364] = 6194, + [6365] = 6193, + [6366] = 6172, + [6367] = 6191, + [6368] = 6190, + [6369] = 6189, + [6370] = 6188, + [6371] = 6187, + [6372] = 6372, + [6373] = 6182, + [6374] = 6183, + [6375] = 6198, + [6376] = 6199, + [6377] = 6200, + [6378] = 6201, + [6379] = 6207, + [6380] = 6171, + [6381] = 6173, + [6382] = 6174, + [6383] = 6175, + [6384] = 6176, + [6385] = 6177, + [6386] = 6178, + [6387] = 6179, + [6388] = 6180, + [6389] = 6181, + [6390] = 6182, + [6391] = 6183, + [6392] = 6184, + [6393] = 6185, + [6394] = 6186, [6395] = 6184, - [6396] = 6183, - [6397] = 6182, - [6398] = 6181, - [6399] = 6180, - [6400] = 6179, - [6401] = 6188, - [6402] = 6189, - [6403] = 6190, - [6404] = 6191, - [6405] = 6192, + [6396] = 6185, + [6397] = 6186, + [6398] = 6398, + [6399] = 6186, + [6400] = 6185, + [6401] = 6187, + [6402] = 6188, + [6403] = 6189, + [6404] = 6190, + [6405] = 6191, [6406] = 6172, - [6407] = 6194, - [6408] = 6195, - [6409] = 6196, - [6410] = 6197, - [6411] = 6189, - [6412] = 6188, - [6413] = 6178, - [6414] = 6177, - [6415] = 6176, - [6416] = 6175, - [6417] = 6174, - [6418] = 6173, - [6419] = 6205, - [6420] = 6204, - [6421] = 6171, - [6422] = 6202, - [6423] = 6201, - [6424] = 6424, - [6425] = 6425, - [6426] = 6179, - [6427] = 6192, - [6428] = 6428, - [6429] = 6204, - [6430] = 6177, - [6431] = 6172, - [6432] = 6432, - [6433] = 6194, - [6434] = 6170, - [6435] = 6435, - [6436] = 6195, - [6437] = 6437, - [6438] = 6438, - [6439] = 6439, - [6440] = 6196, - [6441] = 1261, - [6442] = 6442, - [6443] = 6204, - [6444] = 6205, - [6445] = 6197, - [6446] = 6196, - [6447] = 6195, - [6448] = 6194, - [6449] = 6172, - [6450] = 6192, - [6451] = 6191, - [6452] = 6190, - [6453] = 6189, - [6454] = 6188, - [6455] = 6173, - [6456] = 6174, - [6457] = 1264, - [6458] = 6458, - [6459] = 6459, - [6460] = 6197, - [6461] = 6201, - [6462] = 6202, - [6463] = 6171, - [6464] = 6204, - [6465] = 6205, - [6466] = 6173, - [6467] = 6174, - [6468] = 6175, - [6469] = 6176, - [6470] = 6177, - [6471] = 6178, - [6472] = 6179, - [6473] = 6180, - [6474] = 6181, - [6475] = 6182, - [6476] = 6183, - [6477] = 6184, - [6478] = 6185, - [6479] = 6186, - [6480] = 6187, - [6481] = 6481, - [6482] = 6175, - [6483] = 6187, - [6484] = 6186, - [6485] = 6185, - [6486] = 6184, - [6487] = 6188, - [6488] = 6189, - [6489] = 6190, - [6490] = 6191, - [6491] = 6192, + [6407] = 6193, + [6408] = 6194, + [6409] = 6195, + [6410] = 6196, + [6411] = 6184, + [6412] = 6183, + [6413] = 6182, + [6414] = 6181, + [6415] = 6177, + [6416] = 6180, + [6417] = 6179, + [6418] = 6178, + [6419] = 6177, + [6420] = 6176, + [6421] = 6175, + [6422] = 6174, + [6423] = 6173, + [6424] = 6171, + [6425] = 6186, + [6426] = 6185, + [6427] = 6184, + [6428] = 6183, + [6429] = 6207, + [6430] = 6201, + [6431] = 6200, + [6432] = 6199, + [6433] = 6182, + [6434] = 6181, + [6435] = 6180, + [6436] = 6179, + [6437] = 6178, + [6438] = 6177, + [6439] = 6198, + [6440] = 6178, + [6441] = 6173, + [6442] = 6179, + [6443] = 6180, + [6444] = 6187, + [6445] = 6189, + [6446] = 6190, + [6447] = 6191, + [6448] = 6172, + [6449] = 6174, + [6450] = 6450, + [6451] = 6181, + [6452] = 6175, + [6453] = 6193, + [6454] = 6194, + [6455] = 6455, + [6456] = 6456, + [6457] = 6457, + [6458] = 6195, + [6459] = 6182, + [6460] = 6196, + [6461] = 6198, + [6462] = 6199, + [6463] = 6200, + [6464] = 6201, + [6465] = 6207, + [6466] = 6171, + [6467] = 6173, + [6468] = 6174, + [6469] = 6175, + [6470] = 6176, + [6471] = 6177, + [6472] = 6178, + [6473] = 6179, + [6474] = 6180, + [6475] = 6181, + [6476] = 6182, + [6477] = 6183, + [6478] = 6184, + [6479] = 6185, + [6480] = 6186, + [6481] = 6183, + [6482] = 6482, + [6483] = 6483, + [6484] = 6196, + [6485] = 6195, + [6486] = 6194, + [6487] = 6187, + [6488] = 6188, + [6489] = 6189, + [6490] = 6190, + [6491] = 6191, [6492] = 6172, - [6493] = 6194, - [6494] = 6195, - [6495] = 6196, - [6496] = 6197, - [6497] = 6182, - [6498] = 6183, - [6499] = 6176, - [6500] = 6177, - [6501] = 6182, - [6502] = 6178, - [6503] = 6181, - [6504] = 6180, - [6505] = 6179, - [6506] = 6178, - [6507] = 6177, - [6508] = 6176, - [6509] = 6175, - [6510] = 6174, - [6511] = 6173, - [6512] = 6205, - [6513] = 6187, - [6514] = 6204, - [6515] = 6171, - [6516] = 6202, - [6517] = 6201, - [6518] = 6201, - [6519] = 6202, - [6520] = 6187, + [6493] = 6193, + [6494] = 6194, + [6495] = 6195, + [6496] = 6196, + [6497] = 6193, + [6498] = 6175, + [6499] = 6174, + [6500] = 6173, + [6501] = 6171, + [6502] = 6207, + [6503] = 6172, + [6504] = 6191, + [6505] = 6190, + [6506] = 6189, + [6507] = 6188, + [6508] = 6187, + [6509] = 6176, + [6510] = 6184, + [6511] = 6201, + [6512] = 6200, + [6513] = 6513, + [6514] = 6199, + [6515] = 6185, + [6516] = 1327, + [6517] = 6186, + [6518] = 6190, + [6519] = 6198, + [6520] = 6520, [6521] = 6186, [6522] = 6185, [6523] = 6184, [6524] = 6183, - [6525] = 6525, - [6526] = 6171, - [6527] = 6204, - [6528] = 6205, - [6529] = 6173, - [6530] = 6174, + [6525] = 6182, + [6526] = 6181, + [6527] = 6180, + [6528] = 6179, + [6529] = 6178, + [6530] = 6177, [6531] = 6176, - [6532] = 6177, - [6533] = 6178, - [6534] = 6179, - [6535] = 6180, - [6536] = 6181, - [6537] = 6182, - [6538] = 6175, - [6539] = 6183, - [6540] = 6180, - [6541] = 6184, - [6542] = 1157, - [6543] = 6185, - [6544] = 6186, - [6545] = 6187, - [6546] = 6175, - [6547] = 6201, - [6548] = 6202, - [6549] = 6171, - [6550] = 6204, - [6551] = 6205, - [6552] = 6173, - [6553] = 6174, - [6554] = 6175, - [6555] = 6176, - [6556] = 6177, - [6557] = 6178, - [6558] = 6179, - [6559] = 6180, - [6560] = 6181, - [6561] = 6182, - [6562] = 6183, - [6563] = 6184, - [6564] = 6185, - [6565] = 6186, - [6566] = 6187, - [6567] = 1250, - [6568] = 6181, - [6569] = 6182, - [6570] = 6183, - [6571] = 6184, - [6572] = 6185, - [6573] = 6188, - [6574] = 6189, - [6575] = 6190, - [6576] = 6191, - [6577] = 6192, - [6578] = 6205, - [6579] = 6194, - [6580] = 6195, - [6581] = 6196, - [6582] = 6197, - [6583] = 6186, - [6584] = 6181, - [6585] = 6180, - [6586] = 6179, - [6587] = 6178, - [6588] = 6197, - [6589] = 6196, - [6590] = 6195, - [6591] = 6194, - [6592] = 6172, - [6593] = 6192, - [6594] = 6191, - [6595] = 6190, - [6596] = 6189, - [6597] = 6188, - [6598] = 6174, - [6599] = 6176, - [6600] = 6187, - [6601] = 6177, - [6602] = 6176, - [6603] = 6175, - [6604] = 6174, - [6605] = 6173, - [6606] = 6201, + [6532] = 6175, + [6533] = 6174, + [6534] = 6173, + [6535] = 6171, + [6536] = 6207, + [6537] = 6201, + [6538] = 6200, + [6539] = 6199, + [6540] = 6198, + [6541] = 6178, + [6542] = 6542, + [6543] = 6191, + [6544] = 6189, + [6545] = 6188, + [6546] = 6546, + [6547] = 6198, + [6548] = 6199, + [6549] = 6200, + [6550] = 6201, + [6551] = 6207, + [6552] = 6171, + [6553] = 6173, + [6554] = 6174, + [6555] = 6175, + [6556] = 6176, + [6557] = 6177, + [6558] = 6178, + [6559] = 6179, + [6560] = 6180, + [6561] = 6181, + [6562] = 6182, + [6563] = 6183, + [6564] = 6184, + [6565] = 6185, + [6566] = 6186, + [6567] = 6567, + [6568] = 6179, + [6569] = 6177, + [6570] = 6570, + [6571] = 6180, + [6572] = 6181, + [6573] = 6187, + [6574] = 6188, + [6575] = 6189, + [6576] = 6190, + [6577] = 6191, + [6578] = 6171, + [6579] = 6193, + [6580] = 6194, + [6581] = 6195, + [6582] = 6196, + [6583] = 6583, + [6584] = 6182, + [6585] = 6186, + [6586] = 6183, + [6587] = 6587, + [6588] = 6588, + [6589] = 1307, + [6590] = 6187, + [6591] = 6184, + [6592] = 6592, + [6593] = 6188, + [6594] = 1324, + [6595] = 6189, + [6596] = 6191, + [6597] = 6196, + [6598] = 6195, + [6599] = 6194, + [6600] = 6193, + [6601] = 6172, + [6602] = 6198, + [6603] = 6190, + [6604] = 6189, + [6605] = 6188, + [6606] = 6187, [6607] = 6190, - [6608] = 6187, - [6609] = 6186, - [6610] = 6185, - [6611] = 6184, - [6612] = 6183, - [6613] = 6182, - [6614] = 6181, - [6615] = 6180, - [6616] = 6179, - [6617] = 6178, - [6618] = 6205, - [6619] = 6204, - [6620] = 6171, - [6621] = 6202, - [6622] = 6177, - [6623] = 6176, - [6624] = 6175, - [6625] = 6174, - [6626] = 6173, - [6627] = 6205, - [6628] = 6204, - [6629] = 6171, - [6630] = 6202, - [6631] = 6182, - [6632] = 6632, - [6633] = 6633, - [6634] = 6201, - [6635] = 6188, - [6636] = 6189, - [6637] = 6190, - [6638] = 6191, - [6639] = 6201, - [6640] = 6202, - [6641] = 6204, - [6642] = 6205, - [6643] = 6192, - [6644] = 6174, - [6645] = 6172, - [6646] = 6194, - [6647] = 6195, - [6648] = 6196, - [6649] = 6197, - [6650] = 6187, - [6651] = 6186, - [6652] = 6179, - [6653] = 6184, - [6654] = 6654, - [6655] = 6183, - [6656] = 6182, - [6657] = 6175, - [6658] = 6176, - [6659] = 6177, - [6660] = 6178, - [6661] = 6179, - [6662] = 6180, - [6663] = 6181, - [6664] = 6197, - [6665] = 6196, - [6666] = 6195, - [6667] = 6194, - [6668] = 6172, - [6669] = 6192, - [6670] = 6191, - [6671] = 6190, - [6672] = 6189, - [6673] = 6188, - [6674] = 6182, - [6675] = 6183, - [6676] = 6184, + [6608] = 6608, + [6609] = 6172, + [6610] = 6191, + [6611] = 6172, + [6612] = 6186, + [6613] = 6185, + [6614] = 6184, + [6615] = 6183, + [6616] = 6182, + [6617] = 6181, + [6618] = 6180, + [6619] = 6179, + [6620] = 6193, + [6621] = 6194, + [6622] = 6178, + [6623] = 6177, + [6624] = 6176, + [6625] = 6175, + [6626] = 6174, + [6627] = 6173, + [6628] = 6171, + [6629] = 6207, + [6630] = 6201, + [6631] = 6200, + [6632] = 6199, + [6633] = 6180, + [6634] = 6195, + [6635] = 6196, + [6636] = 6636, + [6637] = 6184, + [6638] = 6638, + [6639] = 6183, + [6640] = 6193, + [6641] = 6182, + [6642] = 6198, + [6643] = 6199, + [6644] = 6200, + [6645] = 6181, + [6646] = 6201, + [6647] = 6207, + [6648] = 6173, + [6649] = 6174, + [6650] = 6179, + [6651] = 6178, + [6652] = 6177, + [6653] = 6175, + [6654] = 6176, + [6655] = 6177, + [6656] = 6656, + [6657] = 6178, + [6658] = 6179, + [6659] = 6176, + [6660] = 6194, + [6661] = 6175, + [6662] = 6662, + [6663] = 6174, + [6664] = 6180, + [6665] = 6181, + [6666] = 6173, + [6667] = 6171, + [6668] = 6207, + [6669] = 6182, + [6670] = 6195, + [6671] = 6183, + [6672] = 6201, + [6673] = 6200, + [6674] = 6674, + [6675] = 6184, + [6676] = 6196, [6677] = 6185, [6678] = 6186, - [6679] = 6173, - [6680] = 6181, - [6681] = 6180, - [6682] = 6187, - [6683] = 6186, - [6684] = 6185, - [6685] = 6184, - [6686] = 6183, - [6687] = 6187, - [6688] = 6181, - [6689] = 6180, - [6690] = 6179, - [6691] = 6178, - [6692] = 6177, - [6693] = 6176, - [6694] = 6175, - [6695] = 6174, - [6696] = 6173, - [6697] = 6205, - [6698] = 6204, - [6699] = 6179, - [6700] = 6178, - [6701] = 6177, - [6702] = 6171, - [6703] = 6202, - [6704] = 6201, - [6705] = 6176, - [6706] = 6175, - [6707] = 6174, - [6708] = 6197, - [6709] = 6173, - [6710] = 6173, - [6711] = 6196, - [6712] = 6195, - [6713] = 6194, - [6714] = 6172, - [6715] = 6192, - [6716] = 6191, - [6717] = 6205, - [6718] = 6204, - [6719] = 6171, - [6720] = 6202, + [6679] = 6199, + [6680] = 6198, + [6681] = 6681, + [6682] = 6196, + [6683] = 6195, + [6684] = 6194, + [6685] = 6193, + [6686] = 6172, + [6687] = 6191, + [6688] = 6190, + [6689] = 6189, + [6690] = 6188, + [6691] = 6187, + [6692] = 6187, + [6693] = 6188, + [6694] = 6189, + [6695] = 6190, + [6696] = 6191, + [6697] = 6172, + [6698] = 6198, + [6699] = 6199, + [6700] = 6186, + [6701] = 6185, + [6702] = 6184, + [6703] = 6183, + [6704] = 6182, + [6705] = 6181, + [6706] = 6200, + [6707] = 6179, + [6708] = 6178, + [6709] = 6177, + [6710] = 6176, + [6711] = 6175, + [6712] = 6174, + [6713] = 6173, + [6714] = 6046, + [6715] = 6171, + [6716] = 6207, + [6717] = 6201, + [6718] = 6200, + [6719] = 6199, + [6720] = 6198, [6721] = 6201, - [6722] = 6201, - [6723] = 6202, - [6724] = 6171, - [6725] = 6204, - [6726] = 6205, + [6722] = 6207, + [6723] = 6194, + [6724] = 6195, + [6725] = 6196, + [6726] = 6171, [6727] = 6173, [6728] = 6174, [6729] = 6175, - [6730] = 6176, - [6731] = 6188, - [6732] = 6177, - [6733] = 6188, - [6734] = 6178, - [6735] = 6189, + [6730] = 6730, + [6731] = 6193, + [6732] = 1325, + [6733] = 6176, + [6734] = 6177, + [6735] = 6178, [6736] = 6179, [6737] = 6180, - [6738] = 6197, - [6739] = 6196, - [6740] = 6195, - [6741] = 6194, - [6742] = 6172, - [6743] = 6192, - [6744] = 6191, - [6745] = 6190, - [6746] = 6189, - [6747] = 6185, - [6748] = 6748, - [6749] = 6181, - [6750] = 6187, - [6751] = 6186, - [6752] = 6185, - [6753] = 6184, - [6754] = 6183, - [6755] = 6182, + [6738] = 6181, + [6739] = 6186, + [6740] = 6182, + [6741] = 6196, + [6742] = 6195, + [6743] = 6194, + [6744] = 6193, + [6745] = 6172, + [6746] = 6191, + [6747] = 6183, + [6748] = 6184, + [6749] = 6185, + [6750] = 6190, + [6751] = 6189, + [6752] = 6188, + [6753] = 6187, + [6754] = 6180, + [6755] = 6186, [6756] = 6756, [6757] = 6757, - [6758] = 6756, + [6758] = 6758, [6759] = 6759, [6760] = 6760, - [6761] = 6761, - [6762] = 6762, + [6761] = 6759, + [6762] = 6757, [6763] = 6763, - [6764] = 6764, - [6765] = 6764, - [6766] = 6766, - [6767] = 6761, - [6768] = 6768, - [6769] = 6757, - [6770] = 6757, - [6771] = 6756, - [6772] = 6759, - [6773] = 6762, + [6764] = 6763, + [6765] = 6763, + [6766] = 6758, + [6767] = 6758, + [6768] = 6759, + [6769] = 6763, + [6770] = 6763, + [6771] = 6763, + [6772] = 6772, + [6773] = 6773, [6774] = 6763, - [6775] = 6775, - [6776] = 6766, - [6777] = 6761, - [6778] = 6756, - [6779] = 6759, - [6780] = 6762, + [6775] = 6759, + [6776] = 6776, + [6777] = 6758, + [6778] = 6763, + [6779] = 6779, + [6780] = 6780, [6781] = 6763, [6782] = 6782, - [6783] = 6766, - [6784] = 6782, - [6785] = 6782, - [6786] = 6763, - [6787] = 6762, - [6788] = 6782, - [6789] = 6782, - [6790] = 6782, - [6791] = 6782, - [6792] = 6766, - [6793] = 6793, - [6794] = 6793, - [6795] = 6761, - [6796] = 6782, - [6797] = 6793, - [6798] = 6759, - [6799] = 6782, - [6800] = 6756, - [6801] = 6757, - [6802] = 6782, - [6803] = 6803, - [6804] = 6782, - [6805] = 6782, - [6806] = 6793, - [6807] = 6764, - [6808] = 6782, - [6809] = 6764, - [6810] = 6810, - [6811] = 6811, - [6812] = 6782, - [6813] = 6764, + [6783] = 6763, + [6784] = 6784, + [6785] = 6785, + [6786] = 6780, + [6787] = 6779, + [6788] = 6776, + [6789] = 6785, + [6790] = 6772, + [6791] = 6757, + [6792] = 6776, + [6793] = 6779, + [6794] = 6780, + [6795] = 6785, + [6796] = 6784, + [6797] = 6784, + [6798] = 6758, + [6799] = 6763, + [6800] = 6800, + [6801] = 6801, + [6802] = 6763, + [6803] = 6757, + [6804] = 6804, + [6805] = 6763, + [6806] = 6759, + [6807] = 6807, + [6808] = 6808, + [6809] = 6759, + [6810] = 6763, + [6811] = 6759, + [6812] = 6763, + [6813] = 6813, [6814] = 6814, - [6815] = 6815, - [6816] = 6782, - [6817] = 6817, - [6818] = 6793, - [6819] = 6757, + [6815] = 6763, + [6816] = 6816, + [6817] = 6757, + [6818] = 6772, + [6819] = 6772, [6820] = 6820, - [6821] = 6782, + [6821] = 6821, [6822] = 6822, - [6823] = 6759, - [6824] = 6824, - [6825] = 6764, - [6826] = 6826, - [6827] = 6827, - [6828] = 6828, - [6829] = 6829, - [6830] = 6764, - [6831] = 6764, - [6832] = 6757, - [6833] = 6756, - [6834] = 6782, - [6835] = 6763, - [6836] = 6764, - [6837] = 6782, - [6838] = 6793, - [6839] = 6839, - [6840] = 6759, - [6841] = 6762, - [6842] = 6764, - [6843] = 6762, - [6844] = 6763, - [6845] = 6764, + [6823] = 6823, + [6824] = 6759, + [6825] = 6772, + [6826] = 6759, + [6827] = 6776, + [6828] = 6779, + [6829] = 6780, + [6830] = 6785, + [6831] = 6784, + [6832] = 6758, + [6833] = 6833, + [6834] = 6763, + [6835] = 6835, + [6836] = 6784, + [6837] = 6759, + [6838] = 6785, + [6839] = 6759, + [6840] = 6780, + [6841] = 6779, + [6842] = 6776, + [6843] = 6763, + [6844] = 6772, + [6845] = 6757, [6846] = 6846, - [6847] = 6764, - [6848] = 6766, - [6849] = 6761, - [6850] = 6766, - [6851] = 6761, - [6852] = 6852, - [6853] = 6853, + [6847] = 6847, + [6848] = 6779, + [6849] = 6759, + [6850] = 6780, + [6851] = 6776, + [6852] = 6785, + [6853] = 6784, [6854] = 6854, [6855] = 6855, [6856] = 6855, - [6857] = 6857, + [6857] = 6854, [6858] = 6858, [6859] = 6859, [6860] = 6860, [6861] = 6861, - [6862] = 6862, - [6863] = 6863, - [6864] = 6864, + [6862] = 913, + [6863] = 925, + [6864] = 924, [6865] = 6858, - [6866] = 6854, - [6867] = 6858, - [6868] = 6854, - [6869] = 6858, - [6870] = 6857, - [6871] = 6854, - [6872] = 6863, - [6873] = 6857, - [6874] = 6857, - [6875] = 6875, - [6876] = 6875, - [6877] = 6855, - [6878] = 6860, - [6879] = 6859, - [6880] = 6875, - [6881] = 916, - [6882] = 6882, - [6883] = 6883, - [6884] = 6882, + [6866] = 6860, + [6867] = 6867, + [6868] = 914, + [6869] = 6869, + [6870] = 915, + [6871] = 916, + [6872] = 6855, + [6873] = 6873, + [6874] = 6869, + [6875] = 6858, + [6876] = 6854, + [6877] = 6854, + [6878] = 6855, + [6879] = 6879, + [6880] = 6855, + [6881] = 6867, + [6882] = 6867, + [6883] = 6859, + [6884] = 6884, [6885] = 6859, - [6886] = 919, - [6887] = 918, + [6886] = 6884, + [6887] = 6869, [6888] = 6855, - [6889] = 6857, - [6890] = 917, - [6891] = 6858, - [6892] = 915, - [6893] = 6854, - [6894] = 6860, - [6895] = 6864, - [6896] = 6854, - [6897] = 6855, - [6898] = 6863, - [6899] = 6854, - [6900] = 6863, - [6901] = 6861, - [6902] = 6864, - [6903] = 6882, + [6889] = 6854, + [6890] = 6890, + [6891] = 6891, + [6892] = 6867, + [6893] = 6858, + [6894] = 6867, + [6895] = 6861, + [6896] = 6860, + [6897] = 6861, + [6898] = 6869, + [6899] = 6867, + [6900] = 6879, + [6901] = 6869, + [6902] = 6869, + [6903] = 6884, [6904] = 6859, - [6905] = 6905, + [6905] = 6869, [6906] = 6860, [6907] = 6858, [6908] = 6908, - [6909] = 6855, - [6910] = 6882, + [6909] = 6909, + [6910] = 6884, [6911] = 6859, - [6912] = 6857, - [6913] = 6857, - [6914] = 6854, - [6915] = 6864, - [6916] = 6882, - [6917] = 6882, + [6912] = 6861, + [6913] = 6879, + [6914] = 6914, + [6915] = 6861, + [6916] = 6884, + [6917] = 6884, [6918] = 6859, - [6919] = 6863, - [6920] = 6855, - [6921] = 6858, - [6922] = 6857, - [6923] = 6864, - [6924] = 6882, + [6919] = 6861, + [6920] = 6854, + [6921] = 6855, + [6922] = 6858, + [6923] = 6914, + [6924] = 6884, [6925] = 6859, - [6926] = 6858, - [6927] = 6863, - [6928] = 6860, - [6929] = 6861, + [6926] = 6860, + [6927] = 6855, + [6928] = 6854, + [6929] = 6869, [6930] = 6930, - [6931] = 6882, + [6931] = 6884, [6932] = 6859, - [6933] = 6860, - [6934] = 6875, - [6935] = 914, - [6936] = 6864, - [6937] = 6854, - [6938] = 6882, + [6933] = 6867, + [6934] = 6869, + [6935] = 6858, + [6936] = 6860, + [6937] = 6861, + [6938] = 6884, [6939] = 6859, - [6940] = 6855, - [6941] = 6854, - [6942] = 6857, - [6943] = 6858, - [6944] = 6875, - [6945] = 6882, + [6940] = 6867, + [6941] = 6867, + [6942] = 6867, + [6943] = 6869, + [6944] = 6879, + [6945] = 6884, [6946] = 6859, - [6947] = 6860, - [6948] = 6855, + [6947] = 6947, + [6948] = 6858, [6949] = 6860, - [6950] = 6860, - [6951] = 6864, - [6952] = 6882, + [6950] = 6950, + [6951] = 6861, + [6952] = 6884, [6953] = 6859, - [6954] = 6863, - [6955] = 6863, - [6956] = 6864, - [6957] = 6854, - [6958] = 6863, - [6959] = 6882, + [6954] = 6867, + [6955] = 6869, + [6956] = 6861, + [6957] = 6860, + [6958] = 6867, + [6959] = 6884, [6960] = 6859, - [6961] = 921, - [6962] = 6860, + [6961] = 918, + [6962] = 6854, [6963] = 6854, - [6964] = 6864, - [6965] = 6864, + [6964] = 6855, + [6965] = 6858, [6966] = 6860, - [6967] = 6863, - [6968] = 6864, - [6969] = 6969, - [6970] = 6970, - [6971] = 6858, - [6972] = 6972, - [6973] = 6857, - [6974] = 6864, - [6975] = 6863, - [6976] = 6860, - [6977] = 6855, - [6978] = 6875, + [6967] = 6855, + [6968] = 6854, + [6969] = 6858, + [6970] = 6860, + [6971] = 6879, + [6972] = 6914, + [6973] = 6861, + [6974] = 6879, + [6975] = 6861, + [6976] = 6855, + [6977] = 6860, + [6978] = 6854, [6979] = 6858, [6980] = 6858, - [6981] = 6857, - [6982] = 6855, - [6983] = 6857, - [6984] = 6855, - [6985] = 6863, + [6981] = 6861, + [6982] = 6860, + [6983] = 6869, + [6984] = 6854, + [6985] = 6855, }; static inline bool aux_sym_identifier_token1_character_set_1(int32_t c) { @@ -18614,10 +18613,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(544); END_STATE(); case 33: - if (lookahead == '\n') SKIP(124) + if (lookahead == '\n') SKIP(125) END_STATE(); case 34: - if (lookahead == '\n') SKIP(124) + if (lookahead == '\n') SKIP(125) if (lookahead == '\r') SKIP(33) if (lookahead == '\\') ADVANCE(544); END_STATE(); @@ -18777,7 +18776,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(430); if (lookahead == '#') ADVANCE(659); - if (lookahead == '\'') ADVANCE(432); + if (lookahead == '\'') ADVANCE(152); if (lookahead == ')') ADVANCE(306); if (lookahead == '/') ADVANCE(453); if (lookahead == '>') ADVANCE(445); @@ -18803,7 +18802,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(147); if (lookahead == '#') ADVANCE(659); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '\'') ADVANCE(432); if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || lookahead == ' ') SKIP(64) @@ -20045,7 +20044,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == ')') ADVANCE(306); if (lookahead == '*') ADVANCE(624); if (lookahead == '+') ADVANCE(524); if (lookahead == ',') ADVANCE(505); @@ -20057,26 +20055,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); if (lookahead == '>') ADVANCE(449); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(34); - if (lookahead == ']') ADVANCE(440); if (lookahead == '^') ADVANCE(203); - if (lookahead == 'a') ADVANCE(218); - if (lookahead == 'i') ADVANCE(219); - if (lookahead == 'o') ADVANCE(224); - if (lookahead == 'w') ADVANCE(216); - if (lookahead == '{') ADVANCE(436); + if (lookahead == 'a') ADVANCE(492); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'e') ADVANCE(495); + if (lookahead == 'i') ADVANCE(493); + if (lookahead == 'o') ADVANCE(497); + if (lookahead == 'w') ADVANCE(490); if (lookahead == '|') ADVANCE(452); - if (lookahead == '}') ADVANCE(438); if (lookahead == '~') ADVANCE(191); if (lookahead == '\t' || - lookahead == ' ') SKIP(124) + lookahead == ' ') SKIP(125) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(504); END_STATE(); case 125: - if (lookahead == '\n') ADVANCE(297); - END_STATE(); - case 126: - if (lookahead == '\n') ADVANCE(297); - if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\n') ADVANCE(296); + if (lookahead == '\r') ADVANCE(123); if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); @@ -20091,29 +20089,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); if (lookahead == '>') ADVANCE(449); - if (lookahead == '[') ADVANCE(658); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '\\') ADVANCE(34); if (lookahead == '^') ADVANCE(203); - if (lookahead == 'a') ADVANCE(492); - if (lookahead == 'd') ADVANCE(496); - if (lookahead == 'e') ADVANCE(495); - if (lookahead == 'i') ADVANCE(493); - if (lookahead == 'o') ADVANCE(497); - if (lookahead == 'w') ADVANCE(490); + if (lookahead == 'a') ADVANCE(218); + if (lookahead == 'd') ADVANCE(222); + if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'i') ADVANCE(219); + if (lookahead == 'o') ADVANCE(224); + if (lookahead == 'w') ADVANCE(216); if (lookahead == '|') ADVANCE(452); if (lookahead == '~') ADVANCE(191); if (lookahead == '\t' || - lookahead == ' ') SKIP(127) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(504); + lookahead == ' ') SKIP(125) + END_STATE(); + case 126: + if (lookahead == '\n') ADVANCE(297); END_STATE(); case 127: if (lookahead == '\n') ADVANCE(297); - if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(306); if (lookahead == '*') ADVANCE(624); if (lookahead == '+') ADVANCE(524); if (lookahead == ',') ADVANCE(505); @@ -20126,14 +20124,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(555); if (lookahead == '>') ADVANCE(449); if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(440); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(218); - if (lookahead == 'd') ADVANCE(222); - if (lookahead == 'e') ADVANCE(221); if (lookahead == 'i') ADVANCE(219); if (lookahead == 'o') ADVANCE(224); if (lookahead == 'w') ADVANCE(216); + if (lookahead == '{') ADVANCE(436); if (lookahead == '|') ADVANCE(452); + if (lookahead == '}') ADVANCE(438); if (lookahead == '~') ADVANCE(191); if (lookahead == '\t' || lookahead == ' ') SKIP(127) @@ -20209,22 +20208,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == ')') ADVANCE(306); if (lookahead == '*') ADVANCE(624); if (lookahead == '+') ADVANCE(524); if (lookahead == ',') ADVANCE(505); - if (lookahead == '-') ADVANCE(528); + if (lookahead == '-') ADVANCE(527); if (lookahead == '.') ADVANCE(630); if (lookahead == '/') ADVANCE(456); if (lookahead == ':') ADVANCE(181); - if (lookahead == ';') ADVANCE(304); if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); - if (lookahead == '>') ADVANCE(449); + if (lookahead == '>') ADVANCE(448); if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(40); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(492); + if (lookahead == 'd') ADVANCE(496); if (lookahead == 'i') ADVANCE(493); if (lookahead == 'o') ADVANCE(497); if (lookahead == 'w') ADVANCE(490); @@ -20242,21 +20240,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == ')') ADVANCE(306); if (lookahead == '*') ADVANCE(624); if (lookahead == '+') ADVANCE(524); if (lookahead == ',') ADVANCE(505); - if (lookahead == '-') ADVANCE(528); + if (lookahead == '-') ADVANCE(527); if (lookahead == '.') ADVANCE(630); if (lookahead == '/') ADVANCE(456); if (lookahead == ':') ADVANCE(181); - if (lookahead == ';') ADVANCE(304); if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); - if (lookahead == '>') ADVANCE(449); + if (lookahead == '>') ADVANCE(448); if (lookahead == '\\') ADVANCE(40); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(218); + if (lookahead == 'd') ADVANCE(222); if (lookahead == 'i') ADVANCE(219); if (lookahead == 'o') ADVANCE(224); if (lookahead == 'w') ADVANCE(216); @@ -20274,21 +20271,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(306); if (lookahead == '*') ADVANCE(624); if (lookahead == '+') ADVANCE(524); if (lookahead == ',') ADVANCE(505); - if (lookahead == '-') ADVANCE(527); + if (lookahead == '-') ADVANCE(528); if (lookahead == '.') ADVANCE(630); if (lookahead == '/') ADVANCE(456); if (lookahead == ':') ADVANCE(181); + if (lookahead == ';') ADVANCE(304); if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); - if (lookahead == '>') ADVANCE(448); + if (lookahead == '>') ADVANCE(449); if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(42); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(492); - if (lookahead == 'd') ADVANCE(496); if (lookahead == 'i') ADVANCE(493); if (lookahead == 'o') ADVANCE(497); if (lookahead == 'w') ADVANCE(490); @@ -20306,20 +20304,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(306); if (lookahead == '*') ADVANCE(624); if (lookahead == '+') ADVANCE(524); if (lookahead == ',') ADVANCE(505); - if (lookahead == '-') ADVANCE(527); + if (lookahead == '-') ADVANCE(528); if (lookahead == '.') ADVANCE(630); if (lookahead == '/') ADVANCE(456); if (lookahead == ':') ADVANCE(181); + if (lookahead == ';') ADVANCE(304); if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); - if (lookahead == '>') ADVANCE(448); + if (lookahead == '>') ADVANCE(449); if (lookahead == '\\') ADVANCE(42); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(218); - if (lookahead == 'd') ADVANCE(222); if (lookahead == 'i') ADVANCE(219); if (lookahead == 'o') ADVANCE(224); if (lookahead == 'w') ADVANCE(216); @@ -20506,9 +20505,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(234); if (lookahead == '|') ADVANCE(424); if (lookahead == '~') ADVANCE(187); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(507); if (sym_keyword_character_set_3(lookahead)) ADVANCE(428); END_STATE(); @@ -20591,9 +20588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 162: if (lookahead == '.') ADVANCE(249); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(162); END_STATE(); case 163: @@ -20673,9 +20668,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 182: if (lookahead == ':') ADVANCE(550); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(507); END_STATE(); case 183: @@ -20906,15 +20899,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '~') ADVANCE(175); END_STATE(); case 248: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(506); END_STATE(); case 249: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(249); if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(386); END_STATE(); @@ -21363,8 +21352,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 271: if (eof) ADVANCE(273); - if (lookahead == '\n') ADVANCE(296); - if (lookahead == '\r') ADVANCE(123); + if (lookahead == '\n') ADVANCE(297); + if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); @@ -21381,7 +21370,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(555); if (lookahead == '>') ADVANCE(449); if (lookahead == '[') ADVANCE(658); - if (lookahead == '\\') ADVANCE(34); + if (lookahead == '\\') ADVANCE(36); if (lookahead == ']') ADVANCE(440); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(492); @@ -21400,8 +21389,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 272: if (eof) ADVANCE(273); - if (lookahead == '\n') ADVANCE(296); - if (lookahead == '\r') ADVANCE(123); + if (lookahead == '\n') ADVANCE(297); + if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(184); if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); @@ -21417,7 +21406,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(444); if (lookahead == '=') ADVANCE(555); if (lookahead == '>') ADVANCE(449); - if (lookahead == '\\') ADVANCE(34); + if (lookahead == '\\') ADVANCE(36); if (lookahead == ']') ADVANCE(440); if (lookahead == '^') ADVANCE(203); if (lookahead == 'a') ADVANCE(218); @@ -21574,7 +21563,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 297: ACCEPT_TOKEN(aux_sym__terminator_token1); if (lookahead == '\n') ADVANCE(297); - if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\r') ADVANCE(126); if (lookahead == '\\') ADVANCE(36); END_STATE(); case 298: @@ -22240,9 +22229,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(248); if (lookahead == '!' || lookahead == '?') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -22253,9 +22240,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 386: ACCEPT_TOKEN(sym_alias); if (lookahead == '.') ADVANCE(249); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -23932,7 +23917,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [262] = {.lex_state = 96, .external_lex_state = 2}, [263] = {.lex_state = 94, .external_lex_state = 2}, [264] = {.lex_state = 92, .external_lex_state = 2}, - [265] = {.lex_state = 263, .external_lex_state = 2}, + [265] = {.lex_state = 92, .external_lex_state = 2}, [266] = {.lex_state = 92, .external_lex_state = 2}, [267] = {.lex_state = 92, .external_lex_state = 2}, [268] = {.lex_state = 92, .external_lex_state = 2}, @@ -23943,13 +23928,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [273] = {.lex_state = 92, .external_lex_state = 2}, [274] = {.lex_state = 92, .external_lex_state = 2}, [275] = {.lex_state = 92, .external_lex_state = 2}, - [276] = {.lex_state = 92, .external_lex_state = 2}, + [276] = {.lex_state = 263, .external_lex_state = 2}, [277] = {.lex_state = 92, .external_lex_state = 2}, [278] = {.lex_state = 92, .external_lex_state = 2}, [279] = {.lex_state = 92, .external_lex_state = 2}, [280] = {.lex_state = 92, .external_lex_state = 2}, [281] = {.lex_state = 92, .external_lex_state = 2}, - [282] = {.lex_state = 98, .external_lex_state = 2}, + [282] = {.lex_state = 94, .external_lex_state = 2}, [283] = {.lex_state = 92, .external_lex_state = 2}, [284] = {.lex_state = 92, .external_lex_state = 2}, [285] = {.lex_state = 98, .external_lex_state = 2}, @@ -23962,7 +23947,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [292] = {.lex_state = 92, .external_lex_state = 2}, [293] = {.lex_state = 92, .external_lex_state = 2}, [294] = {.lex_state = 94, .external_lex_state = 2}, - [295] = {.lex_state = 94, .external_lex_state = 2}, + [295] = {.lex_state = 92, .external_lex_state = 2}, [296] = {.lex_state = 92, .external_lex_state = 2}, [297] = {.lex_state = 92, .external_lex_state = 2}, [298] = {.lex_state = 94, .external_lex_state = 2}, @@ -23971,7 +23956,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [301] = {.lex_state = 92, .external_lex_state = 2}, [302] = {.lex_state = 92, .external_lex_state = 2}, [303] = {.lex_state = 94, .external_lex_state = 2}, - [304] = {.lex_state = 92, .external_lex_state = 2}, + [304] = {.lex_state = 98, .external_lex_state = 2}, [305] = {.lex_state = 92, .external_lex_state = 2}, [306] = {.lex_state = 92, .external_lex_state = 2}, [307] = {.lex_state = 92, .external_lex_state = 2}, @@ -24612,48 +24597,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [942] = {.lex_state = 265, .external_lex_state = 3}, [943] = {.lex_state = 265, .external_lex_state = 3}, [944] = {.lex_state = 265, .external_lex_state = 3}, - [945] = {.lex_state = 265, .external_lex_state = 3}, + [945] = {.lex_state = 86, .external_lex_state = 3}, [946] = {.lex_state = 265, .external_lex_state = 3}, [947] = {.lex_state = 265, .external_lex_state = 3}, - [948] = {.lex_state = 86, .external_lex_state = 3}, - [949] = {.lex_state = 86, .external_lex_state = 3}, + [948] = {.lex_state = 265, .external_lex_state = 3}, + [949] = {.lex_state = 265, .external_lex_state = 3}, [950] = {.lex_state = 86, .external_lex_state = 3}, - [951] = {.lex_state = 265, .external_lex_state = 3}, + [951] = {.lex_state = 86, .external_lex_state = 3}, [952] = {.lex_state = 265, .external_lex_state = 3}, - [953] = {.lex_state = 265, .external_lex_state = 3}, + [953] = {.lex_state = 86, .external_lex_state = 3}, [954] = {.lex_state = 265, .external_lex_state = 3}, - [955] = {.lex_state = 265, .external_lex_state = 3}, - [956] = {.lex_state = 265, .external_lex_state = 3}, - [957] = {.lex_state = 265, .external_lex_state = 3}, + [955] = {.lex_state = 86, .external_lex_state = 3}, + [956] = {.lex_state = 86, .external_lex_state = 3}, + [957] = {.lex_state = 86, .external_lex_state = 3}, [958] = {.lex_state = 265, .external_lex_state = 3}, - [959] = {.lex_state = 86, .external_lex_state = 3}, + [959] = {.lex_state = 265, .external_lex_state = 3}, [960] = {.lex_state = 86, .external_lex_state = 3}, - [961] = {.lex_state = 86, .external_lex_state = 3}, - [962] = {.lex_state = 86, .external_lex_state = 3}, + [961] = {.lex_state = 265, .external_lex_state = 3}, + [962] = {.lex_state = 265, .external_lex_state = 3}, [963] = {.lex_state = 265, .external_lex_state = 3}, - [964] = {.lex_state = 86, .external_lex_state = 3}, + [964] = {.lex_state = 265, .external_lex_state = 3}, [965] = {.lex_state = 265, .external_lex_state = 3}, - [966] = {.lex_state = 86, .external_lex_state = 3}, - [967] = {.lex_state = 86, .external_lex_state = 3}, - [968] = {.lex_state = 86, .external_lex_state = 3}, - [969] = {.lex_state = 86, .external_lex_state = 3}, + [966] = {.lex_state = 265, .external_lex_state = 3}, + [967] = {.lex_state = 265, .external_lex_state = 3}, + [968] = {.lex_state = 265, .external_lex_state = 3}, + [969] = {.lex_state = 265, .external_lex_state = 3}, [970] = {.lex_state = 86, .external_lex_state = 3}, [971] = {.lex_state = 265, .external_lex_state = 3}, - [972] = {.lex_state = 265, .external_lex_state = 3}, + [972] = {.lex_state = 86, .external_lex_state = 3}, [973] = {.lex_state = 265, .external_lex_state = 3}, [974] = {.lex_state = 265, .external_lex_state = 3}, [975] = {.lex_state = 265, .external_lex_state = 3}, [976] = {.lex_state = 265, .external_lex_state = 3}, - [977] = {.lex_state = 265, .external_lex_state = 3}, + [977] = {.lex_state = 86, .external_lex_state = 3}, [978] = {.lex_state = 265, .external_lex_state = 3}, [979] = {.lex_state = 265, .external_lex_state = 3}, - [980] = {.lex_state = 265, .external_lex_state = 3}, - [981] = {.lex_state = 265, .external_lex_state = 3}, - [982] = {.lex_state = 265, .external_lex_state = 2}, - [983] = {.lex_state = 265, .external_lex_state = 3}, - [984] = {.lex_state = 265, .external_lex_state = 3}, - [985] = {.lex_state = 86, .external_lex_state = 3}, - [986] = {.lex_state = 86, .external_lex_state = 3}, + [980] = {.lex_state = 86, .external_lex_state = 3}, + [981] = {.lex_state = 86, .external_lex_state = 3}, + [982] = {.lex_state = 86, .external_lex_state = 3}, + [983] = {.lex_state = 86, .external_lex_state = 3}, + [984] = {.lex_state = 86, .external_lex_state = 3}, + [985] = {.lex_state = 265, .external_lex_state = 3}, + [986] = {.lex_state = 265, .external_lex_state = 3}, [987] = {.lex_state = 265, .external_lex_state = 3}, [988] = {.lex_state = 265, .external_lex_state = 3}, [989] = {.lex_state = 265, .external_lex_state = 3}, @@ -24661,26 +24646,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [991] = {.lex_state = 265, .external_lex_state = 3}, [992] = {.lex_state = 265, .external_lex_state = 3}, [993] = {.lex_state = 265, .external_lex_state = 3}, - [994] = {.lex_state = 265, .external_lex_state = 3}, - [995] = {.lex_state = 86, .external_lex_state = 3}, - [996] = {.lex_state = 86, .external_lex_state = 3}, + [994] = {.lex_state = 86, .external_lex_state = 3}, + [995] = {.lex_state = 265, .external_lex_state = 2}, + [996] = {.lex_state = 265, .external_lex_state = 3}, [997] = {.lex_state = 89, .external_lex_state = 3}, [998] = {.lex_state = 89, .external_lex_state = 3}, [999] = {.lex_state = 89, .external_lex_state = 3}, [1000] = {.lex_state = 89, .external_lex_state = 3}, [1001] = {.lex_state = 89, .external_lex_state = 3}, [1002] = {.lex_state = 89, .external_lex_state = 3}, - [1003] = {.lex_state = 265, .external_lex_state = 2}, - [1004] = {.lex_state = 265, .external_lex_state = 2}, + [1003] = {.lex_state = 89, .external_lex_state = 3}, + [1004] = {.lex_state = 89, .external_lex_state = 3}, [1005] = {.lex_state = 89, .external_lex_state = 3}, [1006] = {.lex_state = 89, .external_lex_state = 3}, [1007] = {.lex_state = 89, .external_lex_state = 3}, - [1008] = {.lex_state = 89, .external_lex_state = 3}, + [1008] = {.lex_state = 265, .external_lex_state = 2}, [1009] = {.lex_state = 89, .external_lex_state = 3}, - [1010] = {.lex_state = 86, .external_lex_state = 2}, - [1011] = {.lex_state = 89, .external_lex_state = 3}, + [1010] = {.lex_state = 89, .external_lex_state = 3}, + [1011] = {.lex_state = 265, .external_lex_state = 2}, [1012] = {.lex_state = 89, .external_lex_state = 3}, - [1013] = {.lex_state = 89, .external_lex_state = 3}, + [1013] = {.lex_state = 86, .external_lex_state = 2}, [1014] = {.lex_state = 89, .external_lex_state = 3}, [1015] = {.lex_state = 89, .external_lex_state = 3}, [1016] = {.lex_state = 89, .external_lex_state = 3}, @@ -24695,16 +24680,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1025] = {.lex_state = 94, .external_lex_state = 2}, [1026] = {.lex_state = 92, .external_lex_state = 2}, [1027] = {.lex_state = 92, .external_lex_state = 2}, - [1028] = {.lex_state = 98, .external_lex_state = 2}, - [1029] = {.lex_state = 263, .external_lex_state = 2}, + [1028] = {.lex_state = 263, .external_lex_state = 2}, + [1029] = {.lex_state = 98, .external_lex_state = 2}, [1030] = {.lex_state = 263, .external_lex_state = 2}, [1031] = {.lex_state = 263, .external_lex_state = 2}, - [1032] = {.lex_state = 98, .external_lex_state = 2}, - [1033] = {.lex_state = 263, .external_lex_state = 2}, + [1032] = {.lex_state = 263, .external_lex_state = 2}, + [1033] = {.lex_state = 98, .external_lex_state = 2}, [1034] = {.lex_state = 263, .external_lex_state = 2}, [1035] = {.lex_state = 98, .external_lex_state = 2}, - [1036] = {.lex_state = 263, .external_lex_state = 2}, - [1037] = {.lex_state = 92, .external_lex_state = 2}, + [1036] = {.lex_state = 92, .external_lex_state = 2}, + [1037] = {.lex_state = 263, .external_lex_state = 2}, [1038] = {.lex_state = 263, .external_lex_state = 2}, [1039] = {.lex_state = 263, .external_lex_state = 2}, [1040] = {.lex_state = 263, .external_lex_state = 2}, @@ -24760,38 +24745,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 102, .external_lex_state = 5}, [1091] = {.lex_state = 102, .external_lex_state = 5}, [1092] = {.lex_state = 102, .external_lex_state = 5}, - [1093] = {.lex_state = 102, .external_lex_state = 5}, - [1094] = {.lex_state = 102, .external_lex_state = 5}, - [1095] = {.lex_state = 102, .external_lex_state = 4}, + [1093] = {.lex_state = 102, .external_lex_state = 4}, + [1094] = {.lex_state = 102, .external_lex_state = 4}, + [1095] = {.lex_state = 102, .external_lex_state = 5}, [1096] = {.lex_state = 102, .external_lex_state = 5}, - [1097] = {.lex_state = 267, .external_lex_state = 5}, + [1097] = {.lex_state = 102, .external_lex_state = 5}, [1098] = {.lex_state = 102, .external_lex_state = 5}, - [1099] = {.lex_state = 267, .external_lex_state = 5}, - [1100] = {.lex_state = 102, .external_lex_state = 4}, - [1101] = {.lex_state = 102, .external_lex_state = 4}, - [1102] = {.lex_state = 102, .external_lex_state = 5}, - [1103] = {.lex_state = 102, .external_lex_state = 4}, - [1104] = {.lex_state = 102, .external_lex_state = 4}, + [1099] = {.lex_state = 102, .external_lex_state = 5}, + [1100] = {.lex_state = 102, .external_lex_state = 5}, + [1101] = {.lex_state = 102, .external_lex_state = 5}, + [1102] = {.lex_state = 267, .external_lex_state = 5}, + [1103] = {.lex_state = 267, .external_lex_state = 5}, + [1104] = {.lex_state = 102, .external_lex_state = 5}, [1105] = {.lex_state = 102, .external_lex_state = 5}, - [1106] = {.lex_state = 102, .external_lex_state = 4}, - [1107] = {.lex_state = 102, .external_lex_state = 5}, - [1108] = {.lex_state = 102, .external_lex_state = 5}, - [1109] = {.lex_state = 102, .external_lex_state = 5}, - [1110] = {.lex_state = 267, .external_lex_state = 5}, - [1111] = {.lex_state = 102, .external_lex_state = 4}, + [1106] = {.lex_state = 102, .external_lex_state = 5}, + [1107] = {.lex_state = 267, .external_lex_state = 5}, + [1108] = {.lex_state = 267, .external_lex_state = 5}, + [1109] = {.lex_state = 267, .external_lex_state = 5}, + [1110] = {.lex_state = 102, .external_lex_state = 4}, + [1111] = {.lex_state = 102, .external_lex_state = 5}, [1112] = {.lex_state = 102, .external_lex_state = 5}, [1113] = {.lex_state = 102, .external_lex_state = 4}, - [1114] = {.lex_state = 102, .external_lex_state = 5}, - [1115] = {.lex_state = 267, .external_lex_state = 5}, - [1116] = {.lex_state = 102, .external_lex_state = 5}, + [1114] = {.lex_state = 102, .external_lex_state = 4}, + [1115] = {.lex_state = 102, .external_lex_state = 4}, + [1116] = {.lex_state = 102, .external_lex_state = 4}, [1117] = {.lex_state = 102, .external_lex_state = 5}, - [1118] = {.lex_state = 102, .external_lex_state = 5}, + [1118] = {.lex_state = 102, .external_lex_state = 4}, [1119] = {.lex_state = 102, .external_lex_state = 5}, [1120] = {.lex_state = 102, .external_lex_state = 5}, [1121] = {.lex_state = 102, .external_lex_state = 5}, [1122] = {.lex_state = 102, .external_lex_state = 5}, [1123] = {.lex_state = 102, .external_lex_state = 5}, - [1124] = {.lex_state = 102, .external_lex_state = 5}, + [1124] = {.lex_state = 267, .external_lex_state = 5}, [1125] = {.lex_state = 102, .external_lex_state = 5}, [1126] = {.lex_state = 102, .external_lex_state = 5}, [1127] = {.lex_state = 102, .external_lex_state = 5}, @@ -24799,194 +24784,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1129] = {.lex_state = 102, .external_lex_state = 5}, [1130] = {.lex_state = 102, .external_lex_state = 5}, [1131] = {.lex_state = 102, .external_lex_state = 5}, - [1132] = {.lex_state = 102, .external_lex_state = 5}, - [1133] = {.lex_state = 267, .external_lex_state = 5}, - [1134] = {.lex_state = 267, .external_lex_state = 5}, + [1132] = {.lex_state = 267, .external_lex_state = 5}, + [1133] = {.lex_state = 102, .external_lex_state = 5}, + [1134] = {.lex_state = 102, .external_lex_state = 5}, [1135] = {.lex_state = 102, .external_lex_state = 5}, [1136] = {.lex_state = 102, .external_lex_state = 5}, - [1137] = {.lex_state = 267, .external_lex_state = 5}, + [1137] = {.lex_state = 102, .external_lex_state = 5}, [1138] = {.lex_state = 102, .external_lex_state = 5}, - [1139] = {.lex_state = 107, .external_lex_state = 5}, - [1140] = {.lex_state = 107, .external_lex_state = 5}, - [1141] = {.lex_state = 107, .external_lex_state = 5}, - [1142] = {.lex_state = 107, .external_lex_state = 5}, - [1143] = {.lex_state = 107, .external_lex_state = 5}, - [1144] = {.lex_state = 107, .external_lex_state = 5}, - [1145] = {.lex_state = 107, .external_lex_state = 5}, + [1139] = {.lex_state = 102, .external_lex_state = 5}, + [1140] = {.lex_state = 102, .external_lex_state = 5}, + [1141] = {.lex_state = 102, .external_lex_state = 5}, + [1142] = {.lex_state = 102, .external_lex_state = 5}, + [1143] = {.lex_state = 102, .external_lex_state = 5}, + [1144] = {.lex_state = 102, .external_lex_state = 5}, + [1145] = {.lex_state = 102, .external_lex_state = 5}, [1146] = {.lex_state = 107, .external_lex_state = 5}, [1147] = {.lex_state = 107, .external_lex_state = 5}, [1148] = {.lex_state = 107, .external_lex_state = 5}, - [1149] = {.lex_state = 102, .external_lex_state = 5}, - [1150] = {.lex_state = 102, .external_lex_state = 5}, - [1151] = {.lex_state = 102, .external_lex_state = 5}, - [1152] = {.lex_state = 102, .external_lex_state = 5}, + [1149] = {.lex_state = 107, .external_lex_state = 5}, + [1150] = {.lex_state = 107, .external_lex_state = 5}, + [1151] = {.lex_state = 107, .external_lex_state = 5}, + [1152] = {.lex_state = 107, .external_lex_state = 5}, [1153] = {.lex_state = 102, .external_lex_state = 5}, - [1154] = {.lex_state = 102, .external_lex_state = 5}, + [1154] = {.lex_state = 107, .external_lex_state = 5}, [1155] = {.lex_state = 107, .external_lex_state = 5}, - [1156] = {.lex_state = 107, .external_lex_state = 5}, - [1157] = {.lex_state = 102, .external_lex_state = 5}, + [1156] = {.lex_state = 102, .external_lex_state = 5}, + [1157] = {.lex_state = 107, .external_lex_state = 5}, [1158] = {.lex_state = 102, .external_lex_state = 5}, [1159] = {.lex_state = 102, .external_lex_state = 5}, - [1160] = {.lex_state = 102, .external_lex_state = 5}, + [1160] = {.lex_state = 107, .external_lex_state = 5}, [1161] = {.lex_state = 102, .external_lex_state = 5}, - [1162] = {.lex_state = 102, .external_lex_state = 5}, - [1163] = {.lex_state = 107, .external_lex_state = 5}, - [1164] = {.lex_state = 107, .external_lex_state = 5}, - [1165] = {.lex_state = 102, .external_lex_state = 5}, - [1166] = {.lex_state = 102, .external_lex_state = 5}, - [1167] = {.lex_state = 102, .external_lex_state = 5}, - [1168] = {.lex_state = 102, .external_lex_state = 5}, - [1169] = {.lex_state = 267, .external_lex_state = 5}, - [1170] = {.lex_state = 267, .external_lex_state = 5}, + [1162] = {.lex_state = 267, .external_lex_state = 5}, + [1163] = {.lex_state = 267, .external_lex_state = 5}, + [1164] = {.lex_state = 267, .external_lex_state = 5}, + [1165] = {.lex_state = 267, .external_lex_state = 5}, + [1166] = {.lex_state = 107, .external_lex_state = 5}, + [1167] = {.lex_state = 107, .external_lex_state = 5}, + [1168] = {.lex_state = 107, .external_lex_state = 5}, + [1169] = {.lex_state = 107, .external_lex_state = 5}, + [1170] = {.lex_state = 107, .external_lex_state = 5}, [1171] = {.lex_state = 107, .external_lex_state = 5}, [1172] = {.lex_state = 107, .external_lex_state = 5}, [1173] = {.lex_state = 107, .external_lex_state = 5}, [1174] = {.lex_state = 107, .external_lex_state = 5}, - [1175] = {.lex_state = 107, .external_lex_state = 5}, + [1175] = {.lex_state = 102, .external_lex_state = 5}, [1176] = {.lex_state = 107, .external_lex_state = 5}, [1177] = {.lex_state = 107, .external_lex_state = 5}, - [1178] = {.lex_state = 102, .external_lex_state = 5}, - [1179] = {.lex_state = 107, .external_lex_state = 5}, + [1178] = {.lex_state = 107, .external_lex_state = 5}, + [1179] = {.lex_state = 102, .external_lex_state = 5}, [1180] = {.lex_state = 107, .external_lex_state = 5}, - [1181] = {.lex_state = 267, .external_lex_state = 5}, + [1181] = {.lex_state = 107, .external_lex_state = 5}, [1182] = {.lex_state = 102, .external_lex_state = 5}, - [1183] = {.lex_state = 267, .external_lex_state = 5}, - [1184] = {.lex_state = 107, .external_lex_state = 5}, - [1185] = {.lex_state = 107, .external_lex_state = 5}, - [1186] = {.lex_state = 102, .external_lex_state = 5}, - [1187] = {.lex_state = 267, .external_lex_state = 5}, - [1188] = {.lex_state = 267, .external_lex_state = 5}, - [1189] = {.lex_state = 107, .external_lex_state = 5}, - [1190] = {.lex_state = 267, .external_lex_state = 5}, - [1191] = {.lex_state = 102, .external_lex_state = 5}, - [1192] = {.lex_state = 107, .external_lex_state = 5}, + [1183] = {.lex_state = 107, .external_lex_state = 5}, + [1184] = {.lex_state = 267, .external_lex_state = 5}, + [1185] = {.lex_state = 267, .external_lex_state = 5}, + [1186] = {.lex_state = 107, .external_lex_state = 5}, + [1187] = {.lex_state = 102, .external_lex_state = 5}, + [1188] = {.lex_state = 102, .external_lex_state = 5}, + [1189] = {.lex_state = 102, .external_lex_state = 5}, + [1190] = {.lex_state = 107, .external_lex_state = 5}, + [1191] = {.lex_state = 107, .external_lex_state = 5}, + [1192] = {.lex_state = 267, .external_lex_state = 5}, [1193] = {.lex_state = 267, .external_lex_state = 5}, - [1194] = {.lex_state = 267, .external_lex_state = 5}, - [1195] = {.lex_state = 267, .external_lex_state = 5}, - [1196] = {.lex_state = 267, .external_lex_state = 5}, - [1197] = {.lex_state = 102, .external_lex_state = 5}, - [1198] = {.lex_state = 102, .external_lex_state = 5}, - [1199] = {.lex_state = 102, .external_lex_state = 5}, - [1200] = {.lex_state = 102, .external_lex_state = 5}, - [1201] = {.lex_state = 102, .external_lex_state = 5}, - [1202] = {.lex_state = 267, .external_lex_state = 5}, - [1203] = {.lex_state = 102, .external_lex_state = 5}, - [1204] = {.lex_state = 267, .external_lex_state = 5}, - [1205] = {.lex_state = 267, .external_lex_state = 5}, - [1206] = {.lex_state = 267, .external_lex_state = 5}, - [1207] = {.lex_state = 267, .external_lex_state = 5}, + [1194] = {.lex_state = 107, .external_lex_state = 5}, + [1195] = {.lex_state = 107, .external_lex_state = 5}, + [1196] = {.lex_state = 107, .external_lex_state = 5}, + [1197] = {.lex_state = 107, .external_lex_state = 5}, + [1198] = {.lex_state = 107, .external_lex_state = 5}, + [1199] = {.lex_state = 107, .external_lex_state = 5}, + [1200] = {.lex_state = 107, .external_lex_state = 5}, + [1201] = {.lex_state = 107, .external_lex_state = 5}, + [1202] = {.lex_state = 107, .external_lex_state = 5}, + [1203] = {.lex_state = 107, .external_lex_state = 5}, + [1204] = {.lex_state = 102, .external_lex_state = 5}, + [1205] = {.lex_state = 107, .external_lex_state = 5}, + [1206] = {.lex_state = 107, .external_lex_state = 5}, + [1207] = {.lex_state = 107, .external_lex_state = 5}, [1208] = {.lex_state = 267, .external_lex_state = 5}, - [1209] = {.lex_state = 267, .external_lex_state = 5}, - [1210] = {.lex_state = 102, .external_lex_state = 5}, - [1211] = {.lex_state = 107, .external_lex_state = 5}, - [1212] = {.lex_state = 107, .external_lex_state = 5}, - [1213] = {.lex_state = 102, .external_lex_state = 5}, - [1214] = {.lex_state = 107, .external_lex_state = 5}, - [1215] = {.lex_state = 107, .external_lex_state = 5}, + [1209] = {.lex_state = 107, .external_lex_state = 5}, + [1210] = {.lex_state = 267, .external_lex_state = 5}, + [1211] = {.lex_state = 267, .external_lex_state = 5}, + [1212] = {.lex_state = 102, .external_lex_state = 5}, + [1213] = {.lex_state = 107, .external_lex_state = 5}, + [1214] = {.lex_state = 267, .external_lex_state = 5}, + [1215] = {.lex_state = 267, .external_lex_state = 5}, [1216] = {.lex_state = 107, .external_lex_state = 5}, [1217] = {.lex_state = 107, .external_lex_state = 5}, [1218] = {.lex_state = 102, .external_lex_state = 5}, - [1219] = {.lex_state = 102, .external_lex_state = 5}, - [1220] = {.lex_state = 267, .external_lex_state = 5}, - [1221] = {.lex_state = 267, .external_lex_state = 5}, - [1222] = {.lex_state = 102, .external_lex_state = 5}, - [1223] = {.lex_state = 267, .external_lex_state = 5}, - [1224] = {.lex_state = 267, .external_lex_state = 5}, - [1225] = {.lex_state = 267, .external_lex_state = 5}, - [1226] = {.lex_state = 102, .external_lex_state = 5}, - [1227] = {.lex_state = 102, .external_lex_state = 5}, - [1228] = {.lex_state = 102, .external_lex_state = 5}, - [1229] = {.lex_state = 102, .external_lex_state = 5}, - [1230] = {.lex_state = 267, .external_lex_state = 5}, - [1231] = {.lex_state = 267, .external_lex_state = 5}, - [1232] = {.lex_state = 267, .external_lex_state = 5}, - [1233] = {.lex_state = 267, .external_lex_state = 5}, - [1234] = {.lex_state = 102, .external_lex_state = 5}, + [1219] = {.lex_state = 267, .external_lex_state = 5}, + [1220] = {.lex_state = 102, .external_lex_state = 5}, + [1221] = {.lex_state = 102, .external_lex_state = 5}, + [1222] = {.lex_state = 107, .external_lex_state = 5}, + [1223] = {.lex_state = 102, .external_lex_state = 5}, + [1224] = {.lex_state = 107, .external_lex_state = 5}, + [1225] = {.lex_state = 107, .external_lex_state = 5}, + [1226] = {.lex_state = 107, .external_lex_state = 5}, + [1227] = {.lex_state = 102, .external_lex_state = 4}, + [1228] = {.lex_state = 102, .external_lex_state = 4}, + [1229] = {.lex_state = 102, .external_lex_state = 4}, + [1230] = {.lex_state = 107, .external_lex_state = 5}, + [1231] = {.lex_state = 107, .external_lex_state = 5}, + [1232] = {.lex_state = 107, .external_lex_state = 5}, + [1233] = {.lex_state = 107, .external_lex_state = 5}, + [1234] = {.lex_state = 107, .external_lex_state = 5}, [1235] = {.lex_state = 102, .external_lex_state = 5}, [1236] = {.lex_state = 102, .external_lex_state = 5}, [1237] = {.lex_state = 102, .external_lex_state = 5}, [1238] = {.lex_state = 102, .external_lex_state = 5}, [1239] = {.lex_state = 102, .external_lex_state = 5}, - [1240] = {.lex_state = 107, .external_lex_state = 5}, - [1241] = {.lex_state = 107, .external_lex_state = 5}, - [1242] = {.lex_state = 107, .external_lex_state = 5}, - [1243] = {.lex_state = 107, .external_lex_state = 5}, - [1244] = {.lex_state = 102, .external_lex_state = 5}, - [1245] = {.lex_state = 107, .external_lex_state = 5}, + [1240] = {.lex_state = 102, .external_lex_state = 5}, + [1241] = {.lex_state = 102, .external_lex_state = 5}, + [1242] = {.lex_state = 102, .external_lex_state = 5}, + [1243] = {.lex_state = 102, .external_lex_state = 5}, + [1244] = {.lex_state = 107, .external_lex_state = 5}, + [1245] = {.lex_state = 102, .external_lex_state = 5}, [1246] = {.lex_state = 107, .external_lex_state = 5}, [1247] = {.lex_state = 107, .external_lex_state = 5}, - [1248] = {.lex_state = 102, .external_lex_state = 4}, - [1249] = {.lex_state = 107, .external_lex_state = 5}, + [1248] = {.lex_state = 102, .external_lex_state = 5}, + [1249] = {.lex_state = 102, .external_lex_state = 5}, [1250] = {.lex_state = 102, .external_lex_state = 5}, - [1251] = {.lex_state = 107, .external_lex_state = 5}, - [1252] = {.lex_state = 107, .external_lex_state = 5}, - [1253] = {.lex_state = 102, .external_lex_state = 4}, - [1254] = {.lex_state = 107, .external_lex_state = 5}, - [1255] = {.lex_state = 102, .external_lex_state = 5}, + [1251] = {.lex_state = 102, .external_lex_state = 5}, + [1252] = {.lex_state = 102, .external_lex_state = 5}, + [1253] = {.lex_state = 102, .external_lex_state = 5}, + [1254] = {.lex_state = 102, .external_lex_state = 5}, + [1255] = {.lex_state = 107, .external_lex_state = 5}, [1256] = {.lex_state = 102, .external_lex_state = 5}, - [1257] = {.lex_state = 102, .external_lex_state = 4}, - [1258] = {.lex_state = 107, .external_lex_state = 5}, + [1257] = {.lex_state = 102, .external_lex_state = 5}, + [1258] = {.lex_state = 102, .external_lex_state = 5}, [1259] = {.lex_state = 107, .external_lex_state = 5}, - [1260] = {.lex_state = 107, .external_lex_state = 5}, + [1260] = {.lex_state = 102, .external_lex_state = 5}, [1261] = {.lex_state = 102, .external_lex_state = 5}, - [1262] = {.lex_state = 102, .external_lex_state = 5}, - [1263] = {.lex_state = 107, .external_lex_state = 5}, - [1264] = {.lex_state = 102, .external_lex_state = 5}, + [1262] = {.lex_state = 107, .external_lex_state = 5}, + [1263] = {.lex_state = 267, .external_lex_state = 5}, + [1264] = {.lex_state = 267, .external_lex_state = 5}, [1265] = {.lex_state = 107, .external_lex_state = 5}, - [1266] = {.lex_state = 102, .external_lex_state = 5}, + [1266] = {.lex_state = 107, .external_lex_state = 5}, [1267] = {.lex_state = 102, .external_lex_state = 5}, [1268] = {.lex_state = 102, .external_lex_state = 5}, [1269] = {.lex_state = 102, .external_lex_state = 5}, [1270] = {.lex_state = 102, .external_lex_state = 5}, - [1271] = {.lex_state = 107, .external_lex_state = 5}, + [1271] = {.lex_state = 102, .external_lex_state = 5}, [1272] = {.lex_state = 107, .external_lex_state = 5}, [1273] = {.lex_state = 107, .external_lex_state = 5}, - [1274] = {.lex_state = 102, .external_lex_state = 5}, - [1275] = {.lex_state = 102, .external_lex_state = 5}, + [1274] = {.lex_state = 107, .external_lex_state = 5}, + [1275] = {.lex_state = 107, .external_lex_state = 5}, [1276] = {.lex_state = 102, .external_lex_state = 5}, - [1277] = {.lex_state = 107, .external_lex_state = 5}, - [1278] = {.lex_state = 107, .external_lex_state = 5}, + [1277] = {.lex_state = 102, .external_lex_state = 5}, + [1278] = {.lex_state = 102, .external_lex_state = 5}, [1279] = {.lex_state = 107, .external_lex_state = 5}, [1280] = {.lex_state = 107, .external_lex_state = 5}, - [1281] = {.lex_state = 107, .external_lex_state = 5}, - [1282] = {.lex_state = 107, .external_lex_state = 5}, - [1283] = {.lex_state = 107, .external_lex_state = 5}, - [1284] = {.lex_state = 107, .external_lex_state = 5}, + [1281] = {.lex_state = 102, .external_lex_state = 5}, + [1282] = {.lex_state = 102, .external_lex_state = 5}, + [1283] = {.lex_state = 102, .external_lex_state = 5}, + [1284] = {.lex_state = 102, .external_lex_state = 5}, [1285] = {.lex_state = 102, .external_lex_state = 5}, [1286] = {.lex_state = 102, .external_lex_state = 5}, - [1287] = {.lex_state = 107, .external_lex_state = 5}, - [1288] = {.lex_state = 107, .external_lex_state = 5}, + [1287] = {.lex_state = 102, .external_lex_state = 5}, + [1288] = {.lex_state = 102, .external_lex_state = 5}, [1289] = {.lex_state = 102, .external_lex_state = 5}, - [1290] = {.lex_state = 107, .external_lex_state = 5}, - [1291] = {.lex_state = 107, .external_lex_state = 5}, - [1292] = {.lex_state = 107, .external_lex_state = 5}, - [1293] = {.lex_state = 107, .external_lex_state = 5}, - [1294] = {.lex_state = 267, .external_lex_state = 5}, - [1295] = {.lex_state = 267, .external_lex_state = 5}, + [1290] = {.lex_state = 102, .external_lex_state = 5}, + [1291] = {.lex_state = 102, .external_lex_state = 5}, + [1292] = {.lex_state = 102, .external_lex_state = 5}, + [1293] = {.lex_state = 102, .external_lex_state = 5}, + [1294] = {.lex_state = 102, .external_lex_state = 5}, + [1295] = {.lex_state = 102, .external_lex_state = 5}, [1296] = {.lex_state = 102, .external_lex_state = 5}, [1297] = {.lex_state = 102, .external_lex_state = 5}, - [1298] = {.lex_state = 107, .external_lex_state = 5}, - [1299] = {.lex_state = 102, .external_lex_state = 5}, - [1300] = {.lex_state = 102, .external_lex_state = 5}, - [1301] = {.lex_state = 107, .external_lex_state = 5}, - [1302] = {.lex_state = 107, .external_lex_state = 5}, + [1298] = {.lex_state = 102, .external_lex_state = 5}, + [1299] = {.lex_state = 107, .external_lex_state = 5}, + [1300] = {.lex_state = 267, .external_lex_state = 5}, + [1301] = {.lex_state = 267, .external_lex_state = 5}, + [1302] = {.lex_state = 267, .external_lex_state = 5}, [1303] = {.lex_state = 107, .external_lex_state = 5}, - [1304] = {.lex_state = 102, .external_lex_state = 5}, + [1304] = {.lex_state = 267, .external_lex_state = 5}, [1305] = {.lex_state = 102, .external_lex_state = 5}, [1306] = {.lex_state = 102, .external_lex_state = 5}, - [1307] = {.lex_state = 107, .external_lex_state = 5}, - [1308] = {.lex_state = 107, .external_lex_state = 5}, + [1307] = {.lex_state = 102, .external_lex_state = 5}, + [1308] = {.lex_state = 102, .external_lex_state = 5}, [1309] = {.lex_state = 102, .external_lex_state = 5}, - [1310] = {.lex_state = 107, .external_lex_state = 5}, - [1311] = {.lex_state = 107, .external_lex_state = 5}, - [1312] = {.lex_state = 102, .external_lex_state = 5}, + [1310] = {.lex_state = 267, .external_lex_state = 5}, + [1311] = {.lex_state = 102, .external_lex_state = 5}, + [1312] = {.lex_state = 107, .external_lex_state = 5}, [1313] = {.lex_state = 107, .external_lex_state = 5}, [1314] = {.lex_state = 107, .external_lex_state = 5}, - [1315] = {.lex_state = 107, .external_lex_state = 5}, + [1315] = {.lex_state = 102, .external_lex_state = 5}, [1316] = {.lex_state = 107, .external_lex_state = 5}, - [1317] = {.lex_state = 107, .external_lex_state = 5}, - [1318] = {.lex_state = 107, .external_lex_state = 5}, - [1319] = {.lex_state = 267, .external_lex_state = 5}, + [1317] = {.lex_state = 102, .external_lex_state = 5}, + [1318] = {.lex_state = 102, .external_lex_state = 5}, + [1319] = {.lex_state = 102, .external_lex_state = 5}, [1320] = {.lex_state = 102, .external_lex_state = 5}, [1321] = {.lex_state = 102, .external_lex_state = 5}, [1322] = {.lex_state = 102, .external_lex_state = 5}, @@ -24995,374 +24980,374 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1325] = {.lex_state = 102, .external_lex_state = 5}, [1326] = {.lex_state = 267, .external_lex_state = 5}, [1327] = {.lex_state = 102, .external_lex_state = 5}, - [1328] = {.lex_state = 267, .external_lex_state = 5}, - [1329] = {.lex_state = 102, .external_lex_state = 5}, - [1330] = {.lex_state = 267, .external_lex_state = 5}, + [1328] = {.lex_state = 107, .external_lex_state = 5}, + [1329] = {.lex_state = 267, .external_lex_state = 5}, + [1330] = {.lex_state = 102, .external_lex_state = 5}, [1331] = {.lex_state = 102, .external_lex_state = 5}, [1332] = {.lex_state = 102, .external_lex_state = 5}, - [1333] = {.lex_state = 102, .external_lex_state = 5}, - [1334] = {.lex_state = 102, .external_lex_state = 5}, + [1333] = {.lex_state = 107, .external_lex_state = 5}, + [1334] = {.lex_state = 107, .external_lex_state = 5}, [1335] = {.lex_state = 102, .external_lex_state = 5}, - [1336] = {.lex_state = 102, .external_lex_state = 5}, + [1336] = {.lex_state = 107, .external_lex_state = 5}, [1337] = {.lex_state = 102, .external_lex_state = 5}, - [1338] = {.lex_state = 102, .external_lex_state = 5}, - [1339] = {.lex_state = 102, .external_lex_state = 5}, - [1340] = {.lex_state = 102, .external_lex_state = 5}, - [1341] = {.lex_state = 102, .external_lex_state = 5}, - [1342] = {.lex_state = 102, .external_lex_state = 5}, - [1343] = {.lex_state = 102, .external_lex_state = 5}, - [1344] = {.lex_state = 102, .external_lex_state = 5}, - [1345] = {.lex_state = 102, .external_lex_state = 5}, - [1346] = {.lex_state = 102, .external_lex_state = 5}, - [1347] = {.lex_state = 102, .external_lex_state = 5}, - [1348] = {.lex_state = 102, .external_lex_state = 5}, + [1338] = {.lex_state = 107, .external_lex_state = 5}, + [1339] = {.lex_state = 267, .external_lex_state = 5}, + [1340] = {.lex_state = 267, .external_lex_state = 5}, + [1341] = {.lex_state = 267, .external_lex_state = 5}, + [1342] = {.lex_state = 267, .external_lex_state = 5}, + [1343] = {.lex_state = 267, .external_lex_state = 5}, + [1344] = {.lex_state = 267, .external_lex_state = 5}, + [1345] = {.lex_state = 267, .external_lex_state = 5}, + [1346] = {.lex_state = 267, .external_lex_state = 5}, + [1347] = {.lex_state = 267, .external_lex_state = 5}, + [1348] = {.lex_state = 267, .external_lex_state = 5}, [1349] = {.lex_state = 267, .external_lex_state = 5}, [1350] = {.lex_state = 102, .external_lex_state = 4}, - [1351] = {.lex_state = 110, .external_lex_state = 5}, - [1352] = {.lex_state = 110, .external_lex_state = 5}, - [1353] = {.lex_state = 110, .external_lex_state = 5}, - [1354] = {.lex_state = 110, .external_lex_state = 5}, + [1351] = {.lex_state = 267, .external_lex_state = 5}, + [1352] = {.lex_state = 267, .external_lex_state = 5}, + [1353] = {.lex_state = 267, .external_lex_state = 5}, + [1354] = {.lex_state = 267, .external_lex_state = 5}, [1355] = {.lex_state = 267, .external_lex_state = 5}, - [1356] = {.lex_state = 110, .external_lex_state = 5}, - [1357] = {.lex_state = 110, .external_lex_state = 5}, - [1358] = {.lex_state = 110, .external_lex_state = 5}, - [1359] = {.lex_state = 110, .external_lex_state = 5}, - [1360] = {.lex_state = 110, .external_lex_state = 5}, - [1361] = {.lex_state = 110, .external_lex_state = 5}, - [1362] = {.lex_state = 110, .external_lex_state = 5}, - [1363] = {.lex_state = 110, .external_lex_state = 5}, - [1364] = {.lex_state = 110, .external_lex_state = 5}, - [1365] = {.lex_state = 110, .external_lex_state = 5}, - [1366] = {.lex_state = 110, .external_lex_state = 5}, - [1367] = {.lex_state = 110, .external_lex_state = 5}, - [1368] = {.lex_state = 110, .external_lex_state = 5}, - [1369] = {.lex_state = 110, .external_lex_state = 5}, - [1370] = {.lex_state = 110, .external_lex_state = 5}, - [1371] = {.lex_state = 110, .external_lex_state = 5}, - [1372] = {.lex_state = 110, .external_lex_state = 5}, - [1373] = {.lex_state = 110, .external_lex_state = 5}, - [1374] = {.lex_state = 110, .external_lex_state = 5}, - [1375] = {.lex_state = 110, .external_lex_state = 5}, - [1376] = {.lex_state = 110, .external_lex_state = 5}, - [1377] = {.lex_state = 110, .external_lex_state = 5}, - [1378] = {.lex_state = 110, .external_lex_state = 5}, - [1379] = {.lex_state = 110, .external_lex_state = 5}, - [1380] = {.lex_state = 110, .external_lex_state = 5}, - [1381] = {.lex_state = 110, .external_lex_state = 5}, - [1382] = {.lex_state = 110, .external_lex_state = 5}, - [1383] = {.lex_state = 110, .external_lex_state = 5}, - [1384] = {.lex_state = 110, .external_lex_state = 5}, - [1385] = {.lex_state = 110, .external_lex_state = 5}, - [1386] = {.lex_state = 102, .external_lex_state = 4}, - [1387] = {.lex_state = 102, .external_lex_state = 4}, - [1388] = {.lex_state = 110, .external_lex_state = 5}, + [1356] = {.lex_state = 267, .external_lex_state = 5}, + [1357] = {.lex_state = 267, .external_lex_state = 5}, + [1358] = {.lex_state = 267, .external_lex_state = 5}, + [1359] = {.lex_state = 267, .external_lex_state = 5}, + [1360] = {.lex_state = 267, .external_lex_state = 5}, + [1361] = {.lex_state = 267, .external_lex_state = 5}, + [1362] = {.lex_state = 267, .external_lex_state = 5}, + [1363] = {.lex_state = 267, .external_lex_state = 5}, + [1364] = {.lex_state = 267, .external_lex_state = 5}, + [1365] = {.lex_state = 267, .external_lex_state = 5}, + [1366] = {.lex_state = 267, .external_lex_state = 5}, + [1367] = {.lex_state = 267, .external_lex_state = 5}, + [1368] = {.lex_state = 267, .external_lex_state = 5}, + [1369] = {.lex_state = 267, .external_lex_state = 5}, + [1370] = {.lex_state = 267, .external_lex_state = 5}, + [1371] = {.lex_state = 267, .external_lex_state = 5}, + [1372] = {.lex_state = 267, .external_lex_state = 5}, + [1373] = {.lex_state = 267, .external_lex_state = 5}, + [1374] = {.lex_state = 267, .external_lex_state = 5}, + [1375] = {.lex_state = 267, .external_lex_state = 5}, + [1376] = {.lex_state = 267, .external_lex_state = 5}, + [1377] = {.lex_state = 267, .external_lex_state = 5}, + [1378] = {.lex_state = 267, .external_lex_state = 5}, + [1379] = {.lex_state = 267, .external_lex_state = 5}, + [1380] = {.lex_state = 267, .external_lex_state = 5}, + [1381] = {.lex_state = 267, .external_lex_state = 5}, + [1382] = {.lex_state = 267, .external_lex_state = 5}, + [1383] = {.lex_state = 267, .external_lex_state = 5}, + [1384] = {.lex_state = 267, .external_lex_state = 5}, + [1385] = {.lex_state = 267, .external_lex_state = 5}, + [1386] = {.lex_state = 267, .external_lex_state = 5}, + [1387] = {.lex_state = 267, .external_lex_state = 5}, + [1388] = {.lex_state = 267, .external_lex_state = 5}, [1389] = {.lex_state = 102, .external_lex_state = 4}, - [1390] = {.lex_state = 110, .external_lex_state = 5}, - [1391] = {.lex_state = 110, .external_lex_state = 5}, - [1392] = {.lex_state = 110, .external_lex_state = 5}, - [1393] = {.lex_state = 110, .external_lex_state = 5}, - [1394] = {.lex_state = 110, .external_lex_state = 5}, - [1395] = {.lex_state = 110, .external_lex_state = 5}, - [1396] = {.lex_state = 110, .external_lex_state = 5}, - [1397] = {.lex_state = 110, .external_lex_state = 5}, - [1398] = {.lex_state = 110, .external_lex_state = 5}, - [1399] = {.lex_state = 110, .external_lex_state = 5}, - [1400] = {.lex_state = 110, .external_lex_state = 5}, - [1401] = {.lex_state = 110, .external_lex_state = 5}, - [1402] = {.lex_state = 110, .external_lex_state = 5}, - [1403] = {.lex_state = 110, .external_lex_state = 5}, - [1404] = {.lex_state = 110, .external_lex_state = 5}, - [1405] = {.lex_state = 110, .external_lex_state = 5}, - [1406] = {.lex_state = 102, .external_lex_state = 4}, - [1407] = {.lex_state = 110, .external_lex_state = 5}, - [1408] = {.lex_state = 110, .external_lex_state = 5}, - [1409] = {.lex_state = 110, .external_lex_state = 5}, - [1410] = {.lex_state = 110, .external_lex_state = 5}, - [1411] = {.lex_state = 110, .external_lex_state = 5}, - [1412] = {.lex_state = 110, .external_lex_state = 5}, - [1413] = {.lex_state = 110, .external_lex_state = 5}, - [1414] = {.lex_state = 110, .external_lex_state = 5}, - [1415] = {.lex_state = 110, .external_lex_state = 5}, - [1416] = {.lex_state = 102, .external_lex_state = 4}, - [1417] = {.lex_state = 110, .external_lex_state = 5}, - [1418] = {.lex_state = 102, .external_lex_state = 4}, - [1419] = {.lex_state = 110, .external_lex_state = 5}, - [1420] = {.lex_state = 110, .external_lex_state = 5}, - [1421] = {.lex_state = 110, .external_lex_state = 5}, - [1422] = {.lex_state = 110, .external_lex_state = 5}, - [1423] = {.lex_state = 110, .external_lex_state = 5}, - [1424] = {.lex_state = 110, .external_lex_state = 5}, - [1425] = {.lex_state = 110, .external_lex_state = 5}, - [1426] = {.lex_state = 267, .external_lex_state = 5}, + [1390] = {.lex_state = 267, .external_lex_state = 5}, + [1391] = {.lex_state = 267, .external_lex_state = 5}, + [1392] = {.lex_state = 267, .external_lex_state = 5}, + [1393] = {.lex_state = 267, .external_lex_state = 5}, + [1394] = {.lex_state = 267, .external_lex_state = 5}, + [1395] = {.lex_state = 267, .external_lex_state = 5}, + [1396] = {.lex_state = 267, .external_lex_state = 5}, + [1397] = {.lex_state = 267, .external_lex_state = 5}, + [1398] = {.lex_state = 267, .external_lex_state = 5}, + [1399] = {.lex_state = 267, .external_lex_state = 5}, + [1400] = {.lex_state = 267, .external_lex_state = 5}, + [1401] = {.lex_state = 267, .external_lex_state = 5}, + [1402] = {.lex_state = 267, .external_lex_state = 5}, + [1403] = {.lex_state = 267, .external_lex_state = 5}, + [1404] = {.lex_state = 267, .external_lex_state = 5}, + [1405] = {.lex_state = 267, .external_lex_state = 5}, + [1406] = {.lex_state = 267, .external_lex_state = 5}, + [1407] = {.lex_state = 267, .external_lex_state = 5}, + [1408] = {.lex_state = 267, .external_lex_state = 5}, + [1409] = {.lex_state = 102, .external_lex_state = 4}, + [1410] = {.lex_state = 267, .external_lex_state = 5}, + [1411] = {.lex_state = 267, .external_lex_state = 5}, + [1412] = {.lex_state = 267, .external_lex_state = 5}, + [1413] = {.lex_state = 267, .external_lex_state = 5}, + [1414] = {.lex_state = 102, .external_lex_state = 5}, + [1415] = {.lex_state = 102, .external_lex_state = 5}, + [1416] = {.lex_state = 102, .external_lex_state = 5}, + [1417] = {.lex_state = 102, .external_lex_state = 4}, + [1418] = {.lex_state = 267, .external_lex_state = 4}, + [1419] = {.lex_state = 267, .external_lex_state = 4}, + [1420] = {.lex_state = 267, .external_lex_state = 4}, + [1421] = {.lex_state = 102, .external_lex_state = 4}, + [1422] = {.lex_state = 267, .external_lex_state = 5}, + [1423] = {.lex_state = 267, .external_lex_state = 5}, + [1424] = {.lex_state = 102, .external_lex_state = 5}, + [1425] = {.lex_state = 102, .external_lex_state = 5}, + [1426] = {.lex_state = 102, .external_lex_state = 5}, [1427] = {.lex_state = 267, .external_lex_state = 5}, - [1428] = {.lex_state = 267, .external_lex_state = 5}, - [1429] = {.lex_state = 267, .external_lex_state = 5}, - [1430] = {.lex_state = 267, .external_lex_state = 5}, - [1431] = {.lex_state = 267, .external_lex_state = 5}, + [1428] = {.lex_state = 102, .external_lex_state = 4}, + [1429] = {.lex_state = 102, .external_lex_state = 4}, + [1430] = {.lex_state = 102, .external_lex_state = 4}, + [1431] = {.lex_state = 102, .external_lex_state = 4}, [1432] = {.lex_state = 267, .external_lex_state = 5}, [1433] = {.lex_state = 267, .external_lex_state = 5}, [1434] = {.lex_state = 267, .external_lex_state = 5}, [1435] = {.lex_state = 267, .external_lex_state = 5}, - [1436] = {.lex_state = 267, .external_lex_state = 5}, - [1437] = {.lex_state = 267, .external_lex_state = 5}, + [1436] = {.lex_state = 102, .external_lex_state = 4}, + [1437] = {.lex_state = 110, .external_lex_state = 5}, [1438] = {.lex_state = 267, .external_lex_state = 5}, - [1439] = {.lex_state = 110, .external_lex_state = 5}, - [1440] = {.lex_state = 267, .external_lex_state = 5}, - [1441] = {.lex_state = 267, .external_lex_state = 5}, + [1439] = {.lex_state = 267, .external_lex_state = 5}, + [1440] = {.lex_state = 110, .external_lex_state = 5}, + [1441] = {.lex_state = 110, .external_lex_state = 5}, [1442] = {.lex_state = 110, .external_lex_state = 5}, [1443] = {.lex_state = 110, .external_lex_state = 5}, [1444] = {.lex_state = 267, .external_lex_state = 5}, [1445] = {.lex_state = 267, .external_lex_state = 5}, [1446] = {.lex_state = 267, .external_lex_state = 5}, - [1447] = {.lex_state = 267, .external_lex_state = 5}, - [1448] = {.lex_state = 267, .external_lex_state = 5}, + [1447] = {.lex_state = 110, .external_lex_state = 5}, + [1448] = {.lex_state = 110, .external_lex_state = 5}, [1449] = {.lex_state = 267, .external_lex_state = 5}, - [1450] = {.lex_state = 267, .external_lex_state = 5}, - [1451] = {.lex_state = 267, .external_lex_state = 5}, + [1450] = {.lex_state = 110, .external_lex_state = 5}, + [1451] = {.lex_state = 110, .external_lex_state = 5}, [1452] = {.lex_state = 267, .external_lex_state = 5}, [1453] = {.lex_state = 267, .external_lex_state = 5}, - [1454] = {.lex_state = 267, .external_lex_state = 5}, + [1454] = {.lex_state = 110, .external_lex_state = 5}, [1455] = {.lex_state = 267, .external_lex_state = 5}, [1456] = {.lex_state = 267, .external_lex_state = 5}, - [1457] = {.lex_state = 110, .external_lex_state = 5}, - [1458] = {.lex_state = 110, .external_lex_state = 5}, - [1459] = {.lex_state = 267, .external_lex_state = 5}, + [1457] = {.lex_state = 267, .external_lex_state = 5}, + [1458] = {.lex_state = 102, .external_lex_state = 4}, + [1459] = {.lex_state = 110, .external_lex_state = 5}, [1460] = {.lex_state = 267, .external_lex_state = 5}, - [1461] = {.lex_state = 267, .external_lex_state = 5}, + [1461] = {.lex_state = 102, .external_lex_state = 4}, [1462] = {.lex_state = 110, .external_lex_state = 5}, [1463] = {.lex_state = 267, .external_lex_state = 5}, [1464] = {.lex_state = 267, .external_lex_state = 5}, - [1465] = {.lex_state = 267, .external_lex_state = 5}, - [1466] = {.lex_state = 267, .external_lex_state = 5}, - [1467] = {.lex_state = 267, .external_lex_state = 5}, + [1465] = {.lex_state = 102, .external_lex_state = 4}, + [1466] = {.lex_state = 102, .external_lex_state = 4}, + [1467] = {.lex_state = 102, .external_lex_state = 4}, [1468] = {.lex_state = 267, .external_lex_state = 5}, [1469] = {.lex_state = 267, .external_lex_state = 5}, [1470] = {.lex_state = 267, .external_lex_state = 5}, - [1471] = {.lex_state = 267, .external_lex_state = 5}, - [1472] = {.lex_state = 267, .external_lex_state = 5}, - [1473] = {.lex_state = 267, .external_lex_state = 5}, - [1474] = {.lex_state = 267, .external_lex_state = 5}, - [1475] = {.lex_state = 267, .external_lex_state = 5}, - [1476] = {.lex_state = 267, .external_lex_state = 5}, - [1477] = {.lex_state = 267, .external_lex_state = 5}, - [1478] = {.lex_state = 267, .external_lex_state = 5}, - [1479] = {.lex_state = 267, .external_lex_state = 5}, - [1480] = {.lex_state = 267, .external_lex_state = 5}, - [1481] = {.lex_state = 102, .external_lex_state = 5}, - [1482] = {.lex_state = 102, .external_lex_state = 5}, - [1483] = {.lex_state = 102, .external_lex_state = 5}, - [1484] = {.lex_state = 267, .external_lex_state = 5}, - [1485] = {.lex_state = 267, .external_lex_state = 5}, + [1471] = {.lex_state = 102, .external_lex_state = 4}, + [1472] = {.lex_state = 102, .external_lex_state = 4}, + [1473] = {.lex_state = 102, .external_lex_state = 4}, + [1474] = {.lex_state = 110, .external_lex_state = 5}, + [1475] = {.lex_state = 110, .external_lex_state = 5}, + [1476] = {.lex_state = 110, .external_lex_state = 5}, + [1477] = {.lex_state = 110, .external_lex_state = 5}, + [1478] = {.lex_state = 110, .external_lex_state = 5}, + [1479] = {.lex_state = 110, .external_lex_state = 5}, + [1480] = {.lex_state = 110, .external_lex_state = 5}, + [1481] = {.lex_state = 110, .external_lex_state = 5}, + [1482] = {.lex_state = 110, .external_lex_state = 5}, + [1483] = {.lex_state = 110, .external_lex_state = 5}, + [1484] = {.lex_state = 110, .external_lex_state = 5}, + [1485] = {.lex_state = 110, .external_lex_state = 5}, [1486] = {.lex_state = 267, .external_lex_state = 5}, - [1487] = {.lex_state = 267, .external_lex_state = 5}, - [1488] = {.lex_state = 267, .external_lex_state = 5}, - [1489] = {.lex_state = 267, .external_lex_state = 5}, - [1490] = {.lex_state = 267, .external_lex_state = 5}, - [1491] = {.lex_state = 267, .external_lex_state = 5}, - [1492] = {.lex_state = 267, .external_lex_state = 5}, - [1493] = {.lex_state = 267, .external_lex_state = 5}, - [1494] = {.lex_state = 267, .external_lex_state = 5}, + [1487] = {.lex_state = 102, .external_lex_state = 4}, + [1488] = {.lex_state = 110, .external_lex_state = 5}, + [1489] = {.lex_state = 110, .external_lex_state = 5}, + [1490] = {.lex_state = 110, .external_lex_state = 5}, + [1491] = {.lex_state = 110, .external_lex_state = 5}, + [1492] = {.lex_state = 110, .external_lex_state = 5}, + [1493] = {.lex_state = 110, .external_lex_state = 5}, + [1494] = {.lex_state = 110, .external_lex_state = 5}, [1495] = {.lex_state = 110, .external_lex_state = 5}, [1496] = {.lex_state = 110, .external_lex_state = 5}, [1497] = {.lex_state = 110, .external_lex_state = 5}, [1498] = {.lex_state = 110, .external_lex_state = 5}, [1499] = {.lex_state = 110, .external_lex_state = 5}, [1500] = {.lex_state = 110, .external_lex_state = 5}, - [1501] = {.lex_state = 267, .external_lex_state = 5}, - [1502] = {.lex_state = 267, .external_lex_state = 5}, + [1501] = {.lex_state = 110, .external_lex_state = 5}, + [1502] = {.lex_state = 110, .external_lex_state = 5}, [1503] = {.lex_state = 267, .external_lex_state = 5}, - [1504] = {.lex_state = 102, .external_lex_state = 5}, + [1504] = {.lex_state = 267, .external_lex_state = 5}, [1505] = {.lex_state = 267, .external_lex_state = 5}, - [1506] = {.lex_state = 102, .external_lex_state = 5}, - [1507] = {.lex_state = 102, .external_lex_state = 5}, + [1506] = {.lex_state = 267, .external_lex_state = 5}, + [1507] = {.lex_state = 267, .external_lex_state = 5}, [1508] = {.lex_state = 267, .external_lex_state = 5}, - [1509] = {.lex_state = 267, .external_lex_state = 5}, - [1510] = {.lex_state = 267, .external_lex_state = 5}, - [1511] = {.lex_state = 267, .external_lex_state = 5}, - [1512] = {.lex_state = 267, .external_lex_state = 5}, - [1513] = {.lex_state = 267, .external_lex_state = 4}, - [1514] = {.lex_state = 267, .external_lex_state = 4}, - [1515] = {.lex_state = 267, .external_lex_state = 4}, - [1516] = {.lex_state = 267, .external_lex_state = 5}, - [1517] = {.lex_state = 267, .external_lex_state = 5}, - [1518] = {.lex_state = 267, .external_lex_state = 5}, - [1519] = {.lex_state = 267, .external_lex_state = 5}, - [1520] = {.lex_state = 267, .external_lex_state = 5}, - [1521] = {.lex_state = 267, .external_lex_state = 5}, - [1522] = {.lex_state = 267, .external_lex_state = 5}, - [1523] = {.lex_state = 267, .external_lex_state = 5}, - [1524] = {.lex_state = 267, .external_lex_state = 5}, - [1525] = {.lex_state = 267, .external_lex_state = 5}, - [1526] = {.lex_state = 102, .external_lex_state = 4}, - [1527] = {.lex_state = 267, .external_lex_state = 5}, - [1528] = {.lex_state = 267, .external_lex_state = 5}, - [1529] = {.lex_state = 267, .external_lex_state = 5}, - [1530] = {.lex_state = 267, .external_lex_state = 5}, - [1531] = {.lex_state = 267, .external_lex_state = 5}, - [1532] = {.lex_state = 102, .external_lex_state = 4}, - [1533] = {.lex_state = 102, .external_lex_state = 4}, - [1534] = {.lex_state = 102, .external_lex_state = 4}, - [1535] = {.lex_state = 102, .external_lex_state = 4}, - [1536] = {.lex_state = 267, .external_lex_state = 5}, + [1509] = {.lex_state = 102, .external_lex_state = 4}, + [1510] = {.lex_state = 110, .external_lex_state = 5}, + [1511] = {.lex_state = 102, .external_lex_state = 5}, + [1512] = {.lex_state = 102, .external_lex_state = 5}, + [1513] = {.lex_state = 102, .external_lex_state = 5}, + [1514] = {.lex_state = 102, .external_lex_state = 5}, + [1515] = {.lex_state = 102, .external_lex_state = 5}, + [1516] = {.lex_state = 102, .external_lex_state = 5}, + [1517] = {.lex_state = 102, .external_lex_state = 5}, + [1518] = {.lex_state = 102, .external_lex_state = 5}, + [1519] = {.lex_state = 102, .external_lex_state = 5}, + [1520] = {.lex_state = 102, .external_lex_state = 5}, + [1521] = {.lex_state = 102, .external_lex_state = 5}, + [1522] = {.lex_state = 102, .external_lex_state = 5}, + [1523] = {.lex_state = 102, .external_lex_state = 5}, + [1524] = {.lex_state = 102, .external_lex_state = 5}, + [1525] = {.lex_state = 102, .external_lex_state = 5}, + [1526] = {.lex_state = 102, .external_lex_state = 5}, + [1527] = {.lex_state = 102, .external_lex_state = 5}, + [1528] = {.lex_state = 110, .external_lex_state = 5}, + [1529] = {.lex_state = 110, .external_lex_state = 5}, + [1530] = {.lex_state = 110, .external_lex_state = 5}, + [1531] = {.lex_state = 110, .external_lex_state = 5}, + [1532] = {.lex_state = 110, .external_lex_state = 5}, + [1533] = {.lex_state = 110, .external_lex_state = 5}, + [1534] = {.lex_state = 110, .external_lex_state = 5}, + [1535] = {.lex_state = 110, .external_lex_state = 5}, + [1536] = {.lex_state = 110, .external_lex_state = 5}, [1537] = {.lex_state = 102, .external_lex_state = 4}, - [1538] = {.lex_state = 102, .external_lex_state = 4}, - [1539] = {.lex_state = 267, .external_lex_state = 5}, - [1540] = {.lex_state = 267, .external_lex_state = 5}, - [1541] = {.lex_state = 102, .external_lex_state = 4}, - [1542] = {.lex_state = 102, .external_lex_state = 5}, - [1543] = {.lex_state = 102, .external_lex_state = 5}, - [1544] = {.lex_state = 267, .external_lex_state = 5}, - [1545] = {.lex_state = 267, .external_lex_state = 5}, - [1546] = {.lex_state = 267, .external_lex_state = 5}, - [1547] = {.lex_state = 102, .external_lex_state = 5}, - [1548] = {.lex_state = 102, .external_lex_state = 5}, - [1549] = {.lex_state = 102, .external_lex_state = 5}, - [1550] = {.lex_state = 267, .external_lex_state = 5}, - [1551] = {.lex_state = 102, .external_lex_state = 5}, - [1552] = {.lex_state = 102, .external_lex_state = 5}, - [1553] = {.lex_state = 102, .external_lex_state = 5}, - [1554] = {.lex_state = 102, .external_lex_state = 5}, - [1555] = {.lex_state = 102, .external_lex_state = 5}, - [1556] = {.lex_state = 102, .external_lex_state = 5}, - [1557] = {.lex_state = 102, .external_lex_state = 5}, - [1558] = {.lex_state = 102, .external_lex_state = 5}, - [1559] = {.lex_state = 102, .external_lex_state = 5}, - [1560] = {.lex_state = 102, .external_lex_state = 5}, - [1561] = {.lex_state = 102, .external_lex_state = 5}, - [1562] = {.lex_state = 102, .external_lex_state = 5}, - [1563] = {.lex_state = 267, .external_lex_state = 5}, - [1564] = {.lex_state = 102, .external_lex_state = 4}, - [1565] = {.lex_state = 102, .external_lex_state = 4}, - [1566] = {.lex_state = 102, .external_lex_state = 4}, - [1567] = {.lex_state = 102, .external_lex_state = 4}, - [1568] = {.lex_state = 102, .external_lex_state = 4}, - [1569] = {.lex_state = 102, .external_lex_state = 4}, - [1570] = {.lex_state = 113, .external_lex_state = 4}, + [1538] = {.lex_state = 110, .external_lex_state = 5}, + [1539] = {.lex_state = 110, .external_lex_state = 5}, + [1540] = {.lex_state = 110, .external_lex_state = 5}, + [1541] = {.lex_state = 110, .external_lex_state = 5}, + [1542] = {.lex_state = 110, .external_lex_state = 5}, + [1543] = {.lex_state = 110, .external_lex_state = 5}, + [1544] = {.lex_state = 110, .external_lex_state = 5}, + [1545] = {.lex_state = 110, .external_lex_state = 5}, + [1546] = {.lex_state = 110, .external_lex_state = 5}, + [1547] = {.lex_state = 110, .external_lex_state = 5}, + [1548] = {.lex_state = 110, .external_lex_state = 5}, + [1549] = {.lex_state = 110, .external_lex_state = 5}, + [1550] = {.lex_state = 110, .external_lex_state = 5}, + [1551] = {.lex_state = 267, .external_lex_state = 5}, + [1552] = {.lex_state = 110, .external_lex_state = 5}, + [1553] = {.lex_state = 110, .external_lex_state = 5}, + [1554] = {.lex_state = 110, .external_lex_state = 5}, + [1555] = {.lex_state = 110, .external_lex_state = 5}, + [1556] = {.lex_state = 110, .external_lex_state = 5}, + [1557] = {.lex_state = 110, .external_lex_state = 5}, + [1558] = {.lex_state = 110, .external_lex_state = 5}, + [1559] = {.lex_state = 110, .external_lex_state = 5}, + [1560] = {.lex_state = 110, .external_lex_state = 5}, + [1561] = {.lex_state = 110, .external_lex_state = 5}, + [1562] = {.lex_state = 110, .external_lex_state = 5}, + [1563] = {.lex_state = 110, .external_lex_state = 5}, + [1564] = {.lex_state = 110, .external_lex_state = 5}, + [1565] = {.lex_state = 110, .external_lex_state = 5}, + [1566] = {.lex_state = 110, .external_lex_state = 5}, + [1567] = {.lex_state = 110, .external_lex_state = 5}, + [1568] = {.lex_state = 110, .external_lex_state = 5}, + [1569] = {.lex_state = 110, .external_lex_state = 5}, + [1570] = {.lex_state = 267, .external_lex_state = 5}, [1571] = {.lex_state = 102, .external_lex_state = 4}, - [1572] = {.lex_state = 102, .external_lex_state = 4}, - [1573] = {.lex_state = 113, .external_lex_state = 4}, - [1574] = {.lex_state = 102, .external_lex_state = 4}, - [1575] = {.lex_state = 102, .external_lex_state = 4}, - [1576] = {.lex_state = 102, .external_lex_state = 4}, + [1572] = {.lex_state = 267, .external_lex_state = 5}, + [1573] = {.lex_state = 267, .external_lex_state = 5}, + [1574] = {.lex_state = 267, .external_lex_state = 5}, + [1575] = {.lex_state = 267, .external_lex_state = 5}, + [1576] = {.lex_state = 267, .external_lex_state = 5}, [1577] = {.lex_state = 267, .external_lex_state = 5}, - [1578] = {.lex_state = 267, .external_lex_state = 4}, - [1579] = {.lex_state = 102, .external_lex_state = 4}, + [1578] = {.lex_state = 267, .external_lex_state = 5}, + [1579] = {.lex_state = 267, .external_lex_state = 5}, [1580] = {.lex_state = 267, .external_lex_state = 5}, [1581] = {.lex_state = 267, .external_lex_state = 5}, [1582] = {.lex_state = 267, .external_lex_state = 5}, [1583] = {.lex_state = 267, .external_lex_state = 5}, - [1584] = {.lex_state = 113, .external_lex_state = 4}, - [1585] = {.lex_state = 113, .external_lex_state = 4}, - [1586] = {.lex_state = 113, .external_lex_state = 4}, - [1587] = {.lex_state = 113, .external_lex_state = 4}, - [1588] = {.lex_state = 113, .external_lex_state = 4}, - [1589] = {.lex_state = 102, .external_lex_state = 4}, - [1590] = {.lex_state = 113, .external_lex_state = 4}, - [1591] = {.lex_state = 113, .external_lex_state = 4}, - [1592] = {.lex_state = 113, .external_lex_state = 4}, - [1593] = {.lex_state = 113, .external_lex_state = 4}, + [1584] = {.lex_state = 267, .external_lex_state = 5}, + [1585] = {.lex_state = 267, .external_lex_state = 5}, + [1586] = {.lex_state = 102, .external_lex_state = 4}, + [1587] = {.lex_state = 102, .external_lex_state = 4}, + [1588] = {.lex_state = 267, .external_lex_state = 5}, + [1589] = {.lex_state = 267, .external_lex_state = 5}, + [1590] = {.lex_state = 267, .external_lex_state = 5}, + [1591] = {.lex_state = 267, .external_lex_state = 5}, + [1592] = {.lex_state = 267, .external_lex_state = 5}, + [1593] = {.lex_state = 267, .external_lex_state = 5}, [1594] = {.lex_state = 113, .external_lex_state = 4}, [1595] = {.lex_state = 267, .external_lex_state = 5}, [1596] = {.lex_state = 267, .external_lex_state = 5}, - [1597] = {.lex_state = 113, .external_lex_state = 4}, + [1597] = {.lex_state = 102, .external_lex_state = 4}, [1598] = {.lex_state = 267, .external_lex_state = 5}, [1599] = {.lex_state = 113, .external_lex_state = 4}, [1600] = {.lex_state = 113, .external_lex_state = 4}, [1601] = {.lex_state = 113, .external_lex_state = 4}, [1602] = {.lex_state = 113, .external_lex_state = 4}, [1603] = {.lex_state = 113, .external_lex_state = 4}, - [1604] = {.lex_state = 113, .external_lex_state = 4}, + [1604] = {.lex_state = 102, .external_lex_state = 4}, [1605] = {.lex_state = 113, .external_lex_state = 4}, [1606] = {.lex_state = 113, .external_lex_state = 4}, [1607] = {.lex_state = 113, .external_lex_state = 4}, [1608] = {.lex_state = 113, .external_lex_state = 4}, [1609] = {.lex_state = 113, .external_lex_state = 4}, [1610] = {.lex_state = 113, .external_lex_state = 4}, - [1611] = {.lex_state = 267, .external_lex_state = 5}, - [1612] = {.lex_state = 267, .external_lex_state = 5}, - [1613] = {.lex_state = 267, .external_lex_state = 4}, - [1614] = {.lex_state = 267, .external_lex_state = 4}, - [1615] = {.lex_state = 267, .external_lex_state = 5}, - [1616] = {.lex_state = 113, .external_lex_state = 4}, - [1617] = {.lex_state = 267, .external_lex_state = 4}, + [1611] = {.lex_state = 113, .external_lex_state = 4}, + [1612] = {.lex_state = 102, .external_lex_state = 4}, + [1613] = {.lex_state = 113, .external_lex_state = 4}, + [1614] = {.lex_state = 113, .external_lex_state = 4}, + [1615] = {.lex_state = 102, .external_lex_state = 4}, + [1616] = {.lex_state = 102, .external_lex_state = 4}, + [1617] = {.lex_state = 113, .external_lex_state = 4}, [1618] = {.lex_state = 113, .external_lex_state = 4}, [1619] = {.lex_state = 113, .external_lex_state = 4}, - [1620] = {.lex_state = 267, .external_lex_state = 4}, + [1620] = {.lex_state = 113, .external_lex_state = 4}, [1621] = {.lex_state = 113, .external_lex_state = 4}, - [1622] = {.lex_state = 102, .external_lex_state = 4}, - [1623] = {.lex_state = 267, .external_lex_state = 4}, - [1624] = {.lex_state = 267, .external_lex_state = 4}, + [1622] = {.lex_state = 113, .external_lex_state = 4}, + [1623] = {.lex_state = 113, .external_lex_state = 4}, + [1624] = {.lex_state = 113, .external_lex_state = 4}, [1625] = {.lex_state = 113, .external_lex_state = 4}, [1626] = {.lex_state = 113, .external_lex_state = 4}, [1627] = {.lex_state = 113, .external_lex_state = 4}, [1628] = {.lex_state = 113, .external_lex_state = 4}, [1629] = {.lex_state = 113, .external_lex_state = 4}, - [1630] = {.lex_state = 113, .external_lex_state = 4}, - [1631] = {.lex_state = 267, .external_lex_state = 4}, - [1632] = {.lex_state = 113, .external_lex_state = 4}, + [1630] = {.lex_state = 102, .external_lex_state = 4}, + [1631] = {.lex_state = 102, .external_lex_state = 4}, + [1632] = {.lex_state = 102, .external_lex_state = 4}, [1633] = {.lex_state = 113, .external_lex_state = 4}, - [1634] = {.lex_state = 113, .external_lex_state = 4}, - [1635] = {.lex_state = 113, .external_lex_state = 4}, - [1636] = {.lex_state = 113, .external_lex_state = 4}, - [1637] = {.lex_state = 267, .external_lex_state = 4}, + [1634] = {.lex_state = 102, .external_lex_state = 4}, + [1635] = {.lex_state = 102, .external_lex_state = 4}, + [1636] = {.lex_state = 102, .external_lex_state = 4}, + [1637] = {.lex_state = 113, .external_lex_state = 4}, [1638] = {.lex_state = 113, .external_lex_state = 4}, - [1639] = {.lex_state = 113, .external_lex_state = 4}, - [1640] = {.lex_state = 113, .external_lex_state = 4}, - [1641] = {.lex_state = 113, .external_lex_state = 4}, - [1642] = {.lex_state = 113, .external_lex_state = 4}, - [1643] = {.lex_state = 113, .external_lex_state = 4}, - [1644] = {.lex_state = 113, .external_lex_state = 4}, - [1645] = {.lex_state = 113, .external_lex_state = 4}, - [1646] = {.lex_state = 267, .external_lex_state = 4}, - [1647] = {.lex_state = 113, .external_lex_state = 4}, - [1648] = {.lex_state = 113, .external_lex_state = 4}, - [1649] = {.lex_state = 113, .external_lex_state = 4}, - [1650] = {.lex_state = 113, .external_lex_state = 4}, - [1651] = {.lex_state = 113, .external_lex_state = 4}, - [1652] = {.lex_state = 113, .external_lex_state = 4}, - [1653] = {.lex_state = 113, .external_lex_state = 4}, + [1639] = {.lex_state = 102, .external_lex_state = 4}, + [1640] = {.lex_state = 102, .external_lex_state = 4}, + [1641] = {.lex_state = 102, .external_lex_state = 4}, + [1642] = {.lex_state = 102, .external_lex_state = 4}, + [1643] = {.lex_state = 102, .external_lex_state = 4}, + [1644] = {.lex_state = 102, .external_lex_state = 4}, + [1645] = {.lex_state = 102, .external_lex_state = 4}, + [1646] = {.lex_state = 102, .external_lex_state = 4}, + [1647] = {.lex_state = 102, .external_lex_state = 4}, + [1648] = {.lex_state = 102, .external_lex_state = 4}, + [1649] = {.lex_state = 102, .external_lex_state = 4}, + [1650] = {.lex_state = 102, .external_lex_state = 4}, + [1651] = {.lex_state = 102, .external_lex_state = 4}, + [1652] = {.lex_state = 102, .external_lex_state = 4}, + [1653] = {.lex_state = 102, .external_lex_state = 4}, [1654] = {.lex_state = 113, .external_lex_state = 4}, [1655] = {.lex_state = 113, .external_lex_state = 4}, [1656] = {.lex_state = 113, .external_lex_state = 4}, [1657] = {.lex_state = 113, .external_lex_state = 4}, - [1658] = {.lex_state = 113, .external_lex_state = 4}, - [1659] = {.lex_state = 113, .external_lex_state = 4}, - [1660] = {.lex_state = 113, .external_lex_state = 4}, - [1661] = {.lex_state = 113, .external_lex_state = 4}, - [1662] = {.lex_state = 113, .external_lex_state = 4}, - [1663] = {.lex_state = 113, .external_lex_state = 4}, - [1664] = {.lex_state = 113, .external_lex_state = 4}, - [1665] = {.lex_state = 113, .external_lex_state = 4}, - [1666] = {.lex_state = 113, .external_lex_state = 4}, - [1667] = {.lex_state = 113, .external_lex_state = 4}, + [1658] = {.lex_state = 102, .external_lex_state = 4}, + [1659] = {.lex_state = 102, .external_lex_state = 4}, + [1660] = {.lex_state = 102, .external_lex_state = 4}, + [1661] = {.lex_state = 102, .external_lex_state = 4}, + [1662] = {.lex_state = 102, .external_lex_state = 4}, + [1663] = {.lex_state = 102, .external_lex_state = 4}, + [1664] = {.lex_state = 102, .external_lex_state = 4}, + [1665] = {.lex_state = 102, .external_lex_state = 4}, + [1666] = {.lex_state = 102, .external_lex_state = 4}, + [1667] = {.lex_state = 102, .external_lex_state = 4}, [1668] = {.lex_state = 113, .external_lex_state = 4}, - [1669] = {.lex_state = 267, .external_lex_state = 5}, - [1670] = {.lex_state = 113, .external_lex_state = 4}, - [1671] = {.lex_state = 113, .external_lex_state = 4}, + [1669] = {.lex_state = 113, .external_lex_state = 4}, + [1670] = {.lex_state = 102, .external_lex_state = 4}, + [1671] = {.lex_state = 102, .external_lex_state = 4}, [1672] = {.lex_state = 267, .external_lex_state = 4}, - [1673] = {.lex_state = 267, .external_lex_state = 5}, - [1674] = {.lex_state = 113, .external_lex_state = 4}, - [1675] = {.lex_state = 113, .external_lex_state = 4}, - [1676] = {.lex_state = 267, .external_lex_state = 4}, - [1677] = {.lex_state = 267, .external_lex_state = 4}, - [1678] = {.lex_state = 113, .external_lex_state = 4}, - [1679] = {.lex_state = 113, .external_lex_state = 4}, - [1680] = {.lex_state = 113, .external_lex_state = 4}, - [1681] = {.lex_state = 113, .external_lex_state = 4}, - [1682] = {.lex_state = 267, .external_lex_state = 4}, - [1683] = {.lex_state = 267, .external_lex_state = 4}, - [1684] = {.lex_state = 267, .external_lex_state = 4}, - [1685] = {.lex_state = 267, .external_lex_state = 4}, - [1686] = {.lex_state = 267, .external_lex_state = 4}, - [1687] = {.lex_state = 102, .external_lex_state = 4}, - [1688] = {.lex_state = 102, .external_lex_state = 4}, - [1689] = {.lex_state = 267, .external_lex_state = 4}, - [1690] = {.lex_state = 267, .external_lex_state = 4}, - [1691] = {.lex_state = 267, .external_lex_state = 4}, - [1692] = {.lex_state = 102, .external_lex_state = 4}, - [1693] = {.lex_state = 267, .external_lex_state = 4}, - [1694] = {.lex_state = 267, .external_lex_state = 4}, - [1695] = {.lex_state = 102, .external_lex_state = 4}, + [1673] = {.lex_state = 113, .external_lex_state = 4}, + [1674] = {.lex_state = 102, .external_lex_state = 4}, + [1675] = {.lex_state = 102, .external_lex_state = 4}, + [1676] = {.lex_state = 102, .external_lex_state = 4}, + [1677] = {.lex_state = 113, .external_lex_state = 4}, + [1678] = {.lex_state = 102, .external_lex_state = 4}, + [1679] = {.lex_state = 102, .external_lex_state = 4}, + [1680] = {.lex_state = 102, .external_lex_state = 4}, + [1681] = {.lex_state = 102, .external_lex_state = 4}, + [1682] = {.lex_state = 102, .external_lex_state = 4}, + [1683] = {.lex_state = 102, .external_lex_state = 4}, + [1684] = {.lex_state = 113, .external_lex_state = 4}, + [1685] = {.lex_state = 113, .external_lex_state = 4}, + [1686] = {.lex_state = 113, .external_lex_state = 4}, + [1687] = {.lex_state = 113, .external_lex_state = 4}, + [1688] = {.lex_state = 113, .external_lex_state = 4}, + [1689] = {.lex_state = 102, .external_lex_state = 4}, + [1690] = {.lex_state = 113, .external_lex_state = 4}, + [1691] = {.lex_state = 113, .external_lex_state = 4}, + [1692] = {.lex_state = 113, .external_lex_state = 4}, + [1693] = {.lex_state = 113, .external_lex_state = 4}, + [1694] = {.lex_state = 113, .external_lex_state = 4}, + [1695] = {.lex_state = 113, .external_lex_state = 4}, [1696] = {.lex_state = 113, .external_lex_state = 4}, [1697] = {.lex_state = 113, .external_lex_state = 4}, [1698] = {.lex_state = 102, .external_lex_state = 4}, @@ -25370,194 +25355,194 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1700] = {.lex_state = 102, .external_lex_state = 4}, [1701] = {.lex_state = 102, .external_lex_state = 4}, [1702] = {.lex_state = 102, .external_lex_state = 4}, - [1703] = {.lex_state = 102, .external_lex_state = 4}, - [1704] = {.lex_state = 102, .external_lex_state = 4}, - [1705] = {.lex_state = 102, .external_lex_state = 4}, - [1706] = {.lex_state = 102, .external_lex_state = 4}, - [1707] = {.lex_state = 102, .external_lex_state = 4}, - [1708] = {.lex_state = 102, .external_lex_state = 4}, - [1709] = {.lex_state = 102, .external_lex_state = 4}, - [1710] = {.lex_state = 102, .external_lex_state = 4}, - [1711] = {.lex_state = 102, .external_lex_state = 4}, - [1712] = {.lex_state = 102, .external_lex_state = 4}, - [1713] = {.lex_state = 102, .external_lex_state = 4}, - [1714] = {.lex_state = 102, .external_lex_state = 4}, - [1715] = {.lex_state = 102, .external_lex_state = 4}, - [1716] = {.lex_state = 102, .external_lex_state = 4}, - [1717] = {.lex_state = 102, .external_lex_state = 4}, - [1718] = {.lex_state = 102, .external_lex_state = 4}, + [1703] = {.lex_state = 113, .external_lex_state = 4}, + [1704] = {.lex_state = 113, .external_lex_state = 4}, + [1705] = {.lex_state = 113, .external_lex_state = 4}, + [1706] = {.lex_state = 113, .external_lex_state = 4}, + [1707] = {.lex_state = 267, .external_lex_state = 4}, + [1708] = {.lex_state = 267, .external_lex_state = 4}, + [1709] = {.lex_state = 267, .external_lex_state = 4}, + [1710] = {.lex_state = 267, .external_lex_state = 4}, + [1711] = {.lex_state = 267, .external_lex_state = 4}, + [1712] = {.lex_state = 267, .external_lex_state = 4}, + [1713] = {.lex_state = 267, .external_lex_state = 4}, + [1714] = {.lex_state = 267, .external_lex_state = 4}, + [1715] = {.lex_state = 267, .external_lex_state = 4}, + [1716] = {.lex_state = 267, .external_lex_state = 4}, + [1717] = {.lex_state = 267, .external_lex_state = 4}, + [1718] = {.lex_state = 267, .external_lex_state = 4}, [1719] = {.lex_state = 102, .external_lex_state = 4}, - [1720] = {.lex_state = 102, .external_lex_state = 4}, + [1720] = {.lex_state = 267, .external_lex_state = 4}, [1721] = {.lex_state = 102, .external_lex_state = 4}, [1722] = {.lex_state = 102, .external_lex_state = 4}, - [1723] = {.lex_state = 102, .external_lex_state = 4}, - [1724] = {.lex_state = 102, .external_lex_state = 4}, - [1725] = {.lex_state = 102, .external_lex_state = 4}, + [1723] = {.lex_state = 267, .external_lex_state = 4}, + [1724] = {.lex_state = 267, .external_lex_state = 4}, + [1725] = {.lex_state = 267, .external_lex_state = 4}, [1726] = {.lex_state = 102, .external_lex_state = 4}, [1727] = {.lex_state = 102, .external_lex_state = 4}, - [1728] = {.lex_state = 102, .external_lex_state = 4}, - [1729] = {.lex_state = 102, .external_lex_state = 4}, - [1730] = {.lex_state = 102, .external_lex_state = 4}, + [1728] = {.lex_state = 113, .external_lex_state = 4}, + [1729] = {.lex_state = 267, .external_lex_state = 4}, + [1730] = {.lex_state = 113, .external_lex_state = 4}, [1731] = {.lex_state = 102, .external_lex_state = 4}, - [1732] = {.lex_state = 102, .external_lex_state = 4}, + [1732] = {.lex_state = 267, .external_lex_state = 5}, [1733] = {.lex_state = 102, .external_lex_state = 4}, [1734] = {.lex_state = 102, .external_lex_state = 4}, - [1735] = {.lex_state = 102, .external_lex_state = 4}, + [1735] = {.lex_state = 113, .external_lex_state = 4}, [1736] = {.lex_state = 102, .external_lex_state = 4}, [1737] = {.lex_state = 102, .external_lex_state = 4}, [1738] = {.lex_state = 102, .external_lex_state = 4}, [1739] = {.lex_state = 102, .external_lex_state = 4}, - [1740] = {.lex_state = 267, .external_lex_state = 5}, - [1741] = {.lex_state = 267, .external_lex_state = 5}, - [1742] = {.lex_state = 267, .external_lex_state = 5}, - [1743] = {.lex_state = 267, .external_lex_state = 5}, - [1744] = {.lex_state = 267, .external_lex_state = 5}, - [1745] = {.lex_state = 267, .external_lex_state = 5}, - [1746] = {.lex_state = 267, .external_lex_state = 5}, - [1747] = {.lex_state = 267, .external_lex_state = 5}, - [1748] = {.lex_state = 267, .external_lex_state = 5}, - [1749] = {.lex_state = 267, .external_lex_state = 5}, - [1750] = {.lex_state = 267, .external_lex_state = 5}, - [1751] = {.lex_state = 267, .external_lex_state = 5}, - [1752] = {.lex_state = 267, .external_lex_state = 5}, - [1753] = {.lex_state = 267, .external_lex_state = 5}, - [1754] = {.lex_state = 267, .external_lex_state = 5}, - [1755] = {.lex_state = 267, .external_lex_state = 5}, - [1756] = {.lex_state = 267, .external_lex_state = 5}, + [1740] = {.lex_state = 102, .external_lex_state = 4}, + [1741] = {.lex_state = 102, .external_lex_state = 4}, + [1742] = {.lex_state = 102, .external_lex_state = 4}, + [1743] = {.lex_state = 102, .external_lex_state = 4}, + [1744] = {.lex_state = 102, .external_lex_state = 4}, + [1745] = {.lex_state = 102, .external_lex_state = 4}, + [1746] = {.lex_state = 113, .external_lex_state = 4}, + [1747] = {.lex_state = 113, .external_lex_state = 4}, + [1748] = {.lex_state = 102, .external_lex_state = 4}, + [1749] = {.lex_state = 102, .external_lex_state = 4}, + [1750] = {.lex_state = 102, .external_lex_state = 4}, + [1751] = {.lex_state = 102, .external_lex_state = 4}, + [1752] = {.lex_state = 102, .external_lex_state = 4}, + [1753] = {.lex_state = 102, .external_lex_state = 4}, + [1754] = {.lex_state = 102, .external_lex_state = 4}, + [1755] = {.lex_state = 102, .external_lex_state = 4}, + [1756] = {.lex_state = 102, .external_lex_state = 4}, [1757] = {.lex_state = 102, .external_lex_state = 4}, [1758] = {.lex_state = 102, .external_lex_state = 4}, [1759] = {.lex_state = 102, .external_lex_state = 4}, - [1760] = {.lex_state = 102, .external_lex_state = 4}, + [1760] = {.lex_state = 113, .external_lex_state = 4}, [1761] = {.lex_state = 102, .external_lex_state = 4}, - [1762] = {.lex_state = 102, .external_lex_state = 4}, - [1763] = {.lex_state = 102, .external_lex_state = 4}, - [1764] = {.lex_state = 102, .external_lex_state = 4}, - [1765] = {.lex_state = 102, .external_lex_state = 4}, - [1766] = {.lex_state = 102, .external_lex_state = 4}, - [1767] = {.lex_state = 102, .external_lex_state = 4}, - [1768] = {.lex_state = 102, .external_lex_state = 4}, - [1769] = {.lex_state = 102, .external_lex_state = 4}, - [1770] = {.lex_state = 102, .external_lex_state = 4}, - [1771] = {.lex_state = 102, .external_lex_state = 4}, - [1772] = {.lex_state = 102, .external_lex_state = 4}, + [1762] = {.lex_state = 113, .external_lex_state = 4}, + [1763] = {.lex_state = 113, .external_lex_state = 4}, + [1764] = {.lex_state = 113, .external_lex_state = 4}, + [1765] = {.lex_state = 267, .external_lex_state = 4}, + [1766] = {.lex_state = 267, .external_lex_state = 4}, + [1767] = {.lex_state = 113, .external_lex_state = 4}, + [1768] = {.lex_state = 267, .external_lex_state = 5}, + [1769] = {.lex_state = 267, .external_lex_state = 4}, + [1770] = {.lex_state = 267, .external_lex_state = 4}, + [1771] = {.lex_state = 267, .external_lex_state = 5}, + [1772] = {.lex_state = 113, .external_lex_state = 4}, [1773] = {.lex_state = 102, .external_lex_state = 4}, [1774] = {.lex_state = 102, .external_lex_state = 4}, - [1775] = {.lex_state = 102, .external_lex_state = 4}, - [1776] = {.lex_state = 102, .external_lex_state = 4}, - [1777] = {.lex_state = 102, .external_lex_state = 4}, - [1778] = {.lex_state = 102, .external_lex_state = 4}, - [1779] = {.lex_state = 102, .external_lex_state = 4}, - [1780] = {.lex_state = 102, .external_lex_state = 4}, - [1781] = {.lex_state = 102, .external_lex_state = 4}, - [1782] = {.lex_state = 102, .external_lex_state = 4}, - [1783] = {.lex_state = 102, .external_lex_state = 4}, - [1784] = {.lex_state = 102, .external_lex_state = 4}, - [1785] = {.lex_state = 102, .external_lex_state = 4}, - [1786] = {.lex_state = 102, .external_lex_state = 4}, - [1787] = {.lex_state = 102, .external_lex_state = 4}, - [1788] = {.lex_state = 102, .external_lex_state = 4}, - [1789] = {.lex_state = 102, .external_lex_state = 4}, + [1775] = {.lex_state = 113, .external_lex_state = 4}, + [1776] = {.lex_state = 113, .external_lex_state = 4}, + [1777] = {.lex_state = 113, .external_lex_state = 4}, + [1778] = {.lex_state = 113, .external_lex_state = 4}, + [1779] = {.lex_state = 113, .external_lex_state = 4}, + [1780] = {.lex_state = 113, .external_lex_state = 4}, + [1781] = {.lex_state = 113, .external_lex_state = 4}, + [1782] = {.lex_state = 113, .external_lex_state = 4}, + [1783] = {.lex_state = 113, .external_lex_state = 4}, + [1784] = {.lex_state = 113, .external_lex_state = 4}, + [1785] = {.lex_state = 113, .external_lex_state = 4}, + [1786] = {.lex_state = 113, .external_lex_state = 4}, + [1787] = {.lex_state = 267, .external_lex_state = 5}, + [1788] = {.lex_state = 267, .external_lex_state = 5}, + [1789] = {.lex_state = 267, .external_lex_state = 5}, [1790] = {.lex_state = 102, .external_lex_state = 4}, [1791] = {.lex_state = 102, .external_lex_state = 4}, [1792] = {.lex_state = 102, .external_lex_state = 4}, - [1793] = {.lex_state = 102, .external_lex_state = 4}, - [1794] = {.lex_state = 102, .external_lex_state = 4}, - [1795] = {.lex_state = 116, .external_lex_state = 4}, - [1796] = {.lex_state = 269, .external_lex_state = 5}, - [1797] = {.lex_state = 269, .external_lex_state = 5}, - [1798] = {.lex_state = 269, .external_lex_state = 5}, - [1799] = {.lex_state = 269, .external_lex_state = 5}, + [1793] = {.lex_state = 267, .external_lex_state = 4}, + [1794] = {.lex_state = 113, .external_lex_state = 4}, + [1795] = {.lex_state = 267, .external_lex_state = 4}, + [1796] = {.lex_state = 267, .external_lex_state = 4}, + [1797] = {.lex_state = 102, .external_lex_state = 4}, + [1798] = {.lex_state = 102, .external_lex_state = 4}, + [1799] = {.lex_state = 102, .external_lex_state = 4}, [1800] = {.lex_state = 102, .external_lex_state = 4}, - [1801] = {.lex_state = 267, .external_lex_state = 5}, + [1801] = {.lex_state = 102, .external_lex_state = 4}, [1802] = {.lex_state = 102, .external_lex_state = 4}, [1803] = {.lex_state = 102, .external_lex_state = 4}, - [1804] = {.lex_state = 269, .external_lex_state = 5}, - [1805] = {.lex_state = 269, .external_lex_state = 5}, - [1806] = {.lex_state = 269, .external_lex_state = 5}, - [1807] = {.lex_state = 269, .external_lex_state = 5}, - [1808] = {.lex_state = 269, .external_lex_state = 5}, - [1809] = {.lex_state = 269, .external_lex_state = 5}, - [1810] = {.lex_state = 269, .external_lex_state = 5}, - [1811] = {.lex_state = 269, .external_lex_state = 5}, - [1812] = {.lex_state = 269, .external_lex_state = 5}, - [1813] = {.lex_state = 269, .external_lex_state = 5}, - [1814] = {.lex_state = 269, .external_lex_state = 5}, - [1815] = {.lex_state = 269, .external_lex_state = 5}, - [1816] = {.lex_state = 269, .external_lex_state = 5}, - [1817] = {.lex_state = 269, .external_lex_state = 5}, - [1818] = {.lex_state = 269, .external_lex_state = 5}, - [1819] = {.lex_state = 269, .external_lex_state = 5}, + [1804] = {.lex_state = 102, .external_lex_state = 4}, + [1805] = {.lex_state = 102, .external_lex_state = 4}, + [1806] = {.lex_state = 102, .external_lex_state = 4}, + [1807] = {.lex_state = 102, .external_lex_state = 4}, + [1808] = {.lex_state = 102, .external_lex_state = 4}, + [1809] = {.lex_state = 102, .external_lex_state = 4}, + [1810] = {.lex_state = 102, .external_lex_state = 4}, + [1811] = {.lex_state = 102, .external_lex_state = 4}, + [1812] = {.lex_state = 102, .external_lex_state = 4}, + [1813] = {.lex_state = 102, .external_lex_state = 4}, + [1814] = {.lex_state = 102, .external_lex_state = 4}, + [1815] = {.lex_state = 102, .external_lex_state = 4}, + [1816] = {.lex_state = 102, .external_lex_state = 4}, + [1817] = {.lex_state = 102, .external_lex_state = 4}, + [1818] = {.lex_state = 102, .external_lex_state = 4}, + [1819] = {.lex_state = 102, .external_lex_state = 4}, [1820] = {.lex_state = 102, .external_lex_state = 4}, [1821] = {.lex_state = 102, .external_lex_state = 4}, - [1822] = {.lex_state = 267, .external_lex_state = 5}, - [1823] = {.lex_state = 267, .external_lex_state = 5}, - [1824] = {.lex_state = 267, .external_lex_state = 5}, - [1825] = {.lex_state = 267, .external_lex_state = 5}, + [1822] = {.lex_state = 102, .external_lex_state = 4}, + [1823] = {.lex_state = 102, .external_lex_state = 4}, + [1824] = {.lex_state = 102, .external_lex_state = 4}, + [1825] = {.lex_state = 102, .external_lex_state = 4}, [1826] = {.lex_state = 102, .external_lex_state = 4}, - [1827] = {.lex_state = 267, .external_lex_state = 5}, + [1827] = {.lex_state = 102, .external_lex_state = 4}, [1828] = {.lex_state = 102, .external_lex_state = 4}, - [1829] = {.lex_state = 267, .external_lex_state = 5}, - [1830] = {.lex_state = 269, .external_lex_state = 5}, - [1831] = {.lex_state = 269, .external_lex_state = 5}, - [1832] = {.lex_state = 269, .external_lex_state = 5}, - [1833] = {.lex_state = 269, .external_lex_state = 5}, - [1834] = {.lex_state = 269, .external_lex_state = 5}, - [1835] = {.lex_state = 269, .external_lex_state = 5}, - [1836] = {.lex_state = 269, .external_lex_state = 5}, - [1837] = {.lex_state = 102, .external_lex_state = 4}, - [1838] = {.lex_state = 269, .external_lex_state = 5}, - [1839] = {.lex_state = 269, .external_lex_state = 5}, - [1840] = {.lex_state = 267, .external_lex_state = 5}, - [1841] = {.lex_state = 269, .external_lex_state = 5}, - [1842] = {.lex_state = 267, .external_lex_state = 5}, - [1843] = {.lex_state = 102, .external_lex_state = 4}, - [1844] = {.lex_state = 267, .external_lex_state = 4}, - [1845] = {.lex_state = 269, .external_lex_state = 5}, - [1846] = {.lex_state = 267, .external_lex_state = 5}, + [1829] = {.lex_state = 102, .external_lex_state = 4}, + [1830] = {.lex_state = 102, .external_lex_state = 4}, + [1831] = {.lex_state = 102, .external_lex_state = 4}, + [1832] = {.lex_state = 102, .external_lex_state = 4}, + [1833] = {.lex_state = 102, .external_lex_state = 4}, + [1834] = {.lex_state = 116, .external_lex_state = 4}, + [1835] = {.lex_state = 116, .external_lex_state = 4}, + [1836] = {.lex_state = 116, .external_lex_state = 4}, + [1837] = {.lex_state = 116, .external_lex_state = 4}, + [1838] = {.lex_state = 116, .external_lex_state = 4}, + [1839] = {.lex_state = 116, .external_lex_state = 4}, + [1840] = {.lex_state = 116, .external_lex_state = 4}, + [1841] = {.lex_state = 116, .external_lex_state = 4}, + [1842] = {.lex_state = 116, .external_lex_state = 4}, + [1843] = {.lex_state = 116, .external_lex_state = 4}, + [1844] = {.lex_state = 116, .external_lex_state = 4}, + [1845] = {.lex_state = 116, .external_lex_state = 4}, + [1846] = {.lex_state = 269, .external_lex_state = 5}, [1847] = {.lex_state = 269, .external_lex_state = 5}, - [1848] = {.lex_state = 267, .external_lex_state = 5}, - [1849] = {.lex_state = 267, .external_lex_state = 5}, - [1850] = {.lex_state = 267, .external_lex_state = 4}, - [1851] = {.lex_state = 267, .external_lex_state = 5}, - [1852] = {.lex_state = 102, .external_lex_state = 4}, - [1853] = {.lex_state = 267, .external_lex_state = 4}, - [1854] = {.lex_state = 102, .external_lex_state = 4}, - [1855] = {.lex_state = 102, .external_lex_state = 4}, - [1856] = {.lex_state = 267, .external_lex_state = 4}, - [1857] = {.lex_state = 102, .external_lex_state = 4}, - [1858] = {.lex_state = 267, .external_lex_state = 4}, + [1848] = {.lex_state = 269, .external_lex_state = 5}, + [1849] = {.lex_state = 269, .external_lex_state = 5}, + [1850] = {.lex_state = 269, .external_lex_state = 5}, + [1851] = {.lex_state = 269, .external_lex_state = 5}, + [1852] = {.lex_state = 269, .external_lex_state = 5}, + [1853] = {.lex_state = 269, .external_lex_state = 5}, + [1854] = {.lex_state = 269, .external_lex_state = 5}, + [1855] = {.lex_state = 269, .external_lex_state = 5}, + [1856] = {.lex_state = 269, .external_lex_state = 5}, + [1857] = {.lex_state = 269, .external_lex_state = 5}, + [1858] = {.lex_state = 102, .external_lex_state = 4}, [1859] = {.lex_state = 102, .external_lex_state = 4}, - [1860] = {.lex_state = 267, .external_lex_state = 4}, - [1861] = {.lex_state = 102, .external_lex_state = 4}, - [1862] = {.lex_state = 102, .external_lex_state = 4}, - [1863] = {.lex_state = 267, .external_lex_state = 4}, - [1864] = {.lex_state = 102, .external_lex_state = 4}, - [1865] = {.lex_state = 102, .external_lex_state = 4}, - [1866] = {.lex_state = 102, .external_lex_state = 4}, - [1867] = {.lex_state = 102, .external_lex_state = 4}, - [1868] = {.lex_state = 102, .external_lex_state = 4}, - [1869] = {.lex_state = 102, .external_lex_state = 4}, - [1870] = {.lex_state = 102, .external_lex_state = 4}, - [1871] = {.lex_state = 102, .external_lex_state = 4}, - [1872] = {.lex_state = 102, .external_lex_state = 4}, - [1873] = {.lex_state = 102, .external_lex_state = 4}, - [1874] = {.lex_state = 102, .external_lex_state = 4}, - [1875] = {.lex_state = 102, .external_lex_state = 4}, - [1876] = {.lex_state = 269, .external_lex_state = 5}, - [1877] = {.lex_state = 102, .external_lex_state = 4}, - [1878] = {.lex_state = 102, .external_lex_state = 4}, + [1860] = {.lex_state = 102, .external_lex_state = 4}, + [1861] = {.lex_state = 267, .external_lex_state = 5}, + [1862] = {.lex_state = 267, .external_lex_state = 5}, + [1863] = {.lex_state = 267, .external_lex_state = 5}, + [1864] = {.lex_state = 267, .external_lex_state = 5}, + [1865] = {.lex_state = 267, .external_lex_state = 5}, + [1866] = {.lex_state = 267, .external_lex_state = 5}, + [1867] = {.lex_state = 267, .external_lex_state = 5}, + [1868] = {.lex_state = 116, .external_lex_state = 4}, + [1869] = {.lex_state = 116, .external_lex_state = 4}, + [1870] = {.lex_state = 116, .external_lex_state = 4}, + [1871] = {.lex_state = 116, .external_lex_state = 4}, + [1872] = {.lex_state = 116, .external_lex_state = 4}, + [1873] = {.lex_state = 116, .external_lex_state = 4}, + [1874] = {.lex_state = 116, .external_lex_state = 4}, + [1875] = {.lex_state = 116, .external_lex_state = 4}, + [1876] = {.lex_state = 116, .external_lex_state = 4}, + [1877] = {.lex_state = 116, .external_lex_state = 4}, + [1878] = {.lex_state = 116, .external_lex_state = 4}, [1879] = {.lex_state = 116, .external_lex_state = 4}, [1880] = {.lex_state = 116, .external_lex_state = 4}, - [1881] = {.lex_state = 269, .external_lex_state = 5}, - [1882] = {.lex_state = 269, .external_lex_state = 5}, - [1883] = {.lex_state = 269, .external_lex_state = 5}, - [1884] = {.lex_state = 269, .external_lex_state = 5}, - [1885] = {.lex_state = 269, .external_lex_state = 5}, - [1886] = {.lex_state = 269, .external_lex_state = 5}, - [1887] = {.lex_state = 269, .external_lex_state = 5}, - [1888] = {.lex_state = 269, .external_lex_state = 5}, - [1889] = {.lex_state = 102, .external_lex_state = 4}, - [1890] = {.lex_state = 102, .external_lex_state = 4}, + [1881] = {.lex_state = 116, .external_lex_state = 4}, + [1882] = {.lex_state = 116, .external_lex_state = 4}, + [1883] = {.lex_state = 116, .external_lex_state = 4}, + [1884] = {.lex_state = 116, .external_lex_state = 4}, + [1885] = {.lex_state = 116, .external_lex_state = 4}, + [1886] = {.lex_state = 116, .external_lex_state = 4}, + [1887] = {.lex_state = 116, .external_lex_state = 4}, + [1888] = {.lex_state = 116, .external_lex_state = 4}, + [1889] = {.lex_state = 116, .external_lex_state = 4}, + [1890] = {.lex_state = 116, .external_lex_state = 4}, [1891] = {.lex_state = 116, .external_lex_state = 4}, [1892] = {.lex_state = 116, .external_lex_state = 4}, [1893] = {.lex_state = 116, .external_lex_state = 4}, @@ -25571,12 +25556,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1901] = {.lex_state = 116, .external_lex_state = 4}, [1902] = {.lex_state = 116, .external_lex_state = 4}, [1903] = {.lex_state = 116, .external_lex_state = 4}, - [1904] = {.lex_state = 269, .external_lex_state = 5}, + [1904] = {.lex_state = 116, .external_lex_state = 4}, [1905] = {.lex_state = 116, .external_lex_state = 4}, [1906] = {.lex_state = 116, .external_lex_state = 4}, - [1907] = {.lex_state = 102, .external_lex_state = 4}, + [1907] = {.lex_state = 116, .external_lex_state = 4}, [1908] = {.lex_state = 116, .external_lex_state = 4}, - [1909] = {.lex_state = 269, .external_lex_state = 5}, + [1909] = {.lex_state = 116, .external_lex_state = 4}, [1910] = {.lex_state = 116, .external_lex_state = 4}, [1911] = {.lex_state = 116, .external_lex_state = 4}, [1912] = {.lex_state = 116, .external_lex_state = 4}, @@ -25586,76 +25571,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1916] = {.lex_state = 116, .external_lex_state = 4}, [1917] = {.lex_state = 116, .external_lex_state = 4}, [1918] = {.lex_state = 116, .external_lex_state = 4}, - [1919] = {.lex_state = 102, .external_lex_state = 4}, - [1920] = {.lex_state = 102, .external_lex_state = 4}, - [1921] = {.lex_state = 267, .external_lex_state = 5}, - [1922] = {.lex_state = 102, .external_lex_state = 4}, - [1923] = {.lex_state = 102, .external_lex_state = 4}, - [1924] = {.lex_state = 102, .external_lex_state = 4}, - [1925] = {.lex_state = 269, .external_lex_state = 5}, - [1926] = {.lex_state = 269, .external_lex_state = 5}, - [1927] = {.lex_state = 269, .external_lex_state = 5}, - [1928] = {.lex_state = 269, .external_lex_state = 5}, - [1929] = {.lex_state = 269, .external_lex_state = 5}, - [1930] = {.lex_state = 269, .external_lex_state = 5}, - [1931] = {.lex_state = 102, .external_lex_state = 4}, + [1919] = {.lex_state = 116, .external_lex_state = 4}, + [1920] = {.lex_state = 116, .external_lex_state = 4}, + [1921] = {.lex_state = 116, .external_lex_state = 4}, + [1922] = {.lex_state = 116, .external_lex_state = 4}, + [1923] = {.lex_state = 116, .external_lex_state = 4}, + [1924] = {.lex_state = 116, .external_lex_state = 4}, + [1925] = {.lex_state = 116, .external_lex_state = 4}, + [1926] = {.lex_state = 116, .external_lex_state = 4}, + [1927] = {.lex_state = 116, .external_lex_state = 4}, + [1928] = {.lex_state = 116, .external_lex_state = 4}, + [1929] = {.lex_state = 116, .external_lex_state = 4}, + [1930] = {.lex_state = 116, .external_lex_state = 4}, + [1931] = {.lex_state = 116, .external_lex_state = 4}, [1932] = {.lex_state = 116, .external_lex_state = 4}, [1933] = {.lex_state = 116, .external_lex_state = 4}, - [1934] = {.lex_state = 267, .external_lex_state = 5}, + [1934] = {.lex_state = 116, .external_lex_state = 4}, [1935] = {.lex_state = 116, .external_lex_state = 4}, - [1936] = {.lex_state = 116, .external_lex_state = 4}, - [1937] = {.lex_state = 267, .external_lex_state = 5}, + [1936] = {.lex_state = 267, .external_lex_state = 4}, + [1937] = {.lex_state = 267, .external_lex_state = 4}, [1938] = {.lex_state = 102, .external_lex_state = 4}, - [1939] = {.lex_state = 267, .external_lex_state = 5}, - [1940] = {.lex_state = 267, .external_lex_state = 5}, - [1941] = {.lex_state = 267, .external_lex_state = 5}, - [1942] = {.lex_state = 102, .external_lex_state = 4}, + [1939] = {.lex_state = 267, .external_lex_state = 4}, + [1940] = {.lex_state = 267, .external_lex_state = 4}, + [1941] = {.lex_state = 267, .external_lex_state = 4}, + [1942] = {.lex_state = 267, .external_lex_state = 4}, [1943] = {.lex_state = 102, .external_lex_state = 4}, [1944] = {.lex_state = 102, .external_lex_state = 4}, - [1945] = {.lex_state = 267, .external_lex_state = 5}, - [1946] = {.lex_state = 116, .external_lex_state = 4}, - [1947] = {.lex_state = 116, .external_lex_state = 4}, - [1948] = {.lex_state = 116, .external_lex_state = 4}, - [1949] = {.lex_state = 116, .external_lex_state = 4}, - [1950] = {.lex_state = 116, .external_lex_state = 4}, - [1951] = {.lex_state = 267, .external_lex_state = 5}, - [1952] = {.lex_state = 267, .external_lex_state = 5}, - [1953] = {.lex_state = 116, .external_lex_state = 4}, - [1954] = {.lex_state = 267, .external_lex_state = 4}, - [1955] = {.lex_state = 267, .external_lex_state = 5}, - [1956] = {.lex_state = 116, .external_lex_state = 4}, - [1957] = {.lex_state = 267, .external_lex_state = 4}, + [1945] = {.lex_state = 102, .external_lex_state = 4}, + [1946] = {.lex_state = 102, .external_lex_state = 4}, + [1947] = {.lex_state = 102, .external_lex_state = 4}, + [1948] = {.lex_state = 102, .external_lex_state = 4}, + [1949] = {.lex_state = 102, .external_lex_state = 4}, + [1950] = {.lex_state = 102, .external_lex_state = 4}, + [1951] = {.lex_state = 102, .external_lex_state = 4}, + [1952] = {.lex_state = 102, .external_lex_state = 4}, + [1953] = {.lex_state = 102, .external_lex_state = 4}, + [1954] = {.lex_state = 102, .external_lex_state = 4}, + [1955] = {.lex_state = 102, .external_lex_state = 4}, + [1956] = {.lex_state = 102, .external_lex_state = 4}, + [1957] = {.lex_state = 102, .external_lex_state = 4}, [1958] = {.lex_state = 267, .external_lex_state = 4}, [1959] = {.lex_state = 267, .external_lex_state = 4}, [1960] = {.lex_state = 267, .external_lex_state = 4}, - [1961] = {.lex_state = 116, .external_lex_state = 4}, - [1962] = {.lex_state = 116, .external_lex_state = 4}, - [1963] = {.lex_state = 267, .external_lex_state = 4}, - [1964] = {.lex_state = 116, .external_lex_state = 4}, - [1965] = {.lex_state = 116, .external_lex_state = 4}, - [1966] = {.lex_state = 116, .external_lex_state = 4}, + [1961] = {.lex_state = 102, .external_lex_state = 4}, + [1962] = {.lex_state = 102, .external_lex_state = 4}, + [1963] = {.lex_state = 267, .external_lex_state = 5}, + [1964] = {.lex_state = 267, .external_lex_state = 5}, + [1965] = {.lex_state = 267, .external_lex_state = 5}, + [1966] = {.lex_state = 269, .external_lex_state = 5}, [1967] = {.lex_state = 267, .external_lex_state = 4}, [1968] = {.lex_state = 267, .external_lex_state = 4}, [1969] = {.lex_state = 267, .external_lex_state = 4}, [1970] = {.lex_state = 267, .external_lex_state = 4}, [1971] = {.lex_state = 267, .external_lex_state = 4}, - [1972] = {.lex_state = 116, .external_lex_state = 4}, + [1972] = {.lex_state = 269, .external_lex_state = 5}, [1973] = {.lex_state = 267, .external_lex_state = 4}, [1974] = {.lex_state = 267, .external_lex_state = 4}, - [1975] = {.lex_state = 116, .external_lex_state = 4}, - [1976] = {.lex_state = 116, .external_lex_state = 4}, - [1977] = {.lex_state = 116, .external_lex_state = 4}, + [1975] = {.lex_state = 269, .external_lex_state = 5}, + [1976] = {.lex_state = 269, .external_lex_state = 5}, + [1977] = {.lex_state = 269, .external_lex_state = 5}, [1978] = {.lex_state = 267, .external_lex_state = 4}, - [1979] = {.lex_state = 116, .external_lex_state = 4}, - [1980] = {.lex_state = 116, .external_lex_state = 4}, - [1981] = {.lex_state = 116, .external_lex_state = 4}, + [1979] = {.lex_state = 269, .external_lex_state = 5}, + [1980] = {.lex_state = 269, .external_lex_state = 5}, + [1981] = {.lex_state = 269, .external_lex_state = 5}, [1982] = {.lex_state = 267, .external_lex_state = 4}, [1983] = {.lex_state = 267, .external_lex_state = 4}, - [1984] = {.lex_state = 102, .external_lex_state = 4}, + [1984] = {.lex_state = 269, .external_lex_state = 5}, [1985] = {.lex_state = 267, .external_lex_state = 5}, [1986] = {.lex_state = 267, .external_lex_state = 5}, - [1987] = {.lex_state = 116, .external_lex_state = 4}, - [1988] = {.lex_state = 102, .external_lex_state = 4}, + [1987] = {.lex_state = 269, .external_lex_state = 5}, + [1988] = {.lex_state = 269, .external_lex_state = 5}, [1989] = {.lex_state = 269, .external_lex_state = 5}, [1990] = {.lex_state = 267, .external_lex_state = 4}, [1991] = {.lex_state = 267, .external_lex_state = 4}, @@ -25663,124 +25648,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1993] = {.lex_state = 267, .external_lex_state = 4}, [1994] = {.lex_state = 267, .external_lex_state = 4}, [1995] = {.lex_state = 267, .external_lex_state = 4}, - [1996] = {.lex_state = 116, .external_lex_state = 4}, + [1996] = {.lex_state = 269, .external_lex_state = 5}, [1997] = {.lex_state = 267, .external_lex_state = 4}, - [1998] = {.lex_state = 116, .external_lex_state = 4}, + [1998] = {.lex_state = 269, .external_lex_state = 5}, [1999] = {.lex_state = 267, .external_lex_state = 4}, - [2000] = {.lex_state = 116, .external_lex_state = 4}, + [2000] = {.lex_state = 269, .external_lex_state = 5}, [2001] = {.lex_state = 269, .external_lex_state = 5}, - [2002] = {.lex_state = 116, .external_lex_state = 4}, + [2002] = {.lex_state = 267, .external_lex_state = 5}, [2003] = {.lex_state = 269, .external_lex_state = 5}, [2004] = {.lex_state = 269, .external_lex_state = 5}, [2005] = {.lex_state = 269, .external_lex_state = 5}, - [2006] = {.lex_state = 116, .external_lex_state = 4}, - [2007] = {.lex_state = 116, .external_lex_state = 4}, + [2006] = {.lex_state = 269, .external_lex_state = 5}, + [2007] = {.lex_state = 269, .external_lex_state = 5}, [2008] = {.lex_state = 269, .external_lex_state = 5}, [2009] = {.lex_state = 269, .external_lex_state = 5}, - [2010] = {.lex_state = 116, .external_lex_state = 4}, + [2010] = {.lex_state = 269, .external_lex_state = 5}, [2011] = {.lex_state = 269, .external_lex_state = 5}, [2012] = {.lex_state = 269, .external_lex_state = 5}, - [2013] = {.lex_state = 102, .external_lex_state = 4}, - [2014] = {.lex_state = 116, .external_lex_state = 4}, + [2013] = {.lex_state = 269, .external_lex_state = 5}, + [2014] = {.lex_state = 269, .external_lex_state = 5}, [2015] = {.lex_state = 269, .external_lex_state = 5}, [2016] = {.lex_state = 269, .external_lex_state = 5}, [2017] = {.lex_state = 269, .external_lex_state = 5}, - [2018] = {.lex_state = 102, .external_lex_state = 4}, - [2019] = {.lex_state = 102, .external_lex_state = 4}, + [2018] = {.lex_state = 269, .external_lex_state = 5}, + [2019] = {.lex_state = 267, .external_lex_state = 5}, [2020] = {.lex_state = 267, .external_lex_state = 4}, [2021] = {.lex_state = 267, .external_lex_state = 5}, [2022] = {.lex_state = 267, .external_lex_state = 5}, - [2023] = {.lex_state = 267, .external_lex_state = 5}, - [2024] = {.lex_state = 267, .external_lex_state = 4}, + [2023] = {.lex_state = 269, .external_lex_state = 5}, + [2024] = {.lex_state = 269, .external_lex_state = 5}, [2025] = {.lex_state = 267, .external_lex_state = 4}, - [2026] = {.lex_state = 267, .external_lex_state = 4}, + [2026] = {.lex_state = 269, .external_lex_state = 5}, [2027] = {.lex_state = 269, .external_lex_state = 5}, - [2028] = {.lex_state = 267, .external_lex_state = 4}, + [2028] = {.lex_state = 269, .external_lex_state = 5}, [2029] = {.lex_state = 267, .external_lex_state = 4}, [2030] = {.lex_state = 267, .external_lex_state = 4}, - [2031] = {.lex_state = 267, .external_lex_state = 4}, + [2031] = {.lex_state = 269, .external_lex_state = 5}, [2032] = {.lex_state = 267, .external_lex_state = 4}, [2033] = {.lex_state = 267, .external_lex_state = 4}, - [2034] = {.lex_state = 267, .external_lex_state = 4}, - [2035] = {.lex_state = 267, .external_lex_state = 4}, + [2034] = {.lex_state = 269, .external_lex_state = 5}, + [2035] = {.lex_state = 269, .external_lex_state = 5}, [2036] = {.lex_state = 269, .external_lex_state = 5}, - [2037] = {.lex_state = 102, .external_lex_state = 4}, - [2038] = {.lex_state = 269, .external_lex_state = 5}, + [2037] = {.lex_state = 269, .external_lex_state = 5}, + [2038] = {.lex_state = 267, .external_lex_state = 4}, [2039] = {.lex_state = 267, .external_lex_state = 4}, [2040] = {.lex_state = 267, .external_lex_state = 4}, [2041] = {.lex_state = 267, .external_lex_state = 4}, [2042] = {.lex_state = 267, .external_lex_state = 4}, - [2043] = {.lex_state = 267, .external_lex_state = 4}, - [2044] = {.lex_state = 267, .external_lex_state = 4}, - [2045] = {.lex_state = 267, .external_lex_state = 4}, - [2046] = {.lex_state = 116, .external_lex_state = 4}, - [2047] = {.lex_state = 116, .external_lex_state = 4}, - [2048] = {.lex_state = 116, .external_lex_state = 4}, - [2049] = {.lex_state = 116, .external_lex_state = 4}, - [2050] = {.lex_state = 116, .external_lex_state = 4}, - [2051] = {.lex_state = 116, .external_lex_state = 4}, - [2052] = {.lex_state = 116, .external_lex_state = 4}, - [2053] = {.lex_state = 116, .external_lex_state = 4}, - [2054] = {.lex_state = 116, .external_lex_state = 4}, - [2055] = {.lex_state = 116, .external_lex_state = 4}, - [2056] = {.lex_state = 116, .external_lex_state = 4}, - [2057] = {.lex_state = 116, .external_lex_state = 4}, - [2058] = {.lex_state = 116, .external_lex_state = 4}, - [2059] = {.lex_state = 116, .external_lex_state = 4}, - [2060] = {.lex_state = 116, .external_lex_state = 4}, - [2061] = {.lex_state = 116, .external_lex_state = 4}, - [2062] = {.lex_state = 116, .external_lex_state = 4}, + [2043] = {.lex_state = 269, .external_lex_state = 5}, + [2044] = {.lex_state = 269, .external_lex_state = 5}, + [2045] = {.lex_state = 269, .external_lex_state = 5}, + [2046] = {.lex_state = 269, .external_lex_state = 5}, + [2047] = {.lex_state = 269, .external_lex_state = 5}, + [2048] = {.lex_state = 269, .external_lex_state = 5}, + [2049] = {.lex_state = 267, .external_lex_state = 5}, + [2050] = {.lex_state = 267, .external_lex_state = 5}, + [2051] = {.lex_state = 267, .external_lex_state = 5}, + [2052] = {.lex_state = 267, .external_lex_state = 5}, + [2053] = {.lex_state = 267, .external_lex_state = 5}, + [2054] = {.lex_state = 269, .external_lex_state = 5}, + [2055] = {.lex_state = 269, .external_lex_state = 5}, + [2056] = {.lex_state = 269, .external_lex_state = 5}, + [2057] = {.lex_state = 269, .external_lex_state = 5}, + [2058] = {.lex_state = 269, .external_lex_state = 5}, + [2059] = {.lex_state = 269, .external_lex_state = 5}, + [2060] = {.lex_state = 269, .external_lex_state = 5}, + [2061] = {.lex_state = 269, .external_lex_state = 5}, + [2062] = {.lex_state = 269, .external_lex_state = 5}, [2063] = {.lex_state = 267, .external_lex_state = 4}, [2064] = {.lex_state = 267, .external_lex_state = 4}, [2065] = {.lex_state = 267, .external_lex_state = 4}, - [2066] = {.lex_state = 116, .external_lex_state = 4}, - [2067] = {.lex_state = 116, .external_lex_state = 4}, - [2068] = {.lex_state = 116, .external_lex_state = 4}, + [2066] = {.lex_state = 269, .external_lex_state = 5}, + [2067] = {.lex_state = 269, .external_lex_state = 5}, + [2068] = {.lex_state = 269, .external_lex_state = 5}, [2069] = {.lex_state = 267, .external_lex_state = 4}, - [2070] = {.lex_state = 102, .external_lex_state = 4}, - [2071] = {.lex_state = 102, .external_lex_state = 4}, - [2072] = {.lex_state = 267, .external_lex_state = 4}, + [2070] = {.lex_state = 269, .external_lex_state = 5}, + [2071] = {.lex_state = 269, .external_lex_state = 5}, + [2072] = {.lex_state = 269, .external_lex_state = 5}, [2073] = {.lex_state = 269, .external_lex_state = 5}, [2074] = {.lex_state = 269, .external_lex_state = 5}, [2075] = {.lex_state = 267, .external_lex_state = 4}, [2076] = {.lex_state = 269, .external_lex_state = 5}, [2077] = {.lex_state = 269, .external_lex_state = 5}, [2078] = {.lex_state = 269, .external_lex_state = 5}, - [2079] = {.lex_state = 269, .external_lex_state = 5}, - [2080] = {.lex_state = 269, .external_lex_state = 5}, - [2081] = {.lex_state = 269, .external_lex_state = 5}, - [2082] = {.lex_state = 269, .external_lex_state = 5}, - [2083] = {.lex_state = 269, .external_lex_state = 5}, - [2084] = {.lex_state = 269, .external_lex_state = 5}, - [2085] = {.lex_state = 269, .external_lex_state = 5}, + [2079] = {.lex_state = 267, .external_lex_state = 5}, + [2080] = {.lex_state = 267, .external_lex_state = 5}, + [2081] = {.lex_state = 267, .external_lex_state = 5}, + [2082] = {.lex_state = 267, .external_lex_state = 5}, + [2083] = {.lex_state = 267, .external_lex_state = 5}, + [2084] = {.lex_state = 267, .external_lex_state = 5}, + [2085] = {.lex_state = 267, .external_lex_state = 5}, [2086] = {.lex_state = 267, .external_lex_state = 4}, - [2087] = {.lex_state = 102, .external_lex_state = 4}, - [2088] = {.lex_state = 102, .external_lex_state = 4}, - [2089] = {.lex_state = 267, .external_lex_state = 4}, + [2087] = {.lex_state = 267, .external_lex_state = 5}, + [2088] = {.lex_state = 267, .external_lex_state = 5}, + [2089] = {.lex_state = 267, .external_lex_state = 5}, [2090] = {.lex_state = 267, .external_lex_state = 4}, - [2091] = {.lex_state = 269, .external_lex_state = 5}, + [2091] = {.lex_state = 267, .external_lex_state = 5}, [2092] = {.lex_state = 267, .external_lex_state = 4}, [2093] = {.lex_state = 267, .external_lex_state = 4}, [2094] = {.lex_state = 267, .external_lex_state = 4}, - [2095] = {.lex_state = 102, .external_lex_state = 4}, + [2095] = {.lex_state = 267, .external_lex_state = 5}, [2096] = {.lex_state = 267, .external_lex_state = 4}, [2097] = {.lex_state = 267, .external_lex_state = 4}, [2098] = {.lex_state = 267, .external_lex_state = 4}, - [2099] = {.lex_state = 269, .external_lex_state = 5}, - [2100] = {.lex_state = 269, .external_lex_state = 5}, + [2099] = {.lex_state = 267, .external_lex_state = 4}, + [2100] = {.lex_state = 267, .external_lex_state = 4}, [2101] = {.lex_state = 267, .external_lex_state = 4}, - [2102] = {.lex_state = 269, .external_lex_state = 5}, - [2103] = {.lex_state = 102, .external_lex_state = 4}, + [2102] = {.lex_state = 267, .external_lex_state = 4}, + [2103] = {.lex_state = 267, .external_lex_state = 4}, [2104] = {.lex_state = 267, .external_lex_state = 4}, [2105] = {.lex_state = 267, .external_lex_state = 4}, [2106] = {.lex_state = 267, .external_lex_state = 4}, [2107] = {.lex_state = 267, .external_lex_state = 4}, [2108] = {.lex_state = 267, .external_lex_state = 4}, [2109] = {.lex_state = 267, .external_lex_state = 4}, - [2110] = {.lex_state = 267, .external_lex_state = 5}, - [2111] = {.lex_state = 102, .external_lex_state = 4}, - [2112] = {.lex_state = 267, .external_lex_state = 5}, - [2113] = {.lex_state = 102, .external_lex_state = 4}, + [2110] = {.lex_state = 267, .external_lex_state = 4}, + [2111] = {.lex_state = 267, .external_lex_state = 4}, + [2112] = {.lex_state = 267, .external_lex_state = 4}, + [2113] = {.lex_state = 267, .external_lex_state = 4}, [2114] = {.lex_state = 267, .external_lex_state = 4}, [2115] = {.lex_state = 267, .external_lex_state = 4}, [2116] = {.lex_state = 267, .external_lex_state = 4}, @@ -25791,21 +25776,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2121] = {.lex_state = 267, .external_lex_state = 4}, [2122] = {.lex_state = 267, .external_lex_state = 4}, [2123] = {.lex_state = 267, .external_lex_state = 4}, - [2124] = {.lex_state = 102, .external_lex_state = 4}, + [2124] = {.lex_state = 267, .external_lex_state = 4}, [2125] = {.lex_state = 267, .external_lex_state = 4}, [2126] = {.lex_state = 267, .external_lex_state = 4}, [2127] = {.lex_state = 267, .external_lex_state = 4}, [2128] = {.lex_state = 267, .external_lex_state = 4}, [2129] = {.lex_state = 267, .external_lex_state = 4}, - [2130] = {.lex_state = 267, .external_lex_state = 5}, - [2131] = {.lex_state = 267, .external_lex_state = 5}, + [2130] = {.lex_state = 267, .external_lex_state = 4}, + [2131] = {.lex_state = 267, .external_lex_state = 4}, [2132] = {.lex_state = 267, .external_lex_state = 4}, - [2133] = {.lex_state = 267, .external_lex_state = 5}, - [2134] = {.lex_state = 121, .external_lex_state = 5}, - [2135] = {.lex_state = 267, .external_lex_state = 5}, + [2133] = {.lex_state = 267, .external_lex_state = 4}, + [2134] = {.lex_state = 267, .external_lex_state = 5}, + [2135] = {.lex_state = 121, .external_lex_state = 5}, [2136] = {.lex_state = 267, .external_lex_state = 5}, [2137] = {.lex_state = 267, .external_lex_state = 5}, - [2138] = {.lex_state = 267, .external_lex_state = 5}, + [2138] = {.lex_state = 267, .external_lex_state = 4}, [2139] = {.lex_state = 267, .external_lex_state = 5}, [2140] = {.lex_state = 267, .external_lex_state = 5}, [2141] = {.lex_state = 267, .external_lex_state = 5}, @@ -25814,43 +25799,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2144] = {.lex_state = 267, .external_lex_state = 4}, [2145] = {.lex_state = 267, .external_lex_state = 4}, [2146] = {.lex_state = 267, .external_lex_state = 4}, - [2147] = {.lex_state = 267, .external_lex_state = 4}, + [2147] = {.lex_state = 267, .external_lex_state = 5}, [2148] = {.lex_state = 267, .external_lex_state = 4}, [2149] = {.lex_state = 267, .external_lex_state = 4}, - [2150] = {.lex_state = 121, .external_lex_state = 5}, + [2150] = {.lex_state = 267, .external_lex_state = 4}, [2151] = {.lex_state = 267, .external_lex_state = 4}, - [2152] = {.lex_state = 121, .external_lex_state = 5}, + [2152] = {.lex_state = 267, .external_lex_state = 4}, [2153] = {.lex_state = 267, .external_lex_state = 4}, [2154] = {.lex_state = 267, .external_lex_state = 4}, - [2155] = {.lex_state = 121, .external_lex_state = 5}, + [2155] = {.lex_state = 267, .external_lex_state = 4}, [2156] = {.lex_state = 267, .external_lex_state = 4}, [2157] = {.lex_state = 267, .external_lex_state = 4}, - [2158] = {.lex_state = 267, .external_lex_state = 4}, - [2159] = {.lex_state = 267, .external_lex_state = 4}, + [2158] = {.lex_state = 267, .external_lex_state = 5}, + [2159] = {.lex_state = 267, .external_lex_state = 5}, [2160] = {.lex_state = 267, .external_lex_state = 4}, - [2161] = {.lex_state = 267, .external_lex_state = 5}, + [2161] = {.lex_state = 267, .external_lex_state = 4}, [2162] = {.lex_state = 267, .external_lex_state = 4}, - [2163] = {.lex_state = 121, .external_lex_state = 5}, + [2163] = {.lex_state = 267, .external_lex_state = 4}, [2164] = {.lex_state = 267, .external_lex_state = 4}, - [2165] = {.lex_state = 121, .external_lex_state = 5}, - [2166] = {.lex_state = 121, .external_lex_state = 5}, - [2167] = {.lex_state = 267, .external_lex_state = 4}, - [2168] = {.lex_state = 267, .external_lex_state = 4}, - [2169] = {.lex_state = 267, .external_lex_state = 4}, + [2165] = {.lex_state = 267, .external_lex_state = 4}, + [2166] = {.lex_state = 267, .external_lex_state = 4}, + [2167] = {.lex_state = 267, .external_lex_state = 5}, + [2168] = {.lex_state = 102, .external_lex_state = 5}, + [2169] = {.lex_state = 102, .external_lex_state = 5}, [2170] = {.lex_state = 102, .external_lex_state = 5}, - [2171] = {.lex_state = 267, .external_lex_state = 5}, + [2171] = {.lex_state = 102, .external_lex_state = 5}, [2172] = {.lex_state = 102, .external_lex_state = 5}, - [2173] = {.lex_state = 267, .external_lex_state = 5}, - [2174] = {.lex_state = 267, .external_lex_state = 5}, - [2175] = {.lex_state = 121, .external_lex_state = 5}, - [2176] = {.lex_state = 267, .external_lex_state = 5}, - [2177] = {.lex_state = 267, .external_lex_state = 5}, + [2173] = {.lex_state = 102, .external_lex_state = 5}, + [2174] = {.lex_state = 102, .external_lex_state = 5}, + [2175] = {.lex_state = 267, .external_lex_state = 5}, + [2176] = {.lex_state = 102, .external_lex_state = 5}, + [2177] = {.lex_state = 102, .external_lex_state = 5}, [2178] = {.lex_state = 267, .external_lex_state = 5}, - [2179] = {.lex_state = 267, .external_lex_state = 5}, + [2179] = {.lex_state = 102, .external_lex_state = 5}, [2180] = {.lex_state = 267, .external_lex_state = 5}, [2181] = {.lex_state = 267, .external_lex_state = 5}, - [2182] = {.lex_state = 267, .external_lex_state = 5}, - [2183] = {.lex_state = 267, .external_lex_state = 5}, + [2182] = {.lex_state = 102, .external_lex_state = 5}, + [2183] = {.lex_state = 267, .external_lex_state = 4}, [2184] = {.lex_state = 267, .external_lex_state = 5}, [2185] = {.lex_state = 267, .external_lex_state = 5}, [2186] = {.lex_state = 267, .external_lex_state = 5}, @@ -25865,31 +25850,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2195] = {.lex_state = 267, .external_lex_state = 5}, [2196] = {.lex_state = 267, .external_lex_state = 5}, [2197] = {.lex_state = 267, .external_lex_state = 5}, - [2198] = {.lex_state = 121, .external_lex_state = 5}, - [2199] = {.lex_state = 121, .external_lex_state = 5}, - [2200] = {.lex_state = 121, .external_lex_state = 5}, + [2198] = {.lex_state = 267, .external_lex_state = 5}, + [2199] = {.lex_state = 267, .external_lex_state = 5}, + [2200] = {.lex_state = 267, .external_lex_state = 5}, [2201] = {.lex_state = 267, .external_lex_state = 5}, [2202] = {.lex_state = 267, .external_lex_state = 5}, - [2203] = {.lex_state = 267, .external_lex_state = 4}, - [2204] = {.lex_state = 267, .external_lex_state = 4}, - [2205] = {.lex_state = 267, .external_lex_state = 4}, + [2203] = {.lex_state = 267, .external_lex_state = 5}, + [2204] = {.lex_state = 267, .external_lex_state = 5}, + [2205] = {.lex_state = 267, .external_lex_state = 5}, [2206] = {.lex_state = 267, .external_lex_state = 5}, - [2207] = {.lex_state = 102, .external_lex_state = 5}, + [2207] = {.lex_state = 267, .external_lex_state = 5}, [2208] = {.lex_state = 267, .external_lex_state = 5}, [2209] = {.lex_state = 267, .external_lex_state = 5}, - [2210] = {.lex_state = 267, .external_lex_state = 5}, - [2211] = {.lex_state = 267, .external_lex_state = 5}, - [2212] = {.lex_state = 102, .external_lex_state = 5}, + [2210] = {.lex_state = 267, .external_lex_state = 4}, + [2211] = {.lex_state = 267, .external_lex_state = 4}, + [2212] = {.lex_state = 267, .external_lex_state = 5}, [2213] = {.lex_state = 267, .external_lex_state = 5}, [2214] = {.lex_state = 267, .external_lex_state = 5}, - [2215] = {.lex_state = 102, .external_lex_state = 5}, - [2216] = {.lex_state = 267, .external_lex_state = 5}, + [2215] = {.lex_state = 267, .external_lex_state = 5}, + [2216] = {.lex_state = 102, .external_lex_state = 5}, [2217] = {.lex_state = 267, .external_lex_state = 5}, [2218] = {.lex_state = 267, .external_lex_state = 5}, [2219] = {.lex_state = 267, .external_lex_state = 5}, [2220] = {.lex_state = 267, .external_lex_state = 5}, [2221] = {.lex_state = 267, .external_lex_state = 5}, - [2222] = {.lex_state = 267, .external_lex_state = 5}, + [2222] = {.lex_state = 267, .external_lex_state = 4}, [2223] = {.lex_state = 267, .external_lex_state = 5}, [2224] = {.lex_state = 267, .external_lex_state = 5}, [2225] = {.lex_state = 267, .external_lex_state = 5}, @@ -25907,50 +25892,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2237] = {.lex_state = 267, .external_lex_state = 5}, [2238] = {.lex_state = 267, .external_lex_state = 5}, [2239] = {.lex_state = 267, .external_lex_state = 5}, - [2240] = {.lex_state = 102, .external_lex_state = 5}, - [2241] = {.lex_state = 121, .external_lex_state = 5}, - [2242] = {.lex_state = 121, .external_lex_state = 5}, - [2243] = {.lex_state = 121, .external_lex_state = 5}, - [2244] = {.lex_state = 121, .external_lex_state = 5}, + [2240] = {.lex_state = 267, .external_lex_state = 5}, + [2241] = {.lex_state = 267, .external_lex_state = 5}, + [2242] = {.lex_state = 267, .external_lex_state = 5}, + [2243] = {.lex_state = 267, .external_lex_state = 5}, + [2244] = {.lex_state = 267, .external_lex_state = 5}, [2245] = {.lex_state = 267, .external_lex_state = 5}, [2246] = {.lex_state = 267, .external_lex_state = 5}, - [2247] = {.lex_state = 121, .external_lex_state = 5}, - [2248] = {.lex_state = 121, .external_lex_state = 5}, - [2249] = {.lex_state = 121, .external_lex_state = 5}, - [2250] = {.lex_state = 121, .external_lex_state = 5}, + [2247] = {.lex_state = 267, .external_lex_state = 5}, + [2248] = {.lex_state = 267, .external_lex_state = 5}, + [2249] = {.lex_state = 267, .external_lex_state = 5}, + [2250] = {.lex_state = 267, .external_lex_state = 5}, [2251] = {.lex_state = 121, .external_lex_state = 5}, [2252] = {.lex_state = 121, .external_lex_state = 5}, [2253] = {.lex_state = 121, .external_lex_state = 5}, [2254] = {.lex_state = 121, .external_lex_state = 5}, [2255] = {.lex_state = 121, .external_lex_state = 5}, [2256] = {.lex_state = 121, .external_lex_state = 5}, - [2257] = {.lex_state = 121, .external_lex_state = 5}, - [2258] = {.lex_state = 121, .external_lex_state = 5}, + [2257] = {.lex_state = 267, .external_lex_state = 5}, + [2258] = {.lex_state = 267, .external_lex_state = 5}, [2259] = {.lex_state = 267, .external_lex_state = 5}, - [2260] = {.lex_state = 267, .external_lex_state = 4}, - [2261] = {.lex_state = 121, .external_lex_state = 5}, - [2262] = {.lex_state = 121, .external_lex_state = 5}, - [2263] = {.lex_state = 121, .external_lex_state = 5}, - [2264] = {.lex_state = 121, .external_lex_state = 5}, - [2265] = {.lex_state = 121, .external_lex_state = 5}, - [2266] = {.lex_state = 121, .external_lex_state = 5}, + [2260] = {.lex_state = 267, .external_lex_state = 5}, + [2261] = {.lex_state = 267, .external_lex_state = 5}, + [2262] = {.lex_state = 267, .external_lex_state = 5}, + [2263] = {.lex_state = 267, .external_lex_state = 5}, + [2264] = {.lex_state = 267, .external_lex_state = 5}, + [2265] = {.lex_state = 267, .external_lex_state = 5}, + [2266] = {.lex_state = 267, .external_lex_state = 5}, [2267] = {.lex_state = 267, .external_lex_state = 5}, - [2268] = {.lex_state = 121, .external_lex_state = 5}, - [2269] = {.lex_state = 121, .external_lex_state = 5}, - [2270] = {.lex_state = 121, .external_lex_state = 5}, - [2271] = {.lex_state = 121, .external_lex_state = 5}, - [2272] = {.lex_state = 121, .external_lex_state = 5}, + [2268] = {.lex_state = 267, .external_lex_state = 5}, + [2269] = {.lex_state = 267, .external_lex_state = 5}, + [2270] = {.lex_state = 267, .external_lex_state = 5}, + [2271] = {.lex_state = 267, .external_lex_state = 5}, + [2272] = {.lex_state = 267, .external_lex_state = 5}, [2273] = {.lex_state = 267, .external_lex_state = 5}, [2274] = {.lex_state = 267, .external_lex_state = 5}, - [2275] = {.lex_state = 121, .external_lex_state = 5}, - [2276] = {.lex_state = 121, .external_lex_state = 5}, - [2277] = {.lex_state = 121, .external_lex_state = 5}, - [2278] = {.lex_state = 121, .external_lex_state = 5}, + [2275] = {.lex_state = 267, .external_lex_state = 5}, + [2276] = {.lex_state = 267, .external_lex_state = 5}, + [2277] = {.lex_state = 267, .external_lex_state = 5}, + [2278] = {.lex_state = 267, .external_lex_state = 5}, [2279] = {.lex_state = 267, .external_lex_state = 5}, [2280] = {.lex_state = 267, .external_lex_state = 5}, - [2281] = {.lex_state = 267, .external_lex_state = 5}, + [2281] = {.lex_state = 102, .external_lex_state = 5}, [2282] = {.lex_state = 267, .external_lex_state = 5}, - [2283] = {.lex_state = 267, .external_lex_state = 4}, + [2283] = {.lex_state = 121, .external_lex_state = 5}, [2284] = {.lex_state = 121, .external_lex_state = 5}, [2285] = {.lex_state = 121, .external_lex_state = 5}, [2286] = {.lex_state = 121, .external_lex_state = 5}, @@ -25971,248 +25956,248 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2301] = {.lex_state = 121, .external_lex_state = 5}, [2302] = {.lex_state = 121, .external_lex_state = 5}, [2303] = {.lex_state = 121, .external_lex_state = 5}, - [2304] = {.lex_state = 267, .external_lex_state = 5}, - [2305] = {.lex_state = 267, .external_lex_state = 5}, - [2306] = {.lex_state = 267, .external_lex_state = 5}, - [2307] = {.lex_state = 267, .external_lex_state = 4}, - [2308] = {.lex_state = 267, .external_lex_state = 5}, - [2309] = {.lex_state = 267, .external_lex_state = 5}, - [2310] = {.lex_state = 267, .external_lex_state = 5}, - [2311] = {.lex_state = 267, .external_lex_state = 5}, - [2312] = {.lex_state = 267, .external_lex_state = 5}, - [2313] = {.lex_state = 267, .external_lex_state = 5}, - [2314] = {.lex_state = 102, .external_lex_state = 5}, - [2315] = {.lex_state = 102, .external_lex_state = 5}, - [2316] = {.lex_state = 267, .external_lex_state = 5}, - [2317] = {.lex_state = 267, .external_lex_state = 5}, - [2318] = {.lex_state = 267, .external_lex_state = 5}, + [2304] = {.lex_state = 121, .external_lex_state = 5}, + [2305] = {.lex_state = 121, .external_lex_state = 5}, + [2306] = {.lex_state = 121, .external_lex_state = 5}, + [2307] = {.lex_state = 121, .external_lex_state = 5}, + [2308] = {.lex_state = 121, .external_lex_state = 5}, + [2309] = {.lex_state = 121, .external_lex_state = 5}, + [2310] = {.lex_state = 121, .external_lex_state = 5}, + [2311] = {.lex_state = 121, .external_lex_state = 5}, + [2312] = {.lex_state = 121, .external_lex_state = 5}, + [2313] = {.lex_state = 121, .external_lex_state = 5}, + [2314] = {.lex_state = 121, .external_lex_state = 5}, + [2315] = {.lex_state = 121, .external_lex_state = 5}, + [2316] = {.lex_state = 121, .external_lex_state = 5}, + [2317] = {.lex_state = 121, .external_lex_state = 5}, + [2318] = {.lex_state = 121, .external_lex_state = 5}, [2319] = {.lex_state = 121, .external_lex_state = 5}, [2320] = {.lex_state = 121, .external_lex_state = 5}, - [2321] = {.lex_state = 267, .external_lex_state = 5}, + [2321] = {.lex_state = 121, .external_lex_state = 5}, [2322] = {.lex_state = 121, .external_lex_state = 5}, [2323] = {.lex_state = 121, .external_lex_state = 5}, [2324] = {.lex_state = 121, .external_lex_state = 5}, [2325] = {.lex_state = 121, .external_lex_state = 5}, [2326] = {.lex_state = 121, .external_lex_state = 5}, - [2327] = {.lex_state = 267, .external_lex_state = 5}, + [2327] = {.lex_state = 121, .external_lex_state = 5}, [2328] = {.lex_state = 121, .external_lex_state = 5}, [2329] = {.lex_state = 121, .external_lex_state = 5}, [2330] = {.lex_state = 121, .external_lex_state = 5}, [2331] = {.lex_state = 121, .external_lex_state = 5}, - [2332] = {.lex_state = 267, .external_lex_state = 5}, - [2333] = {.lex_state = 267, .external_lex_state = 5}, - [2334] = {.lex_state = 267, .external_lex_state = 5}, - [2335] = {.lex_state = 267, .external_lex_state = 5}, - [2336] = {.lex_state = 102, .external_lex_state = 5}, - [2337] = {.lex_state = 102, .external_lex_state = 5}, - [2338] = {.lex_state = 267, .external_lex_state = 5}, - [2339] = {.lex_state = 267, .external_lex_state = 5}, - [2340] = {.lex_state = 267, .external_lex_state = 5}, - [2341] = {.lex_state = 267, .external_lex_state = 5}, - [2342] = {.lex_state = 102, .external_lex_state = 5}, - [2343] = {.lex_state = 102, .external_lex_state = 5}, + [2332] = {.lex_state = 121, .external_lex_state = 5}, + [2333] = {.lex_state = 121, .external_lex_state = 5}, + [2334] = {.lex_state = 121, .external_lex_state = 5}, + [2335] = {.lex_state = 121, .external_lex_state = 5}, + [2336] = {.lex_state = 121, .external_lex_state = 5}, + [2337] = {.lex_state = 121, .external_lex_state = 5}, + [2338] = {.lex_state = 121, .external_lex_state = 5}, + [2339] = {.lex_state = 121, .external_lex_state = 5}, + [2340] = {.lex_state = 121, .external_lex_state = 5}, + [2341] = {.lex_state = 121, .external_lex_state = 5}, + [2342] = {.lex_state = 121, .external_lex_state = 5}, + [2343] = {.lex_state = 121, .external_lex_state = 5}, [2344] = {.lex_state = 121, .external_lex_state = 5}, [2345] = {.lex_state = 121, .external_lex_state = 5}, [2346] = {.lex_state = 121, .external_lex_state = 5}, [2347] = {.lex_state = 121, .external_lex_state = 5}, [2348] = {.lex_state = 121, .external_lex_state = 5}, [2349] = {.lex_state = 121, .external_lex_state = 5}, - [2350] = {.lex_state = 267, .external_lex_state = 5}, - [2351] = {.lex_state = 267, .external_lex_state = 5}, - [2352] = {.lex_state = 267, .external_lex_state = 5}, + [2350] = {.lex_state = 121, .external_lex_state = 5}, + [2351] = {.lex_state = 121, .external_lex_state = 5}, + [2352] = {.lex_state = 121, .external_lex_state = 5}, [2353] = {.lex_state = 121, .external_lex_state = 5}, - [2354] = {.lex_state = 102, .external_lex_state = 5}, - [2355] = {.lex_state = 267, .external_lex_state = 5}, + [2354] = {.lex_state = 121, .external_lex_state = 5}, + [2355] = {.lex_state = 121, .external_lex_state = 5}, [2356] = {.lex_state = 267, .external_lex_state = 5}, - [2357] = {.lex_state = 267, .external_lex_state = 5}, - [2358] = {.lex_state = 271, .external_lex_state = 4}, - [2359] = {.lex_state = 271, .external_lex_state = 4}, - [2360] = {.lex_state = 267, .external_lex_state = 5}, - [2361] = {.lex_state = 102, .external_lex_state = 5}, - [2362] = {.lex_state = 267, .external_lex_state = 4}, - [2363] = {.lex_state = 267, .external_lex_state = 4}, - [2364] = {.lex_state = 267, .external_lex_state = 4}, - [2365] = {.lex_state = 102, .external_lex_state = 5}, + [2357] = {.lex_state = 269, .external_lex_state = 5}, + [2358] = {.lex_state = 124, .external_lex_state = 5}, + [2359] = {.lex_state = 124, .external_lex_state = 5}, + [2360] = {.lex_state = 271, .external_lex_state = 4}, + [2361] = {.lex_state = 267, .external_lex_state = 5}, + [2362] = {.lex_state = 269, .external_lex_state = 5}, + [2363] = {.lex_state = 267, .external_lex_state = 5}, + [2364] = {.lex_state = 124, .external_lex_state = 5}, + [2365] = {.lex_state = 124, .external_lex_state = 5}, [2366] = {.lex_state = 269, .external_lex_state = 5}, - [2367] = {.lex_state = 269, .external_lex_state = 5}, + [2367] = {.lex_state = 129, .external_lex_state = 5}, [2368] = {.lex_state = 269, .external_lex_state = 5}, - [2369] = {.lex_state = 269, .external_lex_state = 5}, - [2370] = {.lex_state = 102, .external_lex_state = 5}, - [2371] = {.lex_state = 102, .external_lex_state = 5}, - [2372] = {.lex_state = 102, .external_lex_state = 5}, - [2373] = {.lex_state = 102, .external_lex_state = 5}, - [2374] = {.lex_state = 102, .external_lex_state = 5}, - [2375] = {.lex_state = 102, .external_lex_state = 5}, - [2376] = {.lex_state = 102, .external_lex_state = 5}, - [2377] = {.lex_state = 102, .external_lex_state = 5}, - [2378] = {.lex_state = 102, .external_lex_state = 5}, - [2379] = {.lex_state = 102, .external_lex_state = 5}, - [2380] = {.lex_state = 269, .external_lex_state = 5}, - [2381] = {.lex_state = 102, .external_lex_state = 5}, - [2382] = {.lex_state = 102, .external_lex_state = 5}, - [2383] = {.lex_state = 102, .external_lex_state = 5}, - [2384] = {.lex_state = 267, .external_lex_state = 5}, - [2385] = {.lex_state = 102, .external_lex_state = 5}, - [2386] = {.lex_state = 102, .external_lex_state = 5}, + [2369] = {.lex_state = 124, .external_lex_state = 5}, + [2370] = {.lex_state = 124, .external_lex_state = 5}, + [2371] = {.lex_state = 129, .external_lex_state = 5}, + [2372] = {.lex_state = 269, .external_lex_state = 5}, + [2373] = {.lex_state = 269, .external_lex_state = 5}, + [2374] = {.lex_state = 269, .external_lex_state = 5}, + [2375] = {.lex_state = 269, .external_lex_state = 5}, + [2376] = {.lex_state = 269, .external_lex_state = 5}, + [2377] = {.lex_state = 269, .external_lex_state = 5}, + [2378] = {.lex_state = 269, .external_lex_state = 5}, + [2379] = {.lex_state = 269, .external_lex_state = 5}, + [2380] = {.lex_state = 267, .external_lex_state = 5}, + [2381] = {.lex_state = 269, .external_lex_state = 5}, + [2382] = {.lex_state = 267, .external_lex_state = 5}, + [2383] = {.lex_state = 269, .external_lex_state = 5}, + [2384] = {.lex_state = 269, .external_lex_state = 5}, + [2385] = {.lex_state = 269, .external_lex_state = 5}, + [2386] = {.lex_state = 269, .external_lex_state = 5}, [2387] = {.lex_state = 269, .external_lex_state = 5}, - [2388] = {.lex_state = 102, .external_lex_state = 5}, - [2389] = {.lex_state = 102, .external_lex_state = 5}, - [2390] = {.lex_state = 267, .external_lex_state = 5}, - [2391] = {.lex_state = 102, .external_lex_state = 5}, + [2388] = {.lex_state = 269, .external_lex_state = 5}, + [2389] = {.lex_state = 269, .external_lex_state = 5}, + [2390] = {.lex_state = 269, .external_lex_state = 5}, + [2391] = {.lex_state = 269, .external_lex_state = 5}, [2392] = {.lex_state = 269, .external_lex_state = 5}, - [2393] = {.lex_state = 269, .external_lex_state = 5}, + [2393] = {.lex_state = 124, .external_lex_state = 5}, [2394] = {.lex_state = 269, .external_lex_state = 5}, - [2395] = {.lex_state = 267, .external_lex_state = 5}, - [2396] = {.lex_state = 269, .external_lex_state = 5}, - [2397] = {.lex_state = 267, .external_lex_state = 5}, - [2398] = {.lex_state = 269, .external_lex_state = 5}, + [2395] = {.lex_state = 121, .external_lex_state = 5}, + [2396] = {.lex_state = 102, .external_lex_state = 5}, + [2397] = {.lex_state = 102, .external_lex_state = 5}, + [2398] = {.lex_state = 121, .external_lex_state = 5}, [2399] = {.lex_state = 269, .external_lex_state = 5}, - [2400] = {.lex_state = 269, .external_lex_state = 5}, - [2401] = {.lex_state = 269, .external_lex_state = 5}, - [2402] = {.lex_state = 269, .external_lex_state = 5}, - [2403] = {.lex_state = 267, .external_lex_state = 5}, + [2400] = {.lex_state = 267, .external_lex_state = 5}, + [2401] = {.lex_state = 267, .external_lex_state = 5}, + [2402] = {.lex_state = 267, .external_lex_state = 5}, + [2403] = {.lex_state = 269, .external_lex_state = 5}, [2404] = {.lex_state = 269, .external_lex_state = 5}, - [2405] = {.lex_state = 271, .external_lex_state = 4}, + [2405] = {.lex_state = 269, .external_lex_state = 5}, [2406] = {.lex_state = 269, .external_lex_state = 5}, [2407] = {.lex_state = 269, .external_lex_state = 5}, - [2408] = {.lex_state = 269, .external_lex_state = 5}, - [2409] = {.lex_state = 269, .external_lex_state = 5}, - [2410] = {.lex_state = 269, .external_lex_state = 5}, - [2411] = {.lex_state = 269, .external_lex_state = 5}, - [2412] = {.lex_state = 269, .external_lex_state = 5}, - [2413] = {.lex_state = 269, .external_lex_state = 5}, - [2414] = {.lex_state = 269, .external_lex_state = 5}, - [2415] = {.lex_state = 269, .external_lex_state = 5}, - [2416] = {.lex_state = 267, .external_lex_state = 5}, - [2417] = {.lex_state = 269, .external_lex_state = 5}, - [2418] = {.lex_state = 269, .external_lex_state = 5}, - [2419] = {.lex_state = 269, .external_lex_state = 5}, - [2420] = {.lex_state = 269, .external_lex_state = 5}, - [2421] = {.lex_state = 269, .external_lex_state = 5}, - [2422] = {.lex_state = 269, .external_lex_state = 5}, - [2423] = {.lex_state = 269, .external_lex_state = 5}, - [2424] = {.lex_state = 269, .external_lex_state = 5}, - [2425] = {.lex_state = 269, .external_lex_state = 5}, - [2426] = {.lex_state = 269, .external_lex_state = 5}, - [2427] = {.lex_state = 269, .external_lex_state = 5}, - [2428] = {.lex_state = 269, .external_lex_state = 5}, - [2429] = {.lex_state = 269, .external_lex_state = 5}, - [2430] = {.lex_state = 269, .external_lex_state = 5}, - [2431] = {.lex_state = 269, .external_lex_state = 5}, + [2408] = {.lex_state = 102, .external_lex_state = 5}, + [2409] = {.lex_state = 102, .external_lex_state = 5}, + [2410] = {.lex_state = 102, .external_lex_state = 5}, + [2411] = {.lex_state = 102, .external_lex_state = 5}, + [2412] = {.lex_state = 102, .external_lex_state = 5}, + [2413] = {.lex_state = 102, .external_lex_state = 5}, + [2414] = {.lex_state = 102, .external_lex_state = 5}, + [2415] = {.lex_state = 121, .external_lex_state = 5}, + [2416] = {.lex_state = 121, .external_lex_state = 5}, + [2417] = {.lex_state = 121, .external_lex_state = 5}, + [2418] = {.lex_state = 121, .external_lex_state = 5}, + [2419] = {.lex_state = 102, .external_lex_state = 5}, + [2420] = {.lex_state = 102, .external_lex_state = 5}, + [2421] = {.lex_state = 102, .external_lex_state = 5}, + [2422] = {.lex_state = 267, .external_lex_state = 5}, + [2423] = {.lex_state = 102, .external_lex_state = 5}, + [2424] = {.lex_state = 102, .external_lex_state = 5}, + [2425] = {.lex_state = 102, .external_lex_state = 5}, + [2426] = {.lex_state = 102, .external_lex_state = 5}, + [2427] = {.lex_state = 102, .external_lex_state = 5}, + [2428] = {.lex_state = 267, .external_lex_state = 5}, + [2429] = {.lex_state = 102, .external_lex_state = 5}, + [2430] = {.lex_state = 102, .external_lex_state = 5}, + [2431] = {.lex_state = 102, .external_lex_state = 5}, [2432] = {.lex_state = 269, .external_lex_state = 5}, - [2433] = {.lex_state = 269, .external_lex_state = 5}, - [2434] = {.lex_state = 269, .external_lex_state = 5}, + [2433] = {.lex_state = 121, .external_lex_state = 5}, + [2434] = {.lex_state = 121, .external_lex_state = 5}, [2435] = {.lex_state = 269, .external_lex_state = 5}, [2436] = {.lex_state = 269, .external_lex_state = 5}, - [2437] = {.lex_state = 102, .external_lex_state = 5}, + [2437] = {.lex_state = 269, .external_lex_state = 5}, [2438] = {.lex_state = 269, .external_lex_state = 5}, - [2439] = {.lex_state = 102, .external_lex_state = 5}, - [2440] = {.lex_state = 269, .external_lex_state = 5}, - [2441] = {.lex_state = 269, .external_lex_state = 5}, + [2439] = {.lex_state = 121, .external_lex_state = 5}, + [2440] = {.lex_state = 121, .external_lex_state = 5}, + [2441] = {.lex_state = 121, .external_lex_state = 5}, [2442] = {.lex_state = 269, .external_lex_state = 5}, [2443] = {.lex_state = 269, .external_lex_state = 5}, [2444] = {.lex_state = 269, .external_lex_state = 5}, - [2445] = {.lex_state = 269, .external_lex_state = 5}, - [2446] = {.lex_state = 269, .external_lex_state = 5}, + [2445] = {.lex_state = 267, .external_lex_state = 5}, + [2446] = {.lex_state = 121, .external_lex_state = 5}, [2447] = {.lex_state = 269, .external_lex_state = 5}, - [2448] = {.lex_state = 267, .external_lex_state = 5}, + [2448] = {.lex_state = 269, .external_lex_state = 5}, [2449] = {.lex_state = 269, .external_lex_state = 5}, - [2450] = {.lex_state = 269, .external_lex_state = 5}, + [2450] = {.lex_state = 267, .external_lex_state = 5}, [2451] = {.lex_state = 269, .external_lex_state = 5}, [2452] = {.lex_state = 269, .external_lex_state = 5}, - [2453] = {.lex_state = 269, .external_lex_state = 5}, - [2454] = {.lex_state = 269, .external_lex_state = 5}, + [2453] = {.lex_state = 267, .external_lex_state = 5}, + [2454] = {.lex_state = 102, .external_lex_state = 5}, [2455] = {.lex_state = 269, .external_lex_state = 5}, - [2456] = {.lex_state = 269, .external_lex_state = 5}, - [2457] = {.lex_state = 269, .external_lex_state = 5}, - [2458] = {.lex_state = 269, .external_lex_state = 5}, - [2459] = {.lex_state = 269, .external_lex_state = 5}, + [2456] = {.lex_state = 267, .external_lex_state = 5}, + [2457] = {.lex_state = 267, .external_lex_state = 5}, + [2458] = {.lex_state = 267, .external_lex_state = 5}, + [2459] = {.lex_state = 102, .external_lex_state = 5}, [2460] = {.lex_state = 269, .external_lex_state = 5}, [2461] = {.lex_state = 269, .external_lex_state = 5}, - [2462] = {.lex_state = 126, .external_lex_state = 5}, - [2463] = {.lex_state = 271, .external_lex_state = 4}, - [2464] = {.lex_state = 267, .external_lex_state = 4}, - [2465] = {.lex_state = 267, .external_lex_state = 4}, + [2462] = {.lex_state = 269, .external_lex_state = 5}, + [2463] = {.lex_state = 269, .external_lex_state = 5}, + [2464] = {.lex_state = 269, .external_lex_state = 5}, + [2465] = {.lex_state = 269, .external_lex_state = 5}, [2466] = {.lex_state = 102, .external_lex_state = 5}, [2467] = {.lex_state = 102, .external_lex_state = 5}, - [2468] = {.lex_state = 271, .external_lex_state = 4}, - [2469] = {.lex_state = 271, .external_lex_state = 4}, - [2470] = {.lex_state = 267, .external_lex_state = 5}, - [2471] = {.lex_state = 126, .external_lex_state = 5}, - [2472] = {.lex_state = 126, .external_lex_state = 5}, - [2473] = {.lex_state = 126, .external_lex_state = 5}, - [2474] = {.lex_state = 126, .external_lex_state = 5}, - [2475] = {.lex_state = 126, .external_lex_state = 5}, - [2476] = {.lex_state = 126, .external_lex_state = 5}, + [2468] = {.lex_state = 269, .external_lex_state = 5}, + [2469] = {.lex_state = 269, .external_lex_state = 5}, + [2470] = {.lex_state = 269, .external_lex_state = 5}, + [2471] = {.lex_state = 124, .external_lex_state = 5}, + [2472] = {.lex_state = 124, .external_lex_state = 5}, + [2473] = {.lex_state = 267, .external_lex_state = 5}, + [2474] = {.lex_state = 124, .external_lex_state = 5}, + [2475] = {.lex_state = 124, .external_lex_state = 5}, + [2476] = {.lex_state = 124, .external_lex_state = 5}, [2477] = {.lex_state = 267, .external_lex_state = 5}, - [2478] = {.lex_state = 126, .external_lex_state = 5}, - [2479] = {.lex_state = 126, .external_lex_state = 5}, - [2480] = {.lex_state = 126, .external_lex_state = 5}, - [2481] = {.lex_state = 126, .external_lex_state = 5}, - [2482] = {.lex_state = 126, .external_lex_state = 5}, - [2483] = {.lex_state = 126, .external_lex_state = 5}, - [2484] = {.lex_state = 126, .external_lex_state = 5}, - [2485] = {.lex_state = 126, .external_lex_state = 5}, - [2486] = {.lex_state = 126, .external_lex_state = 5}, - [2487] = {.lex_state = 126, .external_lex_state = 5}, - [2488] = {.lex_state = 126, .external_lex_state = 5}, - [2489] = {.lex_state = 126, .external_lex_state = 5}, - [2490] = {.lex_state = 126, .external_lex_state = 5}, - [2491] = {.lex_state = 126, .external_lex_state = 5}, - [2492] = {.lex_state = 271, .external_lex_state = 4}, - [2493] = {.lex_state = 271, .external_lex_state = 4}, - [2494] = {.lex_state = 126, .external_lex_state = 5}, - [2495] = {.lex_state = 126, .external_lex_state = 5}, - [2496] = {.lex_state = 126, .external_lex_state = 5}, - [2497] = {.lex_state = 126, .external_lex_state = 5}, - [2498] = {.lex_state = 126, .external_lex_state = 5}, - [2499] = {.lex_state = 126, .external_lex_state = 5}, - [2500] = {.lex_state = 126, .external_lex_state = 5}, - [2501] = {.lex_state = 126, .external_lex_state = 5}, - [2502] = {.lex_state = 126, .external_lex_state = 5}, - [2503] = {.lex_state = 126, .external_lex_state = 5}, - [2504] = {.lex_state = 126, .external_lex_state = 5}, - [2505] = {.lex_state = 126, .external_lex_state = 5}, - [2506] = {.lex_state = 126, .external_lex_state = 5}, - [2507] = {.lex_state = 126, .external_lex_state = 5}, - [2508] = {.lex_state = 126, .external_lex_state = 5}, - [2509] = {.lex_state = 126, .external_lex_state = 5}, - [2510] = {.lex_state = 126, .external_lex_state = 5}, - [2511] = {.lex_state = 126, .external_lex_state = 5}, - [2512] = {.lex_state = 126, .external_lex_state = 5}, - [2513] = {.lex_state = 126, .external_lex_state = 5}, - [2514] = {.lex_state = 126, .external_lex_state = 5}, - [2515] = {.lex_state = 126, .external_lex_state = 5}, - [2516] = {.lex_state = 126, .external_lex_state = 5}, - [2517] = {.lex_state = 126, .external_lex_state = 5}, - [2518] = {.lex_state = 126, .external_lex_state = 5}, - [2519] = {.lex_state = 126, .external_lex_state = 5}, - [2520] = {.lex_state = 126, .external_lex_state = 5}, - [2521] = {.lex_state = 126, .external_lex_state = 5}, - [2522] = {.lex_state = 267, .external_lex_state = 5}, - [2523] = {.lex_state = 126, .external_lex_state = 5}, - [2524] = {.lex_state = 126, .external_lex_state = 5}, - [2525] = {.lex_state = 126, .external_lex_state = 5}, - [2526] = {.lex_state = 126, .external_lex_state = 5}, - [2527] = {.lex_state = 126, .external_lex_state = 5}, - [2528] = {.lex_state = 126, .external_lex_state = 5}, - [2529] = {.lex_state = 126, .external_lex_state = 5}, - [2530] = {.lex_state = 126, .external_lex_state = 5}, - [2531] = {.lex_state = 126, .external_lex_state = 5}, - [2532] = {.lex_state = 126, .external_lex_state = 5}, - [2533] = {.lex_state = 102, .external_lex_state = 5}, - [2534] = {.lex_state = 126, .external_lex_state = 5}, - [2535] = {.lex_state = 126, .external_lex_state = 5}, - [2536] = {.lex_state = 126, .external_lex_state = 5}, - [2537] = {.lex_state = 126, .external_lex_state = 5}, - [2538] = {.lex_state = 126, .external_lex_state = 5}, - [2539] = {.lex_state = 126, .external_lex_state = 5}, - [2540] = {.lex_state = 267, .external_lex_state = 5}, - [2541] = {.lex_state = 102, .external_lex_state = 5}, - [2542] = {.lex_state = 102, .external_lex_state = 5}, - [2543] = {.lex_state = 102, .external_lex_state = 5}, + [2478] = {.lex_state = 269, .external_lex_state = 5}, + [2479] = {.lex_state = 269, .external_lex_state = 5}, + [2480] = {.lex_state = 269, .external_lex_state = 5}, + [2481] = {.lex_state = 269, .external_lex_state = 5}, + [2482] = {.lex_state = 269, .external_lex_state = 5}, + [2483] = {.lex_state = 102, .external_lex_state = 5}, + [2484] = {.lex_state = 267, .external_lex_state = 5}, + [2485] = {.lex_state = 269, .external_lex_state = 5}, + [2486] = {.lex_state = 269, .external_lex_state = 5}, + [2487] = {.lex_state = 267, .external_lex_state = 5}, + [2488] = {.lex_state = 269, .external_lex_state = 5}, + [2489] = {.lex_state = 269, .external_lex_state = 5}, + [2490] = {.lex_state = 269, .external_lex_state = 5}, + [2491] = {.lex_state = 269, .external_lex_state = 5}, + [2492] = {.lex_state = 269, .external_lex_state = 5}, + [2493] = {.lex_state = 269, .external_lex_state = 5}, + [2494] = {.lex_state = 267, .external_lex_state = 5}, + [2495] = {.lex_state = 269, .external_lex_state = 5}, + [2496] = {.lex_state = 269, .external_lex_state = 5}, + [2497] = {.lex_state = 269, .external_lex_state = 5}, + [2498] = {.lex_state = 269, .external_lex_state = 5}, + [2499] = {.lex_state = 269, .external_lex_state = 5}, + [2500] = {.lex_state = 269, .external_lex_state = 5}, + [2501] = {.lex_state = 269, .external_lex_state = 5}, + [2502] = {.lex_state = 269, .external_lex_state = 5}, + [2503] = {.lex_state = 269, .external_lex_state = 5}, + [2504] = {.lex_state = 269, .external_lex_state = 5}, + [2505] = {.lex_state = 269, .external_lex_state = 5}, + [2506] = {.lex_state = 269, .external_lex_state = 5}, + [2507] = {.lex_state = 269, .external_lex_state = 5}, + [2508] = {.lex_state = 269, .external_lex_state = 5}, + [2509] = {.lex_state = 102, .external_lex_state = 5}, + [2510] = {.lex_state = 269, .external_lex_state = 5}, + [2511] = {.lex_state = 121, .external_lex_state = 5}, + [2512] = {.lex_state = 121, .external_lex_state = 5}, + [2513] = {.lex_state = 267, .external_lex_state = 5}, + [2514] = {.lex_state = 121, .external_lex_state = 5}, + [2515] = {.lex_state = 121, .external_lex_state = 5}, + [2516] = {.lex_state = 121, .external_lex_state = 5}, + [2517] = {.lex_state = 121, .external_lex_state = 5}, + [2518] = {.lex_state = 121, .external_lex_state = 5}, + [2519] = {.lex_state = 121, .external_lex_state = 5}, + [2520] = {.lex_state = 121, .external_lex_state = 5}, + [2521] = {.lex_state = 267, .external_lex_state = 5}, + [2522] = {.lex_state = 121, .external_lex_state = 5}, + [2523] = {.lex_state = 121, .external_lex_state = 5}, + [2524] = {.lex_state = 121, .external_lex_state = 5}, + [2525] = {.lex_state = 121, .external_lex_state = 5}, + [2526] = {.lex_state = 121, .external_lex_state = 5}, + [2527] = {.lex_state = 121, .external_lex_state = 5}, + [2528] = {.lex_state = 121, .external_lex_state = 5}, + [2529] = {.lex_state = 269, .external_lex_state = 5}, + [2530] = {.lex_state = 269, .external_lex_state = 5}, + [2531] = {.lex_state = 269, .external_lex_state = 5}, + [2532] = {.lex_state = 269, .external_lex_state = 5}, + [2533] = {.lex_state = 121, .external_lex_state = 5}, + [2534] = {.lex_state = 121, .external_lex_state = 5}, + [2535] = {.lex_state = 121, .external_lex_state = 5}, + [2536] = {.lex_state = 121, .external_lex_state = 5}, + [2537] = {.lex_state = 121, .external_lex_state = 5}, + [2538] = {.lex_state = 121, .external_lex_state = 5}, + [2539] = {.lex_state = 121, .external_lex_state = 5}, + [2540] = {.lex_state = 121, .external_lex_state = 5}, + [2541] = {.lex_state = 121, .external_lex_state = 5}, + [2542] = {.lex_state = 121, .external_lex_state = 5}, + [2543] = {.lex_state = 267, .external_lex_state = 5}, [2544] = {.lex_state = 102, .external_lex_state = 5}, - [2545] = {.lex_state = 102, .external_lex_state = 5}, + [2545] = {.lex_state = 121, .external_lex_state = 5}, [2546] = {.lex_state = 267, .external_lex_state = 5}, [2547] = {.lex_state = 267, .external_lex_state = 5}, [2548] = {.lex_state = 267, .external_lex_state = 5}, @@ -26222,7 +26207,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2552] = {.lex_state = 267, .external_lex_state = 5}, [2553] = {.lex_state = 267, .external_lex_state = 5}, [2554] = {.lex_state = 267, .external_lex_state = 5}, - [2555] = {.lex_state = 267, .external_lex_state = 5}, + [2555] = {.lex_state = 121, .external_lex_state = 5}, [2556] = {.lex_state = 267, .external_lex_state = 5}, [2557] = {.lex_state = 267, .external_lex_state = 5}, [2558] = {.lex_state = 267, .external_lex_state = 5}, @@ -26232,18 +26217,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2562] = {.lex_state = 267, .external_lex_state = 5}, [2563] = {.lex_state = 267, .external_lex_state = 5}, [2564] = {.lex_state = 267, .external_lex_state = 5}, - [2565] = {.lex_state = 267, .external_lex_state = 5}, - [2566] = {.lex_state = 267, .external_lex_state = 5}, - [2567] = {.lex_state = 267, .external_lex_state = 5}, - [2568] = {.lex_state = 269, .external_lex_state = 5}, + [2565] = {.lex_state = 121, .external_lex_state = 5}, + [2566] = {.lex_state = 121, .external_lex_state = 5}, + [2567] = {.lex_state = 121, .external_lex_state = 5}, + [2568] = {.lex_state = 121, .external_lex_state = 5}, [2569] = {.lex_state = 269, .external_lex_state = 5}, [2570] = {.lex_state = 269, .external_lex_state = 5}, [2571] = {.lex_state = 102, .external_lex_state = 5}, [2572] = {.lex_state = 269, .external_lex_state = 5}, [2573] = {.lex_state = 269, .external_lex_state = 5}, [2574] = {.lex_state = 269, .external_lex_state = 5}, - [2575] = {.lex_state = 269, .external_lex_state = 5}, - [2576] = {.lex_state = 269, .external_lex_state = 5}, + [2575] = {.lex_state = 124, .external_lex_state = 5}, + [2576] = {.lex_state = 267, .external_lex_state = 5}, [2577] = {.lex_state = 269, .external_lex_state = 5}, [2578] = {.lex_state = 269, .external_lex_state = 5}, [2579] = {.lex_state = 269, .external_lex_state = 5}, @@ -26251,8 +26236,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2581] = {.lex_state = 269, .external_lex_state = 5}, [2582] = {.lex_state = 269, .external_lex_state = 5}, [2583] = {.lex_state = 269, .external_lex_state = 5}, - [2584] = {.lex_state = 269, .external_lex_state = 5}, - [2585] = {.lex_state = 267, .external_lex_state = 5}, + [2584] = {.lex_state = 267, .external_lex_state = 4}, + [2585] = {.lex_state = 269, .external_lex_state = 5}, [2586] = {.lex_state = 269, .external_lex_state = 5}, [2587] = {.lex_state = 269, .external_lex_state = 5}, [2588] = {.lex_state = 269, .external_lex_state = 5}, @@ -26261,135 +26246,135 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2591] = {.lex_state = 269, .external_lex_state = 5}, [2592] = {.lex_state = 269, .external_lex_state = 5}, [2593] = {.lex_state = 269, .external_lex_state = 5}, - [2594] = {.lex_state = 269, .external_lex_state = 5}, + [2594] = {.lex_state = 271, .external_lex_state = 4}, [2595] = {.lex_state = 269, .external_lex_state = 5}, - [2596] = {.lex_state = 269, .external_lex_state = 5}, - [2597] = {.lex_state = 269, .external_lex_state = 5}, - [2598] = {.lex_state = 269, .external_lex_state = 5}, - [2599] = {.lex_state = 269, .external_lex_state = 5}, - [2600] = {.lex_state = 269, .external_lex_state = 5}, - [2601] = {.lex_state = 269, .external_lex_state = 5}, - [2602] = {.lex_state = 267, .external_lex_state = 5}, - [2603] = {.lex_state = 267, .external_lex_state = 4}, - [2604] = {.lex_state = 267, .external_lex_state = 5}, - [2605] = {.lex_state = 269, .external_lex_state = 5}, - [2606] = {.lex_state = 269, .external_lex_state = 5}, - [2607] = {.lex_state = 269, .external_lex_state = 5}, - [2608] = {.lex_state = 269, .external_lex_state = 5}, - [2609] = {.lex_state = 269, .external_lex_state = 5}, - [2610] = {.lex_state = 269, .external_lex_state = 5}, - [2611] = {.lex_state = 269, .external_lex_state = 5}, - [2612] = {.lex_state = 269, .external_lex_state = 5}, - [2613] = {.lex_state = 269, .external_lex_state = 5}, - [2614] = {.lex_state = 269, .external_lex_state = 5}, - [2615] = {.lex_state = 269, .external_lex_state = 5}, - [2616] = {.lex_state = 269, .external_lex_state = 5}, - [2617] = {.lex_state = 269, .external_lex_state = 5}, - [2618] = {.lex_state = 269, .external_lex_state = 5}, - [2619] = {.lex_state = 269, .external_lex_state = 5}, - [2620] = {.lex_state = 269, .external_lex_state = 5}, - [2621] = {.lex_state = 102, .external_lex_state = 5}, - [2622] = {.lex_state = 267, .external_lex_state = 5}, - [2623] = {.lex_state = 267, .external_lex_state = 5}, - [2624] = {.lex_state = 102, .external_lex_state = 5}, - [2625] = {.lex_state = 267, .external_lex_state = 5}, - [2626] = {.lex_state = 267, .external_lex_state = 4}, - [2627] = {.lex_state = 267, .external_lex_state = 5}, - [2628] = {.lex_state = 267, .external_lex_state = 5}, - [2629] = {.lex_state = 102, .external_lex_state = 5}, + [2596] = {.lex_state = 271, .external_lex_state = 4}, + [2597] = {.lex_state = 267, .external_lex_state = 4}, + [2598] = {.lex_state = 121, .external_lex_state = 5}, + [2599] = {.lex_state = 267, .external_lex_state = 5}, + [2600] = {.lex_state = 267, .external_lex_state = 4}, + [2601] = {.lex_state = 267, .external_lex_state = 4}, + [2602] = {.lex_state = 121, .external_lex_state = 5}, + [2603] = {.lex_state = 121, .external_lex_state = 5}, + [2604] = {.lex_state = 102, .external_lex_state = 5}, + [2605] = {.lex_state = 121, .external_lex_state = 5}, + [2606] = {.lex_state = 121, .external_lex_state = 5}, + [2607] = {.lex_state = 121, .external_lex_state = 5}, + [2608] = {.lex_state = 267, .external_lex_state = 5}, + [2609] = {.lex_state = 267, .external_lex_state = 5}, + [2610] = {.lex_state = 121, .external_lex_state = 5}, + [2611] = {.lex_state = 121, .external_lex_state = 5}, + [2612] = {.lex_state = 121, .external_lex_state = 5}, + [2613] = {.lex_state = 121, .external_lex_state = 5}, + [2614] = {.lex_state = 267, .external_lex_state = 4}, + [2615] = {.lex_state = 267, .external_lex_state = 4}, + [2616] = {.lex_state = 271, .external_lex_state = 4}, + [2617] = {.lex_state = 267, .external_lex_state = 5}, + [2618] = {.lex_state = 267, .external_lex_state = 5}, + [2619] = {.lex_state = 271, .external_lex_state = 4}, + [2620] = {.lex_state = 271, .external_lex_state = 4}, + [2621] = {.lex_state = 267, .external_lex_state = 5}, + [2622] = {.lex_state = 271, .external_lex_state = 4}, + [2623] = {.lex_state = 271, .external_lex_state = 4}, + [2624] = {.lex_state = 271, .external_lex_state = 4}, + [2625] = {.lex_state = 271, .external_lex_state = 4}, + [2626] = {.lex_state = 271, .external_lex_state = 4}, + [2627] = {.lex_state = 121, .external_lex_state = 5}, + [2628] = {.lex_state = 121, .external_lex_state = 5}, + [2629] = {.lex_state = 121, .external_lex_state = 5}, [2630] = {.lex_state = 102, .external_lex_state = 5}, - [2631] = {.lex_state = 267, .external_lex_state = 5}, - [2632] = {.lex_state = 267, .external_lex_state = 5}, - [2633] = {.lex_state = 271, .external_lex_state = 4}, - [2634] = {.lex_state = 269, .external_lex_state = 5}, - [2635] = {.lex_state = 269, .external_lex_state = 5}, - [2636] = {.lex_state = 269, .external_lex_state = 5}, - [2637] = {.lex_state = 269, .external_lex_state = 5}, - [2638] = {.lex_state = 269, .external_lex_state = 5}, + [2631] = {.lex_state = 121, .external_lex_state = 5}, + [2632] = {.lex_state = 121, .external_lex_state = 5}, + [2633] = {.lex_state = 121, .external_lex_state = 5}, + [2634] = {.lex_state = 102, .external_lex_state = 5}, + [2635] = {.lex_state = 102, .external_lex_state = 5}, + [2636] = {.lex_state = 271, .external_lex_state = 4}, + [2637] = {.lex_state = 267, .external_lex_state = 5}, + [2638] = {.lex_state = 271, .external_lex_state = 4}, [2639] = {.lex_state = 269, .external_lex_state = 5}, [2640] = {.lex_state = 269, .external_lex_state = 5}, - [2641] = {.lex_state = 269, .external_lex_state = 5}, + [2641] = {.lex_state = 271, .external_lex_state = 4}, [2642] = {.lex_state = 269, .external_lex_state = 5}, - [2643] = {.lex_state = 269, .external_lex_state = 5}, - [2644] = {.lex_state = 269, .external_lex_state = 5}, - [2645] = {.lex_state = 269, .external_lex_state = 5}, + [2643] = {.lex_state = 271, .external_lex_state = 4}, + [2644] = {.lex_state = 271, .external_lex_state = 4}, + [2645] = {.lex_state = 267, .external_lex_state = 5}, [2646] = {.lex_state = 269, .external_lex_state = 5}, - [2647] = {.lex_state = 269, .external_lex_state = 5}, - [2648] = {.lex_state = 269, .external_lex_state = 5}, - [2649] = {.lex_state = 269, .external_lex_state = 5}, - [2650] = {.lex_state = 269, .external_lex_state = 5}, - [2651] = {.lex_state = 269, .external_lex_state = 5}, - [2652] = {.lex_state = 269, .external_lex_state = 5}, - [2653] = {.lex_state = 269, .external_lex_state = 5}, - [2654] = {.lex_state = 271, .external_lex_state = 4}, - [2655] = {.lex_state = 269, .external_lex_state = 5}, - [2656] = {.lex_state = 269, .external_lex_state = 5}, - [2657] = {.lex_state = 267, .external_lex_state = 5}, - [2658] = {.lex_state = 271, .external_lex_state = 4}, - [2659] = {.lex_state = 267, .external_lex_state = 5}, - [2660] = {.lex_state = 267, .external_lex_state = 5}, - [2661] = {.lex_state = 126, .external_lex_state = 5}, - [2662] = {.lex_state = 271, .external_lex_state = 4}, - [2663] = {.lex_state = 269, .external_lex_state = 5}, - [2664] = {.lex_state = 269, .external_lex_state = 5}, - [2665] = {.lex_state = 267, .external_lex_state = 5}, - [2666] = {.lex_state = 267, .external_lex_state = 5}, - [2667] = {.lex_state = 267, .external_lex_state = 5}, - [2668] = {.lex_state = 267, .external_lex_state = 5}, - [2669] = {.lex_state = 267, .external_lex_state = 5}, - [2670] = {.lex_state = 267, .external_lex_state = 5}, - [2671] = {.lex_state = 267, .external_lex_state = 5}, + [2647] = {.lex_state = 267, .external_lex_state = 5}, + [2648] = {.lex_state = 271, .external_lex_state = 4}, + [2649] = {.lex_state = 271, .external_lex_state = 4}, + [2650] = {.lex_state = 267, .external_lex_state = 5}, + [2651] = {.lex_state = 267, .external_lex_state = 5}, + [2652] = {.lex_state = 271, .external_lex_state = 4}, + [2653] = {.lex_state = 124, .external_lex_state = 5}, + [2654] = {.lex_state = 124, .external_lex_state = 5}, + [2655] = {.lex_state = 267, .external_lex_state = 5}, + [2656] = {.lex_state = 124, .external_lex_state = 5}, + [2657] = {.lex_state = 124, .external_lex_state = 5}, + [2658] = {.lex_state = 124, .external_lex_state = 5}, + [2659] = {.lex_state = 124, .external_lex_state = 5}, + [2660] = {.lex_state = 267, .external_lex_state = 4}, + [2661] = {.lex_state = 267, .external_lex_state = 4}, + [2662] = {.lex_state = 267, .external_lex_state = 5}, + [2663] = {.lex_state = 124, .external_lex_state = 5}, + [2664] = {.lex_state = 267, .external_lex_state = 4}, + [2665] = {.lex_state = 124, .external_lex_state = 5}, + [2666] = {.lex_state = 124, .external_lex_state = 5}, + [2667] = {.lex_state = 124, .external_lex_state = 5}, + [2668] = {.lex_state = 124, .external_lex_state = 5}, + [2669] = {.lex_state = 124, .external_lex_state = 5}, + [2670] = {.lex_state = 121, .external_lex_state = 5}, + [2671] = {.lex_state = 102, .external_lex_state = 5}, [2672] = {.lex_state = 267, .external_lex_state = 5}, - [2673] = {.lex_state = 271, .external_lex_state = 4}, - [2674] = {.lex_state = 271, .external_lex_state = 4}, - [2675] = {.lex_state = 269, .external_lex_state = 5}, - [2676] = {.lex_state = 271, .external_lex_state = 4}, - [2677] = {.lex_state = 271, .external_lex_state = 4}, - [2678] = {.lex_state = 269, .external_lex_state = 5}, - [2679] = {.lex_state = 267, .external_lex_state = 5}, - [2680] = {.lex_state = 267, .external_lex_state = 5}, - [2681] = {.lex_state = 102, .external_lex_state = 5}, - [2682] = {.lex_state = 267, .external_lex_state = 5}, - [2683] = {.lex_state = 267, .external_lex_state = 4}, - [2684] = {.lex_state = 267, .external_lex_state = 4}, - [2685] = {.lex_state = 269, .external_lex_state = 5}, - [2686] = {.lex_state = 269, .external_lex_state = 5}, - [2687] = {.lex_state = 269, .external_lex_state = 5}, + [2673] = {.lex_state = 121, .external_lex_state = 5}, + [2674] = {.lex_state = 121, .external_lex_state = 5}, + [2675] = {.lex_state = 121, .external_lex_state = 5}, + [2676] = {.lex_state = 121, .external_lex_state = 5}, + [2677] = {.lex_state = 121, .external_lex_state = 5}, + [2678] = {.lex_state = 121, .external_lex_state = 5}, + [2679] = {.lex_state = 121, .external_lex_state = 5}, + [2680] = {.lex_state = 121, .external_lex_state = 5}, + [2681] = {.lex_state = 121, .external_lex_state = 5}, + [2682] = {.lex_state = 121, .external_lex_state = 5}, + [2683] = {.lex_state = 267, .external_lex_state = 5}, + [2684] = {.lex_state = 121, .external_lex_state = 5}, + [2685] = {.lex_state = 121, .external_lex_state = 5}, + [2686] = {.lex_state = 102, .external_lex_state = 5}, + [2687] = {.lex_state = 121, .external_lex_state = 5}, [2688] = {.lex_state = 269, .external_lex_state = 5}, [2689] = {.lex_state = 269, .external_lex_state = 5}, [2690] = {.lex_state = 269, .external_lex_state = 5}, [2691] = {.lex_state = 129, .external_lex_state = 5}, - [2692] = {.lex_state = 269, .external_lex_state = 5}, + [2692] = {.lex_state = 121, .external_lex_state = 5}, [2693] = {.lex_state = 121, .external_lex_state = 5}, [2694] = {.lex_state = 129, .external_lex_state = 5}, - [2695] = {.lex_state = 121, .external_lex_state = 5}, + [2695] = {.lex_state = 267, .external_lex_state = 4}, [2696] = {.lex_state = 129, .external_lex_state = 5}, [2697] = {.lex_state = 121, .external_lex_state = 5}, [2698] = {.lex_state = 121, .external_lex_state = 5}, - [2699] = {.lex_state = 129, .external_lex_state = 5}, + [2699] = {.lex_state = 121, .external_lex_state = 5}, [2700] = {.lex_state = 121, .external_lex_state = 5}, - [2701] = {.lex_state = 121, .external_lex_state = 5}, + [2701] = {.lex_state = 124, .external_lex_state = 5}, [2702] = {.lex_state = 269, .external_lex_state = 5}, [2703] = {.lex_state = 269, .external_lex_state = 5}, - [2704] = {.lex_state = 269, .external_lex_state = 5}, - [2705] = {.lex_state = 269, .external_lex_state = 5}, - [2706] = {.lex_state = 269, .external_lex_state = 5}, - [2707] = {.lex_state = 269, .external_lex_state = 5}, - [2708] = {.lex_state = 126, .external_lex_state = 5}, - [2709] = {.lex_state = 126, .external_lex_state = 5}, - [2710] = {.lex_state = 126, .external_lex_state = 5}, - [2711] = {.lex_state = 126, .external_lex_state = 5}, - [2712] = {.lex_state = 126, .external_lex_state = 5}, - [2713] = {.lex_state = 126, .external_lex_state = 5}, - [2714] = {.lex_state = 102, .external_lex_state = 5}, + [2704] = {.lex_state = 271, .external_lex_state = 4}, + [2705] = {.lex_state = 271, .external_lex_state = 4}, + [2706] = {.lex_state = 124, .external_lex_state = 5}, + [2707] = {.lex_state = 124, .external_lex_state = 5}, + [2708] = {.lex_state = 102, .external_lex_state = 5}, + [2709] = {.lex_state = 267, .external_lex_state = 4}, + [2710] = {.lex_state = 267, .external_lex_state = 4}, + [2711] = {.lex_state = 102, .external_lex_state = 5}, + [2712] = {.lex_state = 124, .external_lex_state = 5}, + [2713] = {.lex_state = 124, .external_lex_state = 5}, + [2714] = {.lex_state = 124, .external_lex_state = 5}, [2715] = {.lex_state = 271, .external_lex_state = 4}, - [2716] = {.lex_state = 121, .external_lex_state = 5}, - [2717] = {.lex_state = 121, .external_lex_state = 5}, - [2718] = {.lex_state = 121, .external_lex_state = 5}, - [2719] = {.lex_state = 121, .external_lex_state = 5}, + [2716] = {.lex_state = 271, .external_lex_state = 4}, + [2717] = {.lex_state = 271, .external_lex_state = 4}, + [2718] = {.lex_state = 267, .external_lex_state = 5}, + [2719] = {.lex_state = 271, .external_lex_state = 4}, [2720] = {.lex_state = 271, .external_lex_state = 4}, - [2721] = {.lex_state = 271, .external_lex_state = 4}, - [2722] = {.lex_state = 129, .external_lex_state = 5}, + [2721] = {.lex_state = 269, .external_lex_state = 5}, + [2722] = {.lex_state = 269, .external_lex_state = 5}, [2723] = {.lex_state = 271, .external_lex_state = 4}, [2724] = {.lex_state = 271, .external_lex_state = 4}, [2725] = {.lex_state = 271, .external_lex_state = 4}, @@ -26400,258 +26385,258 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2730] = {.lex_state = 271, .external_lex_state = 4}, [2731] = {.lex_state = 271, .external_lex_state = 4}, [2732] = {.lex_state = 271, .external_lex_state = 4}, - [2733] = {.lex_state = 271, .external_lex_state = 4}, - [2734] = {.lex_state = 121, .external_lex_state = 5}, + [2733] = {.lex_state = 102, .external_lex_state = 5}, + [2734] = {.lex_state = 124, .external_lex_state = 5}, [2735] = {.lex_state = 271, .external_lex_state = 4}, [2736] = {.lex_state = 271, .external_lex_state = 4}, [2737] = {.lex_state = 129, .external_lex_state = 5}, - [2738] = {.lex_state = 121, .external_lex_state = 5}, - [2739] = {.lex_state = 121, .external_lex_state = 5}, - [2740] = {.lex_state = 121, .external_lex_state = 5}, - [2741] = {.lex_state = 121, .external_lex_state = 5}, + [2738] = {.lex_state = 124, .external_lex_state = 5}, + [2739] = {.lex_state = 271, .external_lex_state = 4}, + [2740] = {.lex_state = 124, .external_lex_state = 5}, + [2741] = {.lex_state = 271, .external_lex_state = 4}, [2742] = {.lex_state = 129, .external_lex_state = 5}, - [2743] = {.lex_state = 121, .external_lex_state = 5}, - [2744] = {.lex_state = 121, .external_lex_state = 5}, - [2745] = {.lex_state = 121, .external_lex_state = 5}, - [2746] = {.lex_state = 121, .external_lex_state = 5}, - [2747] = {.lex_state = 121, .external_lex_state = 5}, - [2748] = {.lex_state = 121, .external_lex_state = 5}, - [2749] = {.lex_state = 121, .external_lex_state = 5}, - [2750] = {.lex_state = 121, .external_lex_state = 5}, - [2751] = {.lex_state = 121, .external_lex_state = 5}, - [2752] = {.lex_state = 121, .external_lex_state = 5}, - [2753] = {.lex_state = 121, .external_lex_state = 5}, - [2754] = {.lex_state = 121, .external_lex_state = 5}, - [2755] = {.lex_state = 121, .external_lex_state = 5}, - [2756] = {.lex_state = 121, .external_lex_state = 5}, - [2757] = {.lex_state = 121, .external_lex_state = 5}, - [2758] = {.lex_state = 121, .external_lex_state = 5}, - [2759] = {.lex_state = 121, .external_lex_state = 5}, - [2760] = {.lex_state = 121, .external_lex_state = 5}, - [2761] = {.lex_state = 121, .external_lex_state = 5}, - [2762] = {.lex_state = 121, .external_lex_state = 5}, - [2763] = {.lex_state = 121, .external_lex_state = 5}, - [2764] = {.lex_state = 121, .external_lex_state = 5}, - [2765] = {.lex_state = 121, .external_lex_state = 5}, - [2766] = {.lex_state = 121, .external_lex_state = 5}, - [2767] = {.lex_state = 121, .external_lex_state = 5}, - [2768] = {.lex_state = 121, .external_lex_state = 5}, - [2769] = {.lex_state = 121, .external_lex_state = 5}, - [2770] = {.lex_state = 121, .external_lex_state = 5}, - [2771] = {.lex_state = 121, .external_lex_state = 5}, - [2772] = {.lex_state = 267, .external_lex_state = 5}, - [2773] = {.lex_state = 267, .external_lex_state = 4}, - [2774] = {.lex_state = 267, .external_lex_state = 5}, - [2775] = {.lex_state = 269, .external_lex_state = 5}, - [2776] = {.lex_state = 267, .external_lex_state = 4}, - [2777] = {.lex_state = 267, .external_lex_state = 4}, - [2778] = {.lex_state = 269, .external_lex_state = 5}, - [2779] = {.lex_state = 267, .external_lex_state = 4}, - [2780] = {.lex_state = 121, .external_lex_state = 5}, - [2781] = {.lex_state = 121, .external_lex_state = 5}, - [2782] = {.lex_state = 121, .external_lex_state = 5}, - [2783] = {.lex_state = 121, .external_lex_state = 5}, - [2784] = {.lex_state = 121, .external_lex_state = 5}, - [2785] = {.lex_state = 121, .external_lex_state = 5}, - [2786] = {.lex_state = 121, .external_lex_state = 5}, - [2787] = {.lex_state = 121, .external_lex_state = 5}, - [2788] = {.lex_state = 121, .external_lex_state = 5}, - [2789] = {.lex_state = 121, .external_lex_state = 5}, - [2790] = {.lex_state = 267, .external_lex_state = 4}, - [2791] = {.lex_state = 267, .external_lex_state = 4}, - [2792] = {.lex_state = 269, .external_lex_state = 5}, - [2793] = {.lex_state = 271, .external_lex_state = 4}, - [2794] = {.lex_state = 271, .external_lex_state = 4}, - [2795] = {.lex_state = 271, .external_lex_state = 4}, - [2796] = {.lex_state = 271, .external_lex_state = 4}, - [2797] = {.lex_state = 121, .external_lex_state = 5}, - [2798] = {.lex_state = 121, .external_lex_state = 5}, - [2799] = {.lex_state = 121, .external_lex_state = 5}, - [2800] = {.lex_state = 121, .external_lex_state = 5}, - [2801] = {.lex_state = 121, .external_lex_state = 5}, - [2802] = {.lex_state = 121, .external_lex_state = 5}, - [2803] = {.lex_state = 102, .external_lex_state = 5}, - [2804] = {.lex_state = 102, .external_lex_state = 5}, - [2805] = {.lex_state = 271, .external_lex_state = 4}, - [2806] = {.lex_state = 271, .external_lex_state = 4}, - [2807] = {.lex_state = 269, .external_lex_state = 5}, - [2808] = {.lex_state = 271, .external_lex_state = 4}, - [2809] = {.lex_state = 271, .external_lex_state = 4}, - [2810] = {.lex_state = 271, .external_lex_state = 4}, - [2811] = {.lex_state = 271, .external_lex_state = 4}, - [2812] = {.lex_state = 121, .external_lex_state = 5}, - [2813] = {.lex_state = 121, .external_lex_state = 5}, - [2814] = {.lex_state = 121, .external_lex_state = 5}, - [2815] = {.lex_state = 121, .external_lex_state = 5}, - [2816] = {.lex_state = 121, .external_lex_state = 5}, - [2817] = {.lex_state = 121, .external_lex_state = 5}, - [2818] = {.lex_state = 121, .external_lex_state = 5}, - [2819] = {.lex_state = 121, .external_lex_state = 5}, - [2820] = {.lex_state = 121, .external_lex_state = 5}, - [2821] = {.lex_state = 121, .external_lex_state = 5}, - [2822] = {.lex_state = 121, .external_lex_state = 5}, - [2823] = {.lex_state = 121, .external_lex_state = 5}, - [2824] = {.lex_state = 121, .external_lex_state = 5}, - [2825] = {.lex_state = 121, .external_lex_state = 5}, - [2826] = {.lex_state = 121, .external_lex_state = 5}, - [2827] = {.lex_state = 121, .external_lex_state = 5}, - [2828] = {.lex_state = 121, .external_lex_state = 5}, - [2829] = {.lex_state = 121, .external_lex_state = 5}, - [2830] = {.lex_state = 121, .external_lex_state = 5}, - [2831] = {.lex_state = 121, .external_lex_state = 5}, + [2743] = {.lex_state = 271, .external_lex_state = 4}, + [2744] = {.lex_state = 271, .external_lex_state = 4}, + [2745] = {.lex_state = 271, .external_lex_state = 4}, + [2746] = {.lex_state = 271, .external_lex_state = 4}, + [2747] = {.lex_state = 271, .external_lex_state = 4}, + [2748] = {.lex_state = 271, .external_lex_state = 4}, + [2749] = {.lex_state = 271, .external_lex_state = 4}, + [2750] = {.lex_state = 124, .external_lex_state = 5}, + [2751] = {.lex_state = 124, .external_lex_state = 5}, + [2752] = {.lex_state = 124, .external_lex_state = 5}, + [2753] = {.lex_state = 124, .external_lex_state = 5}, + [2754] = {.lex_state = 124, .external_lex_state = 5}, + [2755] = {.lex_state = 124, .external_lex_state = 5}, + [2756] = {.lex_state = 271, .external_lex_state = 4}, + [2757] = {.lex_state = 271, .external_lex_state = 4}, + [2758] = {.lex_state = 124, .external_lex_state = 5}, + [2759] = {.lex_state = 267, .external_lex_state = 4}, + [2760] = {.lex_state = 269, .external_lex_state = 5}, + [2761] = {.lex_state = 124, .external_lex_state = 5}, + [2762] = {.lex_state = 124, .external_lex_state = 5}, + [2763] = {.lex_state = 124, .external_lex_state = 5}, + [2764] = {.lex_state = 124, .external_lex_state = 5}, + [2765] = {.lex_state = 102, .external_lex_state = 5}, + [2766] = {.lex_state = 102, .external_lex_state = 5}, + [2767] = {.lex_state = 124, .external_lex_state = 5}, + [2768] = {.lex_state = 124, .external_lex_state = 5}, + [2769] = {.lex_state = 124, .external_lex_state = 5}, + [2770] = {.lex_state = 124, .external_lex_state = 5}, + [2771] = {.lex_state = 124, .external_lex_state = 5}, + [2772] = {.lex_state = 124, .external_lex_state = 5}, + [2773] = {.lex_state = 124, .external_lex_state = 5}, + [2774] = {.lex_state = 124, .external_lex_state = 5}, + [2775] = {.lex_state = 124, .external_lex_state = 5}, + [2776] = {.lex_state = 124, .external_lex_state = 5}, + [2777] = {.lex_state = 124, .external_lex_state = 5}, + [2778] = {.lex_state = 124, .external_lex_state = 5}, + [2779] = {.lex_state = 124, .external_lex_state = 5}, + [2780] = {.lex_state = 124, .external_lex_state = 5}, + [2781] = {.lex_state = 269, .external_lex_state = 5}, + [2782] = {.lex_state = 267, .external_lex_state = 4}, + [2783] = {.lex_state = 124, .external_lex_state = 5}, + [2784] = {.lex_state = 124, .external_lex_state = 5}, + [2785] = {.lex_state = 124, .external_lex_state = 5}, + [2786] = {.lex_state = 124, .external_lex_state = 5}, + [2787] = {.lex_state = 267, .external_lex_state = 5}, + [2788] = {.lex_state = 267, .external_lex_state = 4}, + [2789] = {.lex_state = 124, .external_lex_state = 5}, + [2790] = {.lex_state = 124, .external_lex_state = 5}, + [2791] = {.lex_state = 267, .external_lex_state = 5}, + [2792] = {.lex_state = 124, .external_lex_state = 5}, + [2793] = {.lex_state = 124, .external_lex_state = 5}, + [2794] = {.lex_state = 267, .external_lex_state = 4}, + [2795] = {.lex_state = 267, .external_lex_state = 4}, + [2796] = {.lex_state = 124, .external_lex_state = 5}, + [2797] = {.lex_state = 124, .external_lex_state = 5}, + [2798] = {.lex_state = 102, .external_lex_state = 5}, + [2799] = {.lex_state = 102, .external_lex_state = 5}, + [2800] = {.lex_state = 271, .external_lex_state = 4}, + [2801] = {.lex_state = 271, .external_lex_state = 4}, + [2802] = {.lex_state = 271, .external_lex_state = 4}, + [2803] = {.lex_state = 271, .external_lex_state = 4}, + [2804] = {.lex_state = 271, .external_lex_state = 4}, + [2805] = {.lex_state = 102, .external_lex_state = 5}, + [2806] = {.lex_state = 124, .external_lex_state = 5}, + [2807] = {.lex_state = 271, .external_lex_state = 4}, + [2808] = {.lex_state = 124, .external_lex_state = 5}, + [2809] = {.lex_state = 124, .external_lex_state = 5}, + [2810] = {.lex_state = 124, .external_lex_state = 5}, + [2811] = {.lex_state = 124, .external_lex_state = 5}, + [2812] = {.lex_state = 124, .external_lex_state = 5}, + [2813] = {.lex_state = 124, .external_lex_state = 5}, + [2814] = {.lex_state = 124, .external_lex_state = 5}, + [2815] = {.lex_state = 124, .external_lex_state = 5}, + [2816] = {.lex_state = 124, .external_lex_state = 5}, + [2817] = {.lex_state = 124, .external_lex_state = 5}, + [2818] = {.lex_state = 267, .external_lex_state = 4}, + [2819] = {.lex_state = 271, .external_lex_state = 4}, + [2820] = {.lex_state = 102, .external_lex_state = 5}, + [2821] = {.lex_state = 271, .external_lex_state = 4}, + [2822] = {.lex_state = 271, .external_lex_state = 4}, + [2823] = {.lex_state = 271, .external_lex_state = 4}, + [2824] = {.lex_state = 271, .external_lex_state = 4}, + [2825] = {.lex_state = 271, .external_lex_state = 4}, + [2826] = {.lex_state = 271, .external_lex_state = 4}, + [2827] = {.lex_state = 271, .external_lex_state = 4}, + [2828] = {.lex_state = 271, .external_lex_state = 4}, + [2829] = {.lex_state = 271, .external_lex_state = 4}, + [2830] = {.lex_state = 271, .external_lex_state = 4}, + [2831] = {.lex_state = 271, .external_lex_state = 4}, [2832] = {.lex_state = 271, .external_lex_state = 4}, [2833] = {.lex_state = 271, .external_lex_state = 4}, - [2834] = {.lex_state = 102, .external_lex_state = 5}, - [2835] = {.lex_state = 102, .external_lex_state = 5}, + [2834] = {.lex_state = 271, .external_lex_state = 4}, + [2835] = {.lex_state = 271, .external_lex_state = 4}, [2836] = {.lex_state = 271, .external_lex_state = 4}, [2837] = {.lex_state = 271, .external_lex_state = 4}, [2838] = {.lex_state = 271, .external_lex_state = 4}, - [2839] = {.lex_state = 126, .external_lex_state = 5}, - [2840] = {.lex_state = 267, .external_lex_state = 4}, - [2841] = {.lex_state = 269, .external_lex_state = 5}, - [2842] = {.lex_state = 126, .external_lex_state = 5}, - [2843] = {.lex_state = 267, .external_lex_state = 4}, - [2844] = {.lex_state = 267, .external_lex_state = 4}, - [2845] = {.lex_state = 271, .external_lex_state = 4}, - [2846] = {.lex_state = 271, .external_lex_state = 4}, - [2847] = {.lex_state = 271, .external_lex_state = 4}, - [2848] = {.lex_state = 271, .external_lex_state = 4}, - [2849] = {.lex_state = 271, .external_lex_state = 4}, - [2850] = {.lex_state = 271, .external_lex_state = 4}, - [2851] = {.lex_state = 271, .external_lex_state = 4}, - [2852] = {.lex_state = 102, .external_lex_state = 5}, - [2853] = {.lex_state = 102, .external_lex_state = 5}, - [2854] = {.lex_state = 126, .external_lex_state = 5}, - [2855] = {.lex_state = 126, .external_lex_state = 5}, - [2856] = {.lex_state = 271, .external_lex_state = 4}, - [2857] = {.lex_state = 271, .external_lex_state = 4}, - [2858] = {.lex_state = 271, .external_lex_state = 4}, - [2859] = {.lex_state = 271, .external_lex_state = 4}, - [2860] = {.lex_state = 271, .external_lex_state = 4}, - [2861] = {.lex_state = 271, .external_lex_state = 4}, - [2862] = {.lex_state = 271, .external_lex_state = 4}, - [2863] = {.lex_state = 271, .external_lex_state = 4}, - [2864] = {.lex_state = 271, .external_lex_state = 4}, - [2865] = {.lex_state = 267, .external_lex_state = 4}, - [2866] = {.lex_state = 126, .external_lex_state = 5}, - [2867] = {.lex_state = 271, .external_lex_state = 4}, - [2868] = {.lex_state = 271, .external_lex_state = 4}, - [2869] = {.lex_state = 271, .external_lex_state = 4}, - [2870] = {.lex_state = 271, .external_lex_state = 4}, - [2871] = {.lex_state = 267, .external_lex_state = 4}, - [2872] = {.lex_state = 271, .external_lex_state = 4}, - [2873] = {.lex_state = 271, .external_lex_state = 4}, - [2874] = {.lex_state = 271, .external_lex_state = 4}, - [2875] = {.lex_state = 271, .external_lex_state = 4}, - [2876] = {.lex_state = 271, .external_lex_state = 4}, - [2877] = {.lex_state = 271, .external_lex_state = 4}, - [2878] = {.lex_state = 271, .external_lex_state = 4}, - [2879] = {.lex_state = 102, .external_lex_state = 5}, - [2880] = {.lex_state = 102, .external_lex_state = 5}, - [2881] = {.lex_state = 102, .external_lex_state = 5}, - [2882] = {.lex_state = 102, .external_lex_state = 5}, - [2883] = {.lex_state = 102, .external_lex_state = 5}, - [2884] = {.lex_state = 271, .external_lex_state = 4}, - [2885] = {.lex_state = 102, .external_lex_state = 5}, - [2886] = {.lex_state = 102, .external_lex_state = 5}, - [2887] = {.lex_state = 126, .external_lex_state = 5}, - [2888] = {.lex_state = 102, .external_lex_state = 5}, - [2889] = {.lex_state = 271, .external_lex_state = 4}, - [2890] = {.lex_state = 102, .external_lex_state = 5}, - [2891] = {.lex_state = 102, .external_lex_state = 5}, + [2839] = {.lex_state = 271, .external_lex_state = 4}, + [2840] = {.lex_state = 271, .external_lex_state = 4}, + [2841] = {.lex_state = 271, .external_lex_state = 4}, + [2842] = {.lex_state = 271, .external_lex_state = 4}, + [2843] = {.lex_state = 271, .external_lex_state = 4}, + [2844] = {.lex_state = 271, .external_lex_state = 4}, + [2845] = {.lex_state = 102, .external_lex_state = 5}, + [2846] = {.lex_state = 269, .external_lex_state = 5}, + [2847] = {.lex_state = 102, .external_lex_state = 5}, + [2848] = {.lex_state = 102, .external_lex_state = 5}, + [2849] = {.lex_state = 267, .external_lex_state = 5}, + [2850] = {.lex_state = 269, .external_lex_state = 5}, + [2851] = {.lex_state = 269, .external_lex_state = 5}, + [2852] = {.lex_state = 269, .external_lex_state = 5}, + [2853] = {.lex_state = 269, .external_lex_state = 5}, + [2854] = {.lex_state = 269, .external_lex_state = 5}, + [2855] = {.lex_state = 269, .external_lex_state = 5}, + [2856] = {.lex_state = 269, .external_lex_state = 5}, + [2857] = {.lex_state = 269, .external_lex_state = 5}, + [2858] = {.lex_state = 269, .external_lex_state = 5}, + [2859] = {.lex_state = 269, .external_lex_state = 5}, + [2860] = {.lex_state = 269, .external_lex_state = 5}, + [2861] = {.lex_state = 267, .external_lex_state = 4}, + [2862] = {.lex_state = 269, .external_lex_state = 5}, + [2863] = {.lex_state = 269, .external_lex_state = 5}, + [2864] = {.lex_state = 267, .external_lex_state = 4}, + [2865] = {.lex_state = 269, .external_lex_state = 5}, + [2866] = {.lex_state = 269, .external_lex_state = 5}, + [2867] = {.lex_state = 269, .external_lex_state = 5}, + [2868] = {.lex_state = 102, .external_lex_state = 5}, + [2869] = {.lex_state = 267, .external_lex_state = 5}, + [2870] = {.lex_state = 102, .external_lex_state = 5}, + [2871] = {.lex_state = 102, .external_lex_state = 5}, + [2872] = {.lex_state = 269, .external_lex_state = 5}, + [2873] = {.lex_state = 269, .external_lex_state = 5}, + [2874] = {.lex_state = 269, .external_lex_state = 5}, + [2875] = {.lex_state = 267, .external_lex_state = 5}, + [2876] = {.lex_state = 267, .external_lex_state = 5}, + [2877] = {.lex_state = 269, .external_lex_state = 5}, + [2878] = {.lex_state = 269, .external_lex_state = 5}, + [2879] = {.lex_state = 269, .external_lex_state = 5}, + [2880] = {.lex_state = 267, .external_lex_state = 5}, + [2881] = {.lex_state = 269, .external_lex_state = 5}, + [2882] = {.lex_state = 267, .external_lex_state = 5}, + [2883] = {.lex_state = 269, .external_lex_state = 5}, + [2884] = {.lex_state = 269, .external_lex_state = 5}, + [2885] = {.lex_state = 267, .external_lex_state = 5}, + [2886] = {.lex_state = 267, .external_lex_state = 4}, + [2887] = {.lex_state = 267, .external_lex_state = 5}, + [2888] = {.lex_state = 267, .external_lex_state = 5}, + [2889] = {.lex_state = 267, .external_lex_state = 5}, + [2890] = {.lex_state = 269, .external_lex_state = 5}, + [2891] = {.lex_state = 267, .external_lex_state = 4}, [2892] = {.lex_state = 102, .external_lex_state = 5}, - [2893] = {.lex_state = 102, .external_lex_state = 5}, + [2893] = {.lex_state = 267, .external_lex_state = 5}, [2894] = {.lex_state = 102, .external_lex_state = 5}, - [2895] = {.lex_state = 126, .external_lex_state = 5}, - [2896] = {.lex_state = 267, .external_lex_state = 4}, - [2897] = {.lex_state = 267, .external_lex_state = 5}, - [2898] = {.lex_state = 267, .external_lex_state = 5}, - [2899] = {.lex_state = 271, .external_lex_state = 4}, - [2900] = {.lex_state = 271, .external_lex_state = 4}, - [2901] = {.lex_state = 271, .external_lex_state = 4}, - [2902] = {.lex_state = 267, .external_lex_state = 5}, - [2903] = {.lex_state = 267, .external_lex_state = 5}, - [2904] = {.lex_state = 267, .external_lex_state = 5}, - [2905] = {.lex_state = 126, .external_lex_state = 5}, - [2906] = {.lex_state = 267, .external_lex_state = 5}, + [2895] = {.lex_state = 102, .external_lex_state = 5}, + [2896] = {.lex_state = 269, .external_lex_state = 5}, + [2897] = {.lex_state = 102, .external_lex_state = 5}, + [2898] = {.lex_state = 267, .external_lex_state = 4}, + [2899] = {.lex_state = 102, .external_lex_state = 5}, + [2900] = {.lex_state = 269, .external_lex_state = 5}, + [2901] = {.lex_state = 269, .external_lex_state = 5}, + [2902] = {.lex_state = 102, .external_lex_state = 5}, + [2903] = {.lex_state = 269, .external_lex_state = 5}, + [2904] = {.lex_state = 269, .external_lex_state = 5}, + [2905] = {.lex_state = 102, .external_lex_state = 5}, + [2906] = {.lex_state = 269, .external_lex_state = 5}, [2907] = {.lex_state = 102, .external_lex_state = 5}, - [2908] = {.lex_state = 102, .external_lex_state = 5}, + [2908] = {.lex_state = 269, .external_lex_state = 5}, [2909] = {.lex_state = 102, .external_lex_state = 5}, - [2910] = {.lex_state = 267, .external_lex_state = 5}, + [2910] = {.lex_state = 269, .external_lex_state = 5}, [2911] = {.lex_state = 102, .external_lex_state = 5}, - [2912] = {.lex_state = 267, .external_lex_state = 5}, - [2913] = {.lex_state = 102, .external_lex_state = 5}, - [2914] = {.lex_state = 271, .external_lex_state = 4}, - [2915] = {.lex_state = 267, .external_lex_state = 5}, - [2916] = {.lex_state = 267, .external_lex_state = 5}, - [2917] = {.lex_state = 267, .external_lex_state = 4}, - [2918] = {.lex_state = 267, .external_lex_state = 4}, - [2919] = {.lex_state = 267, .external_lex_state = 5}, - [2920] = {.lex_state = 132, .external_lex_state = 4}, - [2921] = {.lex_state = 135, .external_lex_state = 5}, - [2922] = {.lex_state = 135, .external_lex_state = 5}, - [2923] = {.lex_state = 135, .external_lex_state = 5}, - [2924] = {.lex_state = 135, .external_lex_state = 5}, - [2925] = {.lex_state = 135, .external_lex_state = 5}, - [2926] = {.lex_state = 135, .external_lex_state = 5}, - [2927] = {.lex_state = 135, .external_lex_state = 5}, - [2928] = {.lex_state = 135, .external_lex_state = 5}, - [2929] = {.lex_state = 135, .external_lex_state = 5}, - [2930] = {.lex_state = 135, .external_lex_state = 5}, - [2931] = {.lex_state = 135, .external_lex_state = 5}, - [2932] = {.lex_state = 135, .external_lex_state = 5}, - [2933] = {.lex_state = 135, .external_lex_state = 5}, - [2934] = {.lex_state = 135, .external_lex_state = 5}, - [2935] = {.lex_state = 129, .external_lex_state = 5}, - [2936] = {.lex_state = 129, .external_lex_state = 5}, - [2937] = {.lex_state = 129, .external_lex_state = 5}, - [2938] = {.lex_state = 102, .external_lex_state = 5}, - [2939] = {.lex_state = 102, .external_lex_state = 5}, - [2940] = {.lex_state = 102, .external_lex_state = 5}, - [2941] = {.lex_state = 267, .external_lex_state = 4}, - [2942] = {.lex_state = 267, .external_lex_state = 5}, - [2943] = {.lex_state = 102, .external_lex_state = 5}, + [2912] = {.lex_state = 102, .external_lex_state = 5}, + [2913] = {.lex_state = 269, .external_lex_state = 5}, + [2914] = {.lex_state = 102, .external_lex_state = 5}, + [2915] = {.lex_state = 269, .external_lex_state = 5}, + [2916] = {.lex_state = 269, .external_lex_state = 5}, + [2917] = {.lex_state = 269, .external_lex_state = 5}, + [2918] = {.lex_state = 269, .external_lex_state = 5}, + [2919] = {.lex_state = 102, .external_lex_state = 5}, + [2920] = {.lex_state = 267, .external_lex_state = 5}, + [2921] = {.lex_state = 267, .external_lex_state = 5}, + [2922] = {.lex_state = 129, .external_lex_state = 5}, + [2923] = {.lex_state = 267, .external_lex_state = 5}, + [2924] = {.lex_state = 132, .external_lex_state = 5}, + [2925] = {.lex_state = 132, .external_lex_state = 5}, + [2926] = {.lex_state = 132, .external_lex_state = 5}, + [2927] = {.lex_state = 132, .external_lex_state = 5}, + [2928] = {.lex_state = 132, .external_lex_state = 5}, + [2929] = {.lex_state = 132, .external_lex_state = 5}, + [2930] = {.lex_state = 132, .external_lex_state = 5}, + [2931] = {.lex_state = 132, .external_lex_state = 5}, + [2932] = {.lex_state = 132, .external_lex_state = 5}, + [2933] = {.lex_state = 132, .external_lex_state = 5}, + [2934] = {.lex_state = 132, .external_lex_state = 5}, + [2935] = {.lex_state = 132, .external_lex_state = 5}, + [2936] = {.lex_state = 132, .external_lex_state = 5}, + [2937] = {.lex_state = 132, .external_lex_state = 5}, + [2938] = {.lex_state = 132, .external_lex_state = 5}, + [2939] = {.lex_state = 132, .external_lex_state = 5}, + [2940] = {.lex_state = 129, .external_lex_state = 5}, + [2941] = {.lex_state = 129, .external_lex_state = 5}, + [2942] = {.lex_state = 129, .external_lex_state = 5}, + [2943] = {.lex_state = 267, .external_lex_state = 5}, [2944] = {.lex_state = 102, .external_lex_state = 5}, [2945] = {.lex_state = 102, .external_lex_state = 5}, [2946] = {.lex_state = 102, .external_lex_state = 5}, - [2947] = {.lex_state = 102, .external_lex_state = 5}, - [2948] = {.lex_state = 102, .external_lex_state = 5}, - [2949] = {.lex_state = 102, .external_lex_state = 5}, - [2950] = {.lex_state = 102, .external_lex_state = 5}, + [2947] = {.lex_state = 267, .external_lex_state = 5}, + [2948] = {.lex_state = 267, .external_lex_state = 5}, + [2949] = {.lex_state = 267, .external_lex_state = 5}, + [2950] = {.lex_state = 267, .external_lex_state = 4}, [2951] = {.lex_state = 102, .external_lex_state = 5}, [2952] = {.lex_state = 102, .external_lex_state = 5}, - [2953] = {.lex_state = 267, .external_lex_state = 5}, + [2953] = {.lex_state = 102, .external_lex_state = 5}, [2954] = {.lex_state = 102, .external_lex_state = 5}, [2955] = {.lex_state = 102, .external_lex_state = 5}, [2956] = {.lex_state = 102, .external_lex_state = 5}, - [2957] = {.lex_state = 267, .external_lex_state = 5}, - [2958] = {.lex_state = 267, .external_lex_state = 5}, - [2959] = {.lex_state = 129, .external_lex_state = 5}, - [2960] = {.lex_state = 129, .external_lex_state = 5}, - [2961] = {.lex_state = 267, .external_lex_state = 4}, + [2957] = {.lex_state = 102, .external_lex_state = 5}, + [2958] = {.lex_state = 102, .external_lex_state = 5}, + [2959] = {.lex_state = 267, .external_lex_state = 5}, + [2960] = {.lex_state = 267, .external_lex_state = 4}, + [2961] = {.lex_state = 102, .external_lex_state = 5}, [2962] = {.lex_state = 267, .external_lex_state = 5}, - [2963] = {.lex_state = 102, .external_lex_state = 5}, + [2963] = {.lex_state = 267, .external_lex_state = 5}, [2964] = {.lex_state = 102, .external_lex_state = 5}, [2965] = {.lex_state = 102, .external_lex_state = 5}, [2966] = {.lex_state = 102, .external_lex_state = 5}, - [2967] = {.lex_state = 102, .external_lex_state = 5}, - [2968] = {.lex_state = 102, .external_lex_state = 5}, - [2969] = {.lex_state = 102, .external_lex_state = 5}, + [2967] = {.lex_state = 267, .external_lex_state = 5}, + [2968] = {.lex_state = 129, .external_lex_state = 5}, + [2969] = {.lex_state = 129, .external_lex_state = 5}, [2970] = {.lex_state = 102, .external_lex_state = 5}, - [2971] = {.lex_state = 267, .external_lex_state = 4}, - [2972] = {.lex_state = 267, .external_lex_state = 4}, - [2973] = {.lex_state = 267, .external_lex_state = 4}, - [2974] = {.lex_state = 129, .external_lex_state = 5}, - [2975] = {.lex_state = 129, .external_lex_state = 5}, - [2976] = {.lex_state = 267, .external_lex_state = 4}, - [2977] = {.lex_state = 267, .external_lex_state = 5}, - [2978] = {.lex_state = 267, .external_lex_state = 5}, - [2979] = {.lex_state = 102, .external_lex_state = 5}, + [2971] = {.lex_state = 102, .external_lex_state = 5}, + [2972] = {.lex_state = 102, .external_lex_state = 5}, + [2973] = {.lex_state = 102, .external_lex_state = 5}, + [2974] = {.lex_state = 102, .external_lex_state = 5}, + [2975] = {.lex_state = 102, .external_lex_state = 5}, + [2976] = {.lex_state = 102, .external_lex_state = 5}, + [2977] = {.lex_state = 102, .external_lex_state = 5}, + [2978] = {.lex_state = 102, .external_lex_state = 5}, + [2979] = {.lex_state = 267, .external_lex_state = 5}, [2980] = {.lex_state = 267, .external_lex_state = 5}, - [2981] = {.lex_state = 135, .external_lex_state = 5}, - [2982] = {.lex_state = 102, .external_lex_state = 5}, - [2983] = {.lex_state = 267, .external_lex_state = 5}, - [2984] = {.lex_state = 129, .external_lex_state = 5}, + [2981] = {.lex_state = 267, .external_lex_state = 5}, + [2982] = {.lex_state = 267, .external_lex_state = 5}, + [2983] = {.lex_state = 102, .external_lex_state = 5}, + [2984] = {.lex_state = 102, .external_lex_state = 5}, [2985] = {.lex_state = 102, .external_lex_state = 5}, [2986] = {.lex_state = 102, .external_lex_state = 5}, [2987] = {.lex_state = 102, .external_lex_state = 5}, @@ -26662,77 +26647,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2992] = {.lex_state = 129, .external_lex_state = 5}, [2993] = {.lex_state = 129, .external_lex_state = 5}, [2994] = {.lex_state = 267, .external_lex_state = 5}, - [2995] = {.lex_state = 102, .external_lex_state = 5}, + [2995] = {.lex_state = 267, .external_lex_state = 5}, [2996] = {.lex_state = 102, .external_lex_state = 5}, [2997] = {.lex_state = 102, .external_lex_state = 5}, - [2998] = {.lex_state = 135, .external_lex_state = 5}, - [2999] = {.lex_state = 135, .external_lex_state = 5}, - [3000] = {.lex_state = 135, .external_lex_state = 5}, - [3001] = {.lex_state = 135, .external_lex_state = 5}, - [3002] = {.lex_state = 135, .external_lex_state = 5}, - [3003] = {.lex_state = 135, .external_lex_state = 5}, - [3004] = {.lex_state = 102, .external_lex_state = 5}, - [3005] = {.lex_state = 135, .external_lex_state = 5}, - [3006] = {.lex_state = 135, .external_lex_state = 5}, - [3007] = {.lex_state = 135, .external_lex_state = 5}, - [3008] = {.lex_state = 135, .external_lex_state = 5}, - [3009] = {.lex_state = 135, .external_lex_state = 5}, - [3010] = {.lex_state = 135, .external_lex_state = 5}, + [2998] = {.lex_state = 267, .external_lex_state = 5}, + [2999] = {.lex_state = 267, .external_lex_state = 5}, + [3000] = {.lex_state = 267, .external_lex_state = 5}, + [3001] = {.lex_state = 267, .external_lex_state = 5}, + [3002] = {.lex_state = 267, .external_lex_state = 5}, + [3003] = {.lex_state = 267, .external_lex_state = 5}, + [3004] = {.lex_state = 267, .external_lex_state = 5}, + [3005] = {.lex_state = 267, .external_lex_state = 5}, + [3006] = {.lex_state = 132, .external_lex_state = 5}, + [3007] = {.lex_state = 267, .external_lex_state = 5}, + [3008] = {.lex_state = 132, .external_lex_state = 5}, + [3009] = {.lex_state = 267, .external_lex_state = 5}, + [3010] = {.lex_state = 132, .external_lex_state = 5}, [3011] = {.lex_state = 267, .external_lex_state = 5}, [3012] = {.lex_state = 267, .external_lex_state = 5}, - [3013] = {.lex_state = 267, .external_lex_state = 4}, - [3014] = {.lex_state = 267, .external_lex_state = 4}, + [3013] = {.lex_state = 132, .external_lex_state = 5}, + [3014] = {.lex_state = 267, .external_lex_state = 5}, [3015] = {.lex_state = 267, .external_lex_state = 5}, [3016] = {.lex_state = 267, .external_lex_state = 5}, - [3017] = {.lex_state = 267, .external_lex_state = 5}, + [3017] = {.lex_state = 132, .external_lex_state = 5}, [3018] = {.lex_state = 102, .external_lex_state = 5}, [3019] = {.lex_state = 102, .external_lex_state = 5}, [3020] = {.lex_state = 102, .external_lex_state = 5}, - [3021] = {.lex_state = 267, .external_lex_state = 5}, - [3022] = {.lex_state = 267, .external_lex_state = 5}, - [3023] = {.lex_state = 267, .external_lex_state = 5}, + [3021] = {.lex_state = 267, .external_lex_state = 4}, + [3022] = {.lex_state = 267, .external_lex_state = 4}, + [3023] = {.lex_state = 132, .external_lex_state = 5}, [3024] = {.lex_state = 102, .external_lex_state = 5}, - [3025] = {.lex_state = 267, .external_lex_state = 5}, - [3026] = {.lex_state = 267, .external_lex_state = 5}, - [3027] = {.lex_state = 267, .external_lex_state = 4}, - [3028] = {.lex_state = 267, .external_lex_state = 5}, - [3029] = {.lex_state = 267, .external_lex_state = 5}, + [3025] = {.lex_state = 132, .external_lex_state = 5}, + [3026] = {.lex_state = 132, .external_lex_state = 5}, + [3027] = {.lex_state = 132, .external_lex_state = 5}, + [3028] = {.lex_state = 132, .external_lex_state = 5}, + [3029] = {.lex_state = 132, .external_lex_state = 5}, [3030] = {.lex_state = 102, .external_lex_state = 5}, [3031] = {.lex_state = 267, .external_lex_state = 5}, - [3032] = {.lex_state = 267, .external_lex_state = 5}, - [3033] = {.lex_state = 267, .external_lex_state = 5}, - [3034] = {.lex_state = 267, .external_lex_state = 5}, - [3035] = {.lex_state = 267, .external_lex_state = 5}, - [3036] = {.lex_state = 267, .external_lex_state = 5}, - [3037] = {.lex_state = 267, .external_lex_state = 5}, - [3038] = {.lex_state = 267, .external_lex_state = 5}, - [3039] = {.lex_state = 267, .external_lex_state = 5}, + [3032] = {.lex_state = 129, .external_lex_state = 5}, + [3033] = {.lex_state = 132, .external_lex_state = 5}, + [3034] = {.lex_state = 132, .external_lex_state = 5}, + [3035] = {.lex_state = 132, .external_lex_state = 5}, + [3036] = {.lex_state = 132, .external_lex_state = 5}, + [3037] = {.lex_state = 267, .external_lex_state = 4}, + [3038] = {.lex_state = 267, .external_lex_state = 4}, + [3039] = {.lex_state = 267, .external_lex_state = 4}, [3040] = {.lex_state = 102, .external_lex_state = 5}, [3041] = {.lex_state = 102, .external_lex_state = 5}, - [3042] = {.lex_state = 135, .external_lex_state = 5}, - [3043] = {.lex_state = 267, .external_lex_state = 5}, + [3042] = {.lex_state = 132, .external_lex_state = 5}, + [3043] = {.lex_state = 129, .external_lex_state = 5}, [3044] = {.lex_state = 102, .external_lex_state = 5}, [3045] = {.lex_state = 102, .external_lex_state = 5}, - [3046] = {.lex_state = 135, .external_lex_state = 5}, + [3046] = {.lex_state = 267, .external_lex_state = 5}, [3047] = {.lex_state = 102, .external_lex_state = 5}, [3048] = {.lex_state = 102, .external_lex_state = 5}, [3049] = {.lex_state = 102, .external_lex_state = 5}, - [3050] = {.lex_state = 135, .external_lex_state = 5}, + [3050] = {.lex_state = 267, .external_lex_state = 4}, [3051] = {.lex_state = 102, .external_lex_state = 5}, [3052] = {.lex_state = 102, .external_lex_state = 5}, [3053] = {.lex_state = 102, .external_lex_state = 5}, - [3054] = {.lex_state = 135, .external_lex_state = 5}, - [3055] = {.lex_state = 267, .external_lex_state = 5}, + [3054] = {.lex_state = 267, .external_lex_state = 5}, + [3055] = {.lex_state = 267, .external_lex_state = 4}, [3056] = {.lex_state = 129, .external_lex_state = 5}, [3057] = {.lex_state = 129, .external_lex_state = 5}, [3058] = {.lex_state = 267, .external_lex_state = 5}, - [3059] = {.lex_state = 267, .external_lex_state = 5}, - [3060] = {.lex_state = 267, .external_lex_state = 5}, + [3059] = {.lex_state = 129, .external_lex_state = 5}, + [3060] = {.lex_state = 129, .external_lex_state = 5}, [3061] = {.lex_state = 267, .external_lex_state = 5}, - [3062] = {.lex_state = 132, .external_lex_state = 4}, - [3063] = {.lex_state = 132, .external_lex_state = 4}, - [3064] = {.lex_state = 132, .external_lex_state = 4}, - [3065] = {.lex_state = 135, .external_lex_state = 5}, + [3062] = {.lex_state = 267, .external_lex_state = 4}, + [3063] = {.lex_state = 267, .external_lex_state = 4}, + [3064] = {.lex_state = 267, .external_lex_state = 4}, + [3065] = {.lex_state = 267, .external_lex_state = 4}, [3066] = {.lex_state = 102, .external_lex_state = 5}, [3067] = {.lex_state = 102, .external_lex_state = 5}, [3068] = {.lex_state = 102, .external_lex_state = 5}, @@ -26743,16 +26728,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3073] = {.lex_state = 102, .external_lex_state = 5}, [3074] = {.lex_state = 102, .external_lex_state = 5}, [3075] = {.lex_state = 102, .external_lex_state = 5}, - [3076] = {.lex_state = 267, .external_lex_state = 5}, - [3077] = {.lex_state = 267, .external_lex_state = 5}, - [3078] = {.lex_state = 267, .external_lex_state = 5}, - [3079] = {.lex_state = 132, .external_lex_state = 4}, - [3080] = {.lex_state = 132, .external_lex_state = 4}, - [3081] = {.lex_state = 132, .external_lex_state = 4}, + [3076] = {.lex_state = 267, .external_lex_state = 4}, + [3077] = {.lex_state = 267, .external_lex_state = 4}, + [3078] = {.lex_state = 267, .external_lex_state = 4}, + [3079] = {.lex_state = 267, .external_lex_state = 4}, + [3080] = {.lex_state = 267, .external_lex_state = 4}, + [3081] = {.lex_state = 267, .external_lex_state = 4}, [3082] = {.lex_state = 267, .external_lex_state = 5}, - [3083] = {.lex_state = 132, .external_lex_state = 4}, - [3084] = {.lex_state = 132, .external_lex_state = 4}, - [3085] = {.lex_state = 132, .external_lex_state = 4}, + [3083] = {.lex_state = 267, .external_lex_state = 5}, + [3084] = {.lex_state = 267, .external_lex_state = 4}, + [3085] = {.lex_state = 267, .external_lex_state = 5}, [3086] = {.lex_state = 102, .external_lex_state = 5}, [3087] = {.lex_state = 102, .external_lex_state = 5}, [3088] = {.lex_state = 102, .external_lex_state = 5}, @@ -26768,172 +26753,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3098] = {.lex_state = 102, .external_lex_state = 5}, [3099] = {.lex_state = 102, .external_lex_state = 5}, [3100] = {.lex_state = 102, .external_lex_state = 5}, - [3101] = {.lex_state = 135, .external_lex_state = 5}, - [3102] = {.lex_state = 135, .external_lex_state = 5}, + [3101] = {.lex_state = 132, .external_lex_state = 5}, + [3102] = {.lex_state = 132, .external_lex_state = 5}, [3103] = {.lex_state = 102, .external_lex_state = 5}, - [3104] = {.lex_state = 135, .external_lex_state = 5}, + [3104] = {.lex_state = 132, .external_lex_state = 5}, [3105] = {.lex_state = 102, .external_lex_state = 5}, [3106] = {.lex_state = 102, .external_lex_state = 5}, - [3107] = {.lex_state = 135, .external_lex_state = 5}, + [3107] = {.lex_state = 132, .external_lex_state = 5}, [3108] = {.lex_state = 102, .external_lex_state = 5}, [3109] = {.lex_state = 102, .external_lex_state = 5}, [3110] = {.lex_state = 102, .external_lex_state = 5}, - [3111] = {.lex_state = 132, .external_lex_state = 4}, - [3112] = {.lex_state = 132, .external_lex_state = 4}, - [3113] = {.lex_state = 132, .external_lex_state = 4}, - [3114] = {.lex_state = 132, .external_lex_state = 4}, - [3115] = {.lex_state = 132, .external_lex_state = 4}, - [3116] = {.lex_state = 132, .external_lex_state = 4}, - [3117] = {.lex_state = 132, .external_lex_state = 4}, - [3118] = {.lex_state = 132, .external_lex_state = 4}, - [3119] = {.lex_state = 132, .external_lex_state = 4}, - [3120] = {.lex_state = 267, .external_lex_state = 5}, - [3121] = {.lex_state = 267, .external_lex_state = 5}, - [3122] = {.lex_state = 267, .external_lex_state = 5}, - [3123] = {.lex_state = 267, .external_lex_state = 5}, - [3124] = {.lex_state = 267, .external_lex_state = 5}, - [3125] = {.lex_state = 267, .external_lex_state = 5}, - [3126] = {.lex_state = 267, .external_lex_state = 5}, + [3111] = {.lex_state = 267, .external_lex_state = 4}, + [3112] = {.lex_state = 132, .external_lex_state = 5}, + [3113] = {.lex_state = 132, .external_lex_state = 5}, + [3114] = {.lex_state = 129, .external_lex_state = 5}, + [3115] = {.lex_state = 132, .external_lex_state = 5}, + [3116] = {.lex_state = 132, .external_lex_state = 5}, + [3117] = {.lex_state = 267, .external_lex_state = 4}, + [3118] = {.lex_state = 132, .external_lex_state = 5}, + [3119] = {.lex_state = 267, .external_lex_state = 4}, + [3120] = {.lex_state = 267, .external_lex_state = 4}, + [3121] = {.lex_state = 267, .external_lex_state = 4}, + [3122] = {.lex_state = 132, .external_lex_state = 5}, + [3123] = {.lex_state = 132, .external_lex_state = 5}, + [3124] = {.lex_state = 132, .external_lex_state = 5}, + [3125] = {.lex_state = 132, .external_lex_state = 5}, + [3126] = {.lex_state = 132, .external_lex_state = 5}, [3127] = {.lex_state = 102, .external_lex_state = 5}, [3128] = {.lex_state = 102, .external_lex_state = 5}, - [3129] = {.lex_state = 135, .external_lex_state = 5}, + [3129] = {.lex_state = 132, .external_lex_state = 5}, [3130] = {.lex_state = 102, .external_lex_state = 5}, - [3131] = {.lex_state = 267, .external_lex_state = 5}, - [3132] = {.lex_state = 267, .external_lex_state = 5}, - [3133] = {.lex_state = 267, .external_lex_state = 5}, - [3134] = {.lex_state = 267, .external_lex_state = 5}, - [3135] = {.lex_state = 267, .external_lex_state = 5}, - [3136] = {.lex_state = 267, .external_lex_state = 5}, - [3137] = {.lex_state = 267, .external_lex_state = 5}, - [3138] = {.lex_state = 267, .external_lex_state = 5}, - [3139] = {.lex_state = 267, .external_lex_state = 5}, - [3140] = {.lex_state = 267, .external_lex_state = 5}, - [3141] = {.lex_state = 267, .external_lex_state = 5}, - [3142] = {.lex_state = 267, .external_lex_state = 5}, - [3143] = {.lex_state = 267, .external_lex_state = 5}, - [3144] = {.lex_state = 267, .external_lex_state = 5}, - [3145] = {.lex_state = 267, .external_lex_state = 5}, - [3146] = {.lex_state = 267, .external_lex_state = 5}, - [3147] = {.lex_state = 267, .external_lex_state = 5}, - [3148] = {.lex_state = 135, .external_lex_state = 5}, - [3149] = {.lex_state = 135, .external_lex_state = 5}, - [3150] = {.lex_state = 135, .external_lex_state = 5}, - [3151] = {.lex_state = 135, .external_lex_state = 5}, - [3152] = {.lex_state = 135, .external_lex_state = 5}, - [3153] = {.lex_state = 135, .external_lex_state = 5}, - [3154] = {.lex_state = 135, .external_lex_state = 5}, - [3155] = {.lex_state = 267, .external_lex_state = 5}, - [3156] = {.lex_state = 132, .external_lex_state = 4}, - [3157] = {.lex_state = 132, .external_lex_state = 4}, - [3158] = {.lex_state = 129, .external_lex_state = 5}, - [3159] = {.lex_state = 132, .external_lex_state = 4}, - [3160] = {.lex_state = 132, .external_lex_state = 4}, - [3161] = {.lex_state = 132, .external_lex_state = 4}, + [3131] = {.lex_state = 267, .external_lex_state = 4}, + [3132] = {.lex_state = 267, .external_lex_state = 4}, + [3133] = {.lex_state = 267, .external_lex_state = 4}, + [3134] = {.lex_state = 267, .external_lex_state = 4}, + [3135] = {.lex_state = 267, .external_lex_state = 4}, + [3136] = {.lex_state = 267, .external_lex_state = 4}, + [3137] = {.lex_state = 267, .external_lex_state = 4}, + [3138] = {.lex_state = 267, .external_lex_state = 4}, + [3139] = {.lex_state = 267, .external_lex_state = 4}, + [3140] = {.lex_state = 267, .external_lex_state = 4}, + [3141] = {.lex_state = 129, .external_lex_state = 5}, + [3142] = {.lex_state = 267, .external_lex_state = 4}, + [3143] = {.lex_state = 267, .external_lex_state = 4}, + [3144] = {.lex_state = 267, .external_lex_state = 4}, + [3145] = {.lex_state = 267, .external_lex_state = 4}, + [3146] = {.lex_state = 267, .external_lex_state = 4}, + [3147] = {.lex_state = 129, .external_lex_state = 5}, + [3148] = {.lex_state = 129, .external_lex_state = 5}, + [3149] = {.lex_state = 267, .external_lex_state = 5}, + [3150] = {.lex_state = 267, .external_lex_state = 5}, + [3151] = {.lex_state = 267, .external_lex_state = 4}, + [3152] = {.lex_state = 267, .external_lex_state = 4}, + [3153] = {.lex_state = 267, .external_lex_state = 5}, + [3154] = {.lex_state = 267, .external_lex_state = 4}, + [3155] = {.lex_state = 129, .external_lex_state = 5}, + [3156] = {.lex_state = 129, .external_lex_state = 5}, + [3157] = {.lex_state = 267, .external_lex_state = 4}, + [3158] = {.lex_state = 267, .external_lex_state = 4}, + [3159] = {.lex_state = 267, .external_lex_state = 4}, + [3160] = {.lex_state = 267, .external_lex_state = 4}, + [3161] = {.lex_state = 267, .external_lex_state = 4}, [3162] = {.lex_state = 267, .external_lex_state = 4}, - [3163] = {.lex_state = 132, .external_lex_state = 4}, - [3164] = {.lex_state = 129, .external_lex_state = 5}, - [3165] = {.lex_state = 267, .external_lex_state = 4}, - [3166] = {.lex_state = 267, .external_lex_state = 4}, - [3167] = {.lex_state = 129, .external_lex_state = 5}, - [3168] = {.lex_state = 267, .external_lex_state = 5}, - [3169] = {.lex_state = 267, .external_lex_state = 5}, - [3170] = {.lex_state = 267, .external_lex_state = 5}, - [3171] = {.lex_state = 132, .external_lex_state = 4}, - [3172] = {.lex_state = 132, .external_lex_state = 4}, - [3173] = {.lex_state = 132, .external_lex_state = 4}, - [3174] = {.lex_state = 132, .external_lex_state = 4}, - [3175] = {.lex_state = 132, .external_lex_state = 4}, - [3176] = {.lex_state = 132, .external_lex_state = 4}, - [3177] = {.lex_state = 132, .external_lex_state = 4}, - [3178] = {.lex_state = 132, .external_lex_state = 4}, - [3179] = {.lex_state = 132, .external_lex_state = 4}, - [3180] = {.lex_state = 132, .external_lex_state = 4}, - [3181] = {.lex_state = 267, .external_lex_state = 5}, - [3182] = {.lex_state = 267, .external_lex_state = 5}, + [3163] = {.lex_state = 102, .external_lex_state = 4}, + [3164] = {.lex_state = 267, .external_lex_state = 4}, + [3165] = {.lex_state = 102, .external_lex_state = 4}, + [3166] = {.lex_state = 132, .external_lex_state = 5}, + [3167] = {.lex_state = 132, .external_lex_state = 5}, + [3168] = {.lex_state = 102, .external_lex_state = 4}, + [3169] = {.lex_state = 132, .external_lex_state = 5}, + [3170] = {.lex_state = 132, .external_lex_state = 5}, + [3171] = {.lex_state = 132, .external_lex_state = 5}, + [3172] = {.lex_state = 132, .external_lex_state = 5}, + [3173] = {.lex_state = 132, .external_lex_state = 5}, + [3174] = {.lex_state = 132, .external_lex_state = 5}, + [3175] = {.lex_state = 132, .external_lex_state = 5}, + [3176] = {.lex_state = 132, .external_lex_state = 5}, + [3177] = {.lex_state = 132, .external_lex_state = 5}, + [3178] = {.lex_state = 267, .external_lex_state = 4}, + [3179] = {.lex_state = 132, .external_lex_state = 5}, + [3180] = {.lex_state = 132, .external_lex_state = 5}, + [3181] = {.lex_state = 132, .external_lex_state = 5}, + [3182] = {.lex_state = 132, .external_lex_state = 5}, [3183] = {.lex_state = 102, .external_lex_state = 5}, [3184] = {.lex_state = 102, .external_lex_state = 5}, - [3185] = {.lex_state = 267, .external_lex_state = 5}, - [3186] = {.lex_state = 267, .external_lex_state = 5}, - [3187] = {.lex_state = 267, .external_lex_state = 5}, - [3188] = {.lex_state = 135, .external_lex_state = 5}, + [3185] = {.lex_state = 132, .external_lex_state = 5}, + [3186] = {.lex_state = 132, .external_lex_state = 5}, + [3187] = {.lex_state = 132, .external_lex_state = 5}, + [3188] = {.lex_state = 132, .external_lex_state = 5}, [3189] = {.lex_state = 267, .external_lex_state = 5}, - [3190] = {.lex_state = 135, .external_lex_state = 5}, + [3190] = {.lex_state = 132, .external_lex_state = 5}, [3191] = {.lex_state = 267, .external_lex_state = 5}, - [3192] = {.lex_state = 135, .external_lex_state = 5}, - [3193] = {.lex_state = 135, .external_lex_state = 5}, + [3192] = {.lex_state = 267, .external_lex_state = 4}, + [3193] = {.lex_state = 267, .external_lex_state = 4}, [3194] = {.lex_state = 267, .external_lex_state = 4}, - [3195] = {.lex_state = 267, .external_lex_state = 5}, + [3195] = {.lex_state = 267, .external_lex_state = 4}, [3196] = {.lex_state = 267, .external_lex_state = 4}, - [3197] = {.lex_state = 267, .external_lex_state = 4}, - [3198] = {.lex_state = 135, .external_lex_state = 5}, + [3197] = {.lex_state = 267, .external_lex_state = 5}, + [3198] = {.lex_state = 267, .external_lex_state = 4}, [3199] = {.lex_state = 267, .external_lex_state = 4}, - [3200] = {.lex_state = 132, .external_lex_state = 4}, - [3201] = {.lex_state = 267, .external_lex_state = 4}, - [3202] = {.lex_state = 267, .external_lex_state = 4}, - [3203] = {.lex_state = 135, .external_lex_state = 5}, - [3204] = {.lex_state = 135, .external_lex_state = 5}, - [3205] = {.lex_state = 135, .external_lex_state = 5}, - [3206] = {.lex_state = 135, .external_lex_state = 5}, - [3207] = {.lex_state = 267, .external_lex_state = 4}, - [3208] = {.lex_state = 267, .external_lex_state = 4}, - [3209] = {.lex_state = 267, .external_lex_state = 4}, - [3210] = {.lex_state = 267, .external_lex_state = 4}, - [3211] = {.lex_state = 267, .external_lex_state = 4}, - [3212] = {.lex_state = 267, .external_lex_state = 4}, - [3213] = {.lex_state = 267, .external_lex_state = 4}, - [3214] = {.lex_state = 267, .external_lex_state = 4}, - [3215] = {.lex_state = 267, .external_lex_state = 4}, - [3216] = {.lex_state = 267, .external_lex_state = 4}, - [3217] = {.lex_state = 135, .external_lex_state = 5}, - [3218] = {.lex_state = 267, .external_lex_state = 4}, - [3219] = {.lex_state = 267, .external_lex_state = 4}, - [3220] = {.lex_state = 267, .external_lex_state = 4}, - [3221] = {.lex_state = 267, .external_lex_state = 4}, - [3222] = {.lex_state = 267, .external_lex_state = 5}, + [3200] = {.lex_state = 267, .external_lex_state = 4}, + [3201] = {.lex_state = 129, .external_lex_state = 5}, + [3202] = {.lex_state = 267, .external_lex_state = 5}, + [3203] = {.lex_state = 129, .external_lex_state = 5}, + [3204] = {.lex_state = 267, .external_lex_state = 5}, + [3205] = {.lex_state = 267, .external_lex_state = 5}, + [3206] = {.lex_state = 267, .external_lex_state = 5}, + [3207] = {.lex_state = 267, .external_lex_state = 5}, + [3208] = {.lex_state = 132, .external_lex_state = 5}, + [3209] = {.lex_state = 267, .external_lex_state = 5}, + [3210] = {.lex_state = 267, .external_lex_state = 5}, + [3211] = {.lex_state = 267, .external_lex_state = 5}, + [3212] = {.lex_state = 267, .external_lex_state = 5}, + [3213] = {.lex_state = 267, .external_lex_state = 5}, + [3214] = {.lex_state = 267, .external_lex_state = 5}, + [3215] = {.lex_state = 267, .external_lex_state = 5}, + [3216] = {.lex_state = 267, .external_lex_state = 5}, + [3217] = {.lex_state = 267, .external_lex_state = 5}, + [3218] = {.lex_state = 267, .external_lex_state = 5}, + [3219] = {.lex_state = 267, .external_lex_state = 5}, + [3220] = {.lex_state = 267, .external_lex_state = 5}, + [3221] = {.lex_state = 129, .external_lex_state = 5}, + [3222] = {.lex_state = 129, .external_lex_state = 5}, [3223] = {.lex_state = 267, .external_lex_state = 5}, - [3224] = {.lex_state = 267, .external_lex_state = 5}, - [3225] = {.lex_state = 102, .external_lex_state = 5}, - [3226] = {.lex_state = 267, .external_lex_state = 5}, - [3227] = {.lex_state = 267, .external_lex_state = 5}, - [3228] = {.lex_state = 267, .external_lex_state = 5}, - [3229] = {.lex_state = 267, .external_lex_state = 5}, + [3224] = {.lex_state = 129, .external_lex_state = 5}, + [3225] = {.lex_state = 129, .external_lex_state = 5}, + [3226] = {.lex_state = 267, .external_lex_state = 4}, + [3227] = {.lex_state = 267, .external_lex_state = 4}, + [3228] = {.lex_state = 267, .external_lex_state = 4}, + [3229] = {.lex_state = 267, .external_lex_state = 4}, [3230] = {.lex_state = 102, .external_lex_state = 5}, [3231] = {.lex_state = 102, .external_lex_state = 5}, [3232] = {.lex_state = 267, .external_lex_state = 5}, - [3233] = {.lex_state = 267, .external_lex_state = 5}, - [3234] = {.lex_state = 267, .external_lex_state = 5}, - [3235] = {.lex_state = 267, .external_lex_state = 5}, - [3236] = {.lex_state = 267, .external_lex_state = 5}, - [3237] = {.lex_state = 135, .external_lex_state = 5}, - [3238] = {.lex_state = 135, .external_lex_state = 5}, - [3239] = {.lex_state = 135, .external_lex_state = 5}, - [3240] = {.lex_state = 135, .external_lex_state = 5}, - [3241] = {.lex_state = 135, .external_lex_state = 5}, - [3242] = {.lex_state = 135, .external_lex_state = 5}, + [3233] = {.lex_state = 267, .external_lex_state = 4}, + [3234] = {.lex_state = 267, .external_lex_state = 4}, + [3235] = {.lex_state = 267, .external_lex_state = 4}, + [3236] = {.lex_state = 267, .external_lex_state = 4}, + [3237] = {.lex_state = 267, .external_lex_state = 4}, + [3238] = {.lex_state = 267, .external_lex_state = 4}, + [3239] = {.lex_state = 267, .external_lex_state = 5}, + [3240] = {.lex_state = 267, .external_lex_state = 4}, + [3241] = {.lex_state = 267, .external_lex_state = 4}, + [3242] = {.lex_state = 267, .external_lex_state = 5}, [3243] = {.lex_state = 267, .external_lex_state = 5}, - [3244] = {.lex_state = 132, .external_lex_state = 4}, - [3245] = {.lex_state = 132, .external_lex_state = 4}, - [3246] = {.lex_state = 132, .external_lex_state = 4}, - [3247] = {.lex_state = 132, .external_lex_state = 4}, + [3244] = {.lex_state = 267, .external_lex_state = 5}, + [3245] = {.lex_state = 267, .external_lex_state = 4}, + [3246] = {.lex_state = 267, .external_lex_state = 4}, + [3247] = {.lex_state = 267, .external_lex_state = 4}, [3248] = {.lex_state = 267, .external_lex_state = 4}, [3249] = {.lex_state = 267, .external_lex_state = 4}, - [3250] = {.lex_state = 132, .external_lex_state = 4}, - [3251] = {.lex_state = 132, .external_lex_state = 4}, - [3252] = {.lex_state = 132, .external_lex_state = 4}, - [3253] = {.lex_state = 129, .external_lex_state = 5}, - [3254] = {.lex_state = 267, .external_lex_state = 5}, - [3255] = {.lex_state = 132, .external_lex_state = 4}, - [3256] = {.lex_state = 132, .external_lex_state = 4}, + [3250] = {.lex_state = 267, .external_lex_state = 4}, + [3251] = {.lex_state = 267, .external_lex_state = 4}, + [3252] = {.lex_state = 267, .external_lex_state = 5}, + [3253] = {.lex_state = 267, .external_lex_state = 5}, + [3254] = {.lex_state = 267, .external_lex_state = 4}, + [3255] = {.lex_state = 267, .external_lex_state = 5}, + [3256] = {.lex_state = 267, .external_lex_state = 4}, [3257] = {.lex_state = 102, .external_lex_state = 5}, [3258] = {.lex_state = 102, .external_lex_state = 5}, [3259] = {.lex_state = 102, .external_lex_state = 5}, - [3260] = {.lex_state = 132, .external_lex_state = 4}, + [3260] = {.lex_state = 267, .external_lex_state = 5}, [3261] = {.lex_state = 102, .external_lex_state = 5}, [3262] = {.lex_state = 102, .external_lex_state = 5}, [3263] = {.lex_state = 102, .external_lex_state = 5}, [3264] = {.lex_state = 102, .external_lex_state = 5}, [3265] = {.lex_state = 102, .external_lex_state = 5}, - [3266] = {.lex_state = 132, .external_lex_state = 4}, + [3266] = {.lex_state = 267, .external_lex_state = 5}, [3267] = {.lex_state = 102, .external_lex_state = 5}, [3268] = {.lex_state = 102, .external_lex_state = 5}, [3269] = {.lex_state = 102, .external_lex_state = 5}, @@ -26944,28 +26929,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3274] = {.lex_state = 102, .external_lex_state = 5}, [3275] = {.lex_state = 102, .external_lex_state = 5}, [3276] = {.lex_state = 267, .external_lex_state = 5}, - [3277] = {.lex_state = 267, .external_lex_state = 4}, - [3278] = {.lex_state = 267, .external_lex_state = 4}, - [3279] = {.lex_state = 267, .external_lex_state = 4}, - [3280] = {.lex_state = 267, .external_lex_state = 4}, - [3281] = {.lex_state = 267, .external_lex_state = 4}, - [3282] = {.lex_state = 129, .external_lex_state = 5}, - [3283] = {.lex_state = 267, .external_lex_state = 4}, - [3284] = {.lex_state = 267, .external_lex_state = 4}, - [3285] = {.lex_state = 267, .external_lex_state = 4}, - [3286] = {.lex_state = 267, .external_lex_state = 4}, + [3277] = {.lex_state = 267, .external_lex_state = 5}, + [3278] = {.lex_state = 267, .external_lex_state = 5}, + [3279] = {.lex_state = 267, .external_lex_state = 5}, + [3280] = {.lex_state = 267, .external_lex_state = 5}, + [3281] = {.lex_state = 267, .external_lex_state = 5}, + [3282] = {.lex_state = 267, .external_lex_state = 5}, + [3283] = {.lex_state = 267, .external_lex_state = 5}, + [3284] = {.lex_state = 267, .external_lex_state = 5}, + [3285] = {.lex_state = 267, .external_lex_state = 5}, + [3286] = {.lex_state = 129, .external_lex_state = 5}, [3287] = {.lex_state = 267, .external_lex_state = 4}, - [3288] = {.lex_state = 132, .external_lex_state = 4}, - [3289] = {.lex_state = 129, .external_lex_state = 5}, + [3288] = {.lex_state = 267, .external_lex_state = 5}, + [3289] = {.lex_state = 267, .external_lex_state = 5}, [3290] = {.lex_state = 267, .external_lex_state = 5}, - [3291] = {.lex_state = 132, .external_lex_state = 4}, - [3292] = {.lex_state = 129, .external_lex_state = 5}, - [3293] = {.lex_state = 132, .external_lex_state = 4}, + [3291] = {.lex_state = 267, .external_lex_state = 5}, + [3292] = {.lex_state = 267, .external_lex_state = 5}, + [3293] = {.lex_state = 267, .external_lex_state = 5}, [3294] = {.lex_state = 102, .external_lex_state = 5}, [3295] = {.lex_state = 102, .external_lex_state = 5}, - [3296] = {.lex_state = 132, .external_lex_state = 4}, + [3296] = {.lex_state = 267, .external_lex_state = 5}, [3297] = {.lex_state = 267, .external_lex_state = 5}, - [3298] = {.lex_state = 267, .external_lex_state = 4}, + [3298] = {.lex_state = 267, .external_lex_state = 5}, [3299] = {.lex_state = 267, .external_lex_state = 5}, [3300] = {.lex_state = 267, .external_lex_state = 5}, [3301] = {.lex_state = 267, .external_lex_state = 5}, @@ -26975,640 +26960,640 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3305] = {.lex_state = 267, .external_lex_state = 5}, [3306] = {.lex_state = 267, .external_lex_state = 5}, [3307] = {.lex_state = 267, .external_lex_state = 5}, - [3308] = {.lex_state = 267, .external_lex_state = 4}, - [3309] = {.lex_state = 267, .external_lex_state = 4}, - [3310] = {.lex_state = 267, .external_lex_state = 5}, + [3308] = {.lex_state = 267, .external_lex_state = 5}, + [3309] = {.lex_state = 267, .external_lex_state = 5}, + [3310] = {.lex_state = 135, .external_lex_state = 4}, [3311] = {.lex_state = 267, .external_lex_state = 5}, - [3312] = {.lex_state = 267, .external_lex_state = 5}, + [3312] = {.lex_state = 267, .external_lex_state = 4}, [3313] = {.lex_state = 267, .external_lex_state = 5}, - [3314] = {.lex_state = 267, .external_lex_state = 5}, + [3314] = {.lex_state = 267, .external_lex_state = 4}, [3315] = {.lex_state = 267, .external_lex_state = 5}, [3316] = {.lex_state = 267, .external_lex_state = 5}, [3317] = {.lex_state = 267, .external_lex_state = 5}, - [3318] = {.lex_state = 267, .external_lex_state = 5}, - [3319] = {.lex_state = 267, .external_lex_state = 5}, - [3320] = {.lex_state = 267, .external_lex_state = 5}, - [3321] = {.lex_state = 267, .external_lex_state = 5}, - [3322] = {.lex_state = 135, .external_lex_state = 5}, - [3323] = {.lex_state = 135, .external_lex_state = 5}, - [3324] = {.lex_state = 267, .external_lex_state = 4}, - [3325] = {.lex_state = 267, .external_lex_state = 5}, - [3326] = {.lex_state = 267, .external_lex_state = 4}, - [3327] = {.lex_state = 267, .external_lex_state = 4}, - [3328] = {.lex_state = 135, .external_lex_state = 5}, + [3318] = {.lex_state = 267, .external_lex_state = 4}, + [3319] = {.lex_state = 267, .external_lex_state = 4}, + [3320] = {.lex_state = 267, .external_lex_state = 4}, + [3321] = {.lex_state = 267, .external_lex_state = 4}, + [3322] = {.lex_state = 267, .external_lex_state = 5}, + [3323] = {.lex_state = 267, .external_lex_state = 4}, + [3324] = {.lex_state = 267, .external_lex_state = 5}, + [3325] = {.lex_state = 135, .external_lex_state = 4}, + [3326] = {.lex_state = 135, .external_lex_state = 4}, + [3327] = {.lex_state = 135, .external_lex_state = 4}, + [3328] = {.lex_state = 135, .external_lex_state = 4}, [3329] = {.lex_state = 267, .external_lex_state = 4}, - [3330] = {.lex_state = 267, .external_lex_state = 4}, + [3330] = {.lex_state = 135, .external_lex_state = 4}, [3331] = {.lex_state = 267, .external_lex_state = 4}, [3332] = {.lex_state = 267, .external_lex_state = 4}, [3333] = {.lex_state = 267, .external_lex_state = 4}, - [3334] = {.lex_state = 135, .external_lex_state = 5}, - [3335] = {.lex_state = 135, .external_lex_state = 5}, - [3336] = {.lex_state = 135, .external_lex_state = 5}, - [3337] = {.lex_state = 135, .external_lex_state = 5}, + [3334] = {.lex_state = 267, .external_lex_state = 4}, + [3335] = {.lex_state = 135, .external_lex_state = 4}, + [3336] = {.lex_state = 267, .external_lex_state = 4}, + [3337] = {.lex_state = 267, .external_lex_state = 4}, [3338] = {.lex_state = 267, .external_lex_state = 4}, - [3339] = {.lex_state = 267, .external_lex_state = 4}, - [3340] = {.lex_state = 135, .external_lex_state = 5}, - [3341] = {.lex_state = 267, .external_lex_state = 5}, - [3342] = {.lex_state = 267, .external_lex_state = 5}, - [3343] = {.lex_state = 267, .external_lex_state = 5}, - [3344] = {.lex_state = 267, .external_lex_state = 5}, - [3345] = {.lex_state = 129, .external_lex_state = 5}, - [3346] = {.lex_state = 267, .external_lex_state = 5}, - [3347] = {.lex_state = 135, .external_lex_state = 5}, - [3348] = {.lex_state = 135, .external_lex_state = 5}, - [3349] = {.lex_state = 135, .external_lex_state = 5}, - [3350] = {.lex_state = 135, .external_lex_state = 5}, - [3351] = {.lex_state = 135, .external_lex_state = 5}, - [3352] = {.lex_state = 135, .external_lex_state = 5}, - [3353] = {.lex_state = 135, .external_lex_state = 5}, - [3354] = {.lex_state = 135, .external_lex_state = 5}, - [3355] = {.lex_state = 135, .external_lex_state = 5}, - [3356] = {.lex_state = 135, .external_lex_state = 5}, - [3357] = {.lex_state = 135, .external_lex_state = 5}, - [3358] = {.lex_state = 135, .external_lex_state = 5}, - [3359] = {.lex_state = 267, .external_lex_state = 5}, - [3360] = {.lex_state = 102, .external_lex_state = 5}, - [3361] = {.lex_state = 132, .external_lex_state = 4}, - [3362] = {.lex_state = 132, .external_lex_state = 4}, - [3363] = {.lex_state = 132, .external_lex_state = 4}, - [3364] = {.lex_state = 132, .external_lex_state = 4}, - [3365] = {.lex_state = 132, .external_lex_state = 4}, - [3366] = {.lex_state = 267, .external_lex_state = 4}, - [3367] = {.lex_state = 132, .external_lex_state = 4}, - [3368] = {.lex_state = 132, .external_lex_state = 4}, - [3369] = {.lex_state = 267, .external_lex_state = 5}, - [3370] = {.lex_state = 267, .external_lex_state = 4}, - [3371] = {.lex_state = 132, .external_lex_state = 4}, - [3372] = {.lex_state = 132, .external_lex_state = 4}, - [3373] = {.lex_state = 132, .external_lex_state = 4}, - [3374] = {.lex_state = 132, .external_lex_state = 4}, - [3375] = {.lex_state = 132, .external_lex_state = 4}, - [3376] = {.lex_state = 129, .external_lex_state = 5}, - [3377] = {.lex_state = 129, .external_lex_state = 5}, - [3378] = {.lex_state = 132, .external_lex_state = 4}, - [3379] = {.lex_state = 129, .external_lex_state = 5}, - [3380] = {.lex_state = 129, .external_lex_state = 5}, - [3381] = {.lex_state = 129, .external_lex_state = 5}, - [3382] = {.lex_state = 132, .external_lex_state = 4}, - [3383] = {.lex_state = 132, .external_lex_state = 4}, - [3384] = {.lex_state = 132, .external_lex_state = 4}, - [3385] = {.lex_state = 267, .external_lex_state = 4}, - [3386] = {.lex_state = 267, .external_lex_state = 4}, - [3387] = {.lex_state = 267, .external_lex_state = 4}, - [3388] = {.lex_state = 267, .external_lex_state = 4}, - [3389] = {.lex_state = 267, .external_lex_state = 4}, - [3390] = {.lex_state = 267, .external_lex_state = 4}, - [3391] = {.lex_state = 267, .external_lex_state = 4}, - [3392] = {.lex_state = 267, .external_lex_state = 4}, - [3393] = {.lex_state = 267, .external_lex_state = 4}, - [3394] = {.lex_state = 129, .external_lex_state = 5}, - [3395] = {.lex_state = 267, .external_lex_state = 4}, - [3396] = {.lex_state = 129, .external_lex_state = 5}, - [3397] = {.lex_state = 132, .external_lex_state = 4}, - [3398] = {.lex_state = 132, .external_lex_state = 4}, - [3399] = {.lex_state = 267, .external_lex_state = 4}, - [3400] = {.lex_state = 267, .external_lex_state = 4}, - [3401] = {.lex_state = 102, .external_lex_state = 5}, - [3402] = {.lex_state = 267, .external_lex_state = 4}, - [3403] = {.lex_state = 267, .external_lex_state = 5}, - [3404] = {.lex_state = 129, .external_lex_state = 5}, - [3405] = {.lex_state = 267, .external_lex_state = 4}, + [3339] = {.lex_state = 102, .external_lex_state = 4}, + [3340] = {.lex_state = 267, .external_lex_state = 4}, + [3341] = {.lex_state = 129, .external_lex_state = 5}, + [3342] = {.lex_state = 129, .external_lex_state = 5}, + [3343] = {.lex_state = 267, .external_lex_state = 4}, + [3344] = {.lex_state = 135, .external_lex_state = 4}, + [3345] = {.lex_state = 135, .external_lex_state = 4}, + [3346] = {.lex_state = 135, .external_lex_state = 4}, + [3347] = {.lex_state = 267, .external_lex_state = 5}, + [3348] = {.lex_state = 267, .external_lex_state = 5}, + [3349] = {.lex_state = 135, .external_lex_state = 4}, + [3350] = {.lex_state = 267, .external_lex_state = 5}, + [3351] = {.lex_state = 267, .external_lex_state = 4}, + [3352] = {.lex_state = 102, .external_lex_state = 5}, + [3353] = {.lex_state = 135, .external_lex_state = 4}, + [3354] = {.lex_state = 135, .external_lex_state = 4}, + [3355] = {.lex_state = 135, .external_lex_state = 4}, + [3356] = {.lex_state = 135, .external_lex_state = 4}, + [3357] = {.lex_state = 135, .external_lex_state = 4}, + [3358] = {.lex_state = 135, .external_lex_state = 4}, + [3359] = {.lex_state = 135, .external_lex_state = 4}, + [3360] = {.lex_state = 135, .external_lex_state = 4}, + [3361] = {.lex_state = 135, .external_lex_state = 4}, + [3362] = {.lex_state = 135, .external_lex_state = 4}, + [3363] = {.lex_state = 135, .external_lex_state = 4}, + [3364] = {.lex_state = 135, .external_lex_state = 4}, + [3365] = {.lex_state = 135, .external_lex_state = 4}, + [3366] = {.lex_state = 135, .external_lex_state = 4}, + [3367] = {.lex_state = 135, .external_lex_state = 4}, + [3368] = {.lex_state = 135, .external_lex_state = 4}, + [3369] = {.lex_state = 135, .external_lex_state = 4}, + [3370] = {.lex_state = 135, .external_lex_state = 4}, + [3371] = {.lex_state = 135, .external_lex_state = 4}, + [3372] = {.lex_state = 135, .external_lex_state = 4}, + [3373] = {.lex_state = 135, .external_lex_state = 4}, + [3374] = {.lex_state = 135, .external_lex_state = 4}, + [3375] = {.lex_state = 135, .external_lex_state = 4}, + [3376] = {.lex_state = 267, .external_lex_state = 5}, + [3377] = {.lex_state = 135, .external_lex_state = 4}, + [3378] = {.lex_state = 135, .external_lex_state = 4}, + [3379] = {.lex_state = 135, .external_lex_state = 4}, + [3380] = {.lex_state = 135, .external_lex_state = 4}, + [3381] = {.lex_state = 102, .external_lex_state = 4}, + [3382] = {.lex_state = 135, .external_lex_state = 4}, + [3383] = {.lex_state = 135, .external_lex_state = 4}, + [3384] = {.lex_state = 267, .external_lex_state = 5}, + [3385] = {.lex_state = 135, .external_lex_state = 4}, + [3386] = {.lex_state = 135, .external_lex_state = 4}, + [3387] = {.lex_state = 135, .external_lex_state = 4}, + [3388] = {.lex_state = 135, .external_lex_state = 4}, + [3389] = {.lex_state = 267, .external_lex_state = 5}, + [3390] = {.lex_state = 135, .external_lex_state = 4}, + [3391] = {.lex_state = 135, .external_lex_state = 4}, + [3392] = {.lex_state = 267, .external_lex_state = 5}, + [3393] = {.lex_state = 135, .external_lex_state = 4}, + [3394] = {.lex_state = 267, .external_lex_state = 5}, + [3395] = {.lex_state = 135, .external_lex_state = 4}, + [3396] = {.lex_state = 135, .external_lex_state = 4}, + [3397] = {.lex_state = 135, .external_lex_state = 4}, + [3398] = {.lex_state = 135, .external_lex_state = 4}, + [3399] = {.lex_state = 135, .external_lex_state = 4}, + [3400] = {.lex_state = 267, .external_lex_state = 5}, + [3401] = {.lex_state = 135, .external_lex_state = 4}, + [3402] = {.lex_state = 135, .external_lex_state = 4}, + [3403] = {.lex_state = 135, .external_lex_state = 4}, + [3404] = {.lex_state = 267, .external_lex_state = 5}, + [3405] = {.lex_state = 267, .external_lex_state = 5}, [3406] = {.lex_state = 267, .external_lex_state = 4}, - [3407] = {.lex_state = 267, .external_lex_state = 4}, - [3408] = {.lex_state = 267, .external_lex_state = 5}, - [3409] = {.lex_state = 267, .external_lex_state = 5}, - [3410] = {.lex_state = 267, .external_lex_state = 5}, - [3411] = {.lex_state = 267, .external_lex_state = 5}, - [3412] = {.lex_state = 267, .external_lex_state = 5}, - [3413] = {.lex_state = 267, .external_lex_state = 5}, - [3414] = {.lex_state = 267, .external_lex_state = 4}, - [3415] = {.lex_state = 267, .external_lex_state = 5}, - [3416] = {.lex_state = 129, .external_lex_state = 5}, - [3417] = {.lex_state = 267, .external_lex_state = 5}, - [3418] = {.lex_state = 267, .external_lex_state = 5}, + [3407] = {.lex_state = 267, .external_lex_state = 5}, + [3408] = {.lex_state = 135, .external_lex_state = 4}, + [3409] = {.lex_state = 132, .external_lex_state = 5}, + [3410] = {.lex_state = 135, .external_lex_state = 4}, + [3411] = {.lex_state = 129, .external_lex_state = 5}, + [3412] = {.lex_state = 129, .external_lex_state = 5}, + [3413] = {.lex_state = 135, .external_lex_state = 4}, + [3414] = {.lex_state = 135, .external_lex_state = 4}, + [3415] = {.lex_state = 135, .external_lex_state = 4}, + [3416] = {.lex_state = 267, .external_lex_state = 5}, + [3417] = {.lex_state = 135, .external_lex_state = 4}, + [3418] = {.lex_state = 135, .external_lex_state = 4}, [3419] = {.lex_state = 267, .external_lex_state = 5}, [3420] = {.lex_state = 267, .external_lex_state = 5}, - [3421] = {.lex_state = 132, .external_lex_state = 4}, - [3422] = {.lex_state = 132, .external_lex_state = 4}, - [3423] = {.lex_state = 129, .external_lex_state = 5}, - [3424] = {.lex_state = 129, .external_lex_state = 5}, + [3421] = {.lex_state = 135, .external_lex_state = 4}, + [3422] = {.lex_state = 135, .external_lex_state = 4}, + [3423] = {.lex_state = 267, .external_lex_state = 5}, + [3424] = {.lex_state = 267, .external_lex_state = 5}, [3425] = {.lex_state = 267, .external_lex_state = 5}, [3426] = {.lex_state = 267, .external_lex_state = 5}, [3427] = {.lex_state = 267, .external_lex_state = 5}, [3428] = {.lex_state = 267, .external_lex_state = 5}, [3429] = {.lex_state = 267, .external_lex_state = 5}, - [3430] = {.lex_state = 102, .external_lex_state = 4}, - [3431] = {.lex_state = 267, .external_lex_state = 4}, - [3432] = {.lex_state = 267, .external_lex_state = 4}, - [3433] = {.lex_state = 267, .external_lex_state = 4}, - [3434] = {.lex_state = 102, .external_lex_state = 4}, - [3435] = {.lex_state = 102, .external_lex_state = 4}, - [3436] = {.lex_state = 267, .external_lex_state = 4}, - [3437] = {.lex_state = 267, .external_lex_state = 4}, - [3438] = {.lex_state = 267, .external_lex_state = 4}, - [3439] = {.lex_state = 267, .external_lex_state = 4}, - [3440] = {.lex_state = 267, .external_lex_state = 4}, - [3441] = {.lex_state = 267, .external_lex_state = 4}, - [3442] = {.lex_state = 132, .external_lex_state = 4}, - [3443] = {.lex_state = 129, .external_lex_state = 5}, - [3444] = {.lex_state = 267, .external_lex_state = 4}, - [3445] = {.lex_state = 267, .external_lex_state = 4}, - [3446] = {.lex_state = 267, .external_lex_state = 4}, - [3447] = {.lex_state = 267, .external_lex_state = 4}, - [3448] = {.lex_state = 129, .external_lex_state = 5}, - [3449] = {.lex_state = 129, .external_lex_state = 5}, - [3450] = {.lex_state = 132, .external_lex_state = 4}, - [3451] = {.lex_state = 132, .external_lex_state = 4}, - [3452] = {.lex_state = 267, .external_lex_state = 5}, + [3430] = {.lex_state = 267, .external_lex_state = 5}, + [3431] = {.lex_state = 267, .external_lex_state = 5}, + [3432] = {.lex_state = 267, .external_lex_state = 5}, + [3433] = {.lex_state = 267, .external_lex_state = 5}, + [3434] = {.lex_state = 267, .external_lex_state = 5}, + [3435] = {.lex_state = 267, .external_lex_state = 5}, + [3436] = {.lex_state = 267, .external_lex_state = 5}, + [3437] = {.lex_state = 267, .external_lex_state = 5}, + [3438] = {.lex_state = 267, .external_lex_state = 5}, + [3439] = {.lex_state = 267, .external_lex_state = 5}, + [3440] = {.lex_state = 102, .external_lex_state = 5}, + [3441] = {.lex_state = 129, .external_lex_state = 5}, + [3442] = {.lex_state = 102, .external_lex_state = 4}, + [3443] = {.lex_state = 102, .external_lex_state = 5}, + [3444] = {.lex_state = 267, .external_lex_state = 5}, + [3445] = {.lex_state = 132, .external_lex_state = 5}, + [3446] = {.lex_state = 132, .external_lex_state = 5}, + [3447] = {.lex_state = 267, .external_lex_state = 5}, + [3448] = {.lex_state = 132, .external_lex_state = 5}, + [3449] = {.lex_state = 267, .external_lex_state = 5}, + [3450] = {.lex_state = 132, .external_lex_state = 5}, + [3451] = {.lex_state = 132, .external_lex_state = 5}, + [3452] = {.lex_state = 102, .external_lex_state = 5}, [3453] = {.lex_state = 267, .external_lex_state = 5}, - [3454] = {.lex_state = 267, .external_lex_state = 5}, + [3454] = {.lex_state = 132, .external_lex_state = 5}, [3455] = {.lex_state = 267, .external_lex_state = 5}, - [3456] = {.lex_state = 129, .external_lex_state = 5}, - [3457] = {.lex_state = 129, .external_lex_state = 5}, - [3458] = {.lex_state = 267, .external_lex_state = 5}, - [3459] = {.lex_state = 267, .external_lex_state = 5}, - [3460] = {.lex_state = 267, .external_lex_state = 5}, + [3456] = {.lex_state = 135, .external_lex_state = 4}, + [3457] = {.lex_state = 135, .external_lex_state = 4}, + [3458] = {.lex_state = 135, .external_lex_state = 4}, + [3459] = {.lex_state = 135, .external_lex_state = 4}, + [3460] = {.lex_state = 135, .external_lex_state = 4}, [3461] = {.lex_state = 267, .external_lex_state = 5}, [3462] = {.lex_state = 267, .external_lex_state = 5}, - [3463] = {.lex_state = 267, .external_lex_state = 5}, - [3464] = {.lex_state = 132, .external_lex_state = 4}, - [3465] = {.lex_state = 132, .external_lex_state = 4}, - [3466] = {.lex_state = 102, .external_lex_state = 4}, - [3467] = {.lex_state = 267, .external_lex_state = 5}, - [3468] = {.lex_state = 102, .external_lex_state = 4}, - [3469] = {.lex_state = 267, .external_lex_state = 5}, + [3463] = {.lex_state = 135, .external_lex_state = 4}, + [3464] = {.lex_state = 135, .external_lex_state = 4}, + [3465] = {.lex_state = 135, .external_lex_state = 4}, + [3466] = {.lex_state = 135, .external_lex_state = 4}, + [3467] = {.lex_state = 135, .external_lex_state = 4}, + [3468] = {.lex_state = 135, .external_lex_state = 4}, + [3469] = {.lex_state = 135, .external_lex_state = 4}, [3470] = {.lex_state = 267, .external_lex_state = 5}, - [3471] = {.lex_state = 102, .external_lex_state = 4}, + [3471] = {.lex_state = 129, .external_lex_state = 5}, [3472] = {.lex_state = 267, .external_lex_state = 5}, [3473] = {.lex_state = 267, .external_lex_state = 5}, - [3474] = {.lex_state = 267, .external_lex_state = 5}, + [3474] = {.lex_state = 129, .external_lex_state = 5}, [3475] = {.lex_state = 267, .external_lex_state = 5}, - [3476] = {.lex_state = 267, .external_lex_state = 5}, - [3477] = {.lex_state = 102, .external_lex_state = 5}, - [3478] = {.lex_state = 129, .external_lex_state = 5}, - [3479] = {.lex_state = 132, .external_lex_state = 4}, - [3480] = {.lex_state = 132, .external_lex_state = 4}, - [3481] = {.lex_state = 267, .external_lex_state = 4}, - [3482] = {.lex_state = 267, .external_lex_state = 4}, - [3483] = {.lex_state = 267, .external_lex_state = 4}, - [3484] = {.lex_state = 267, .external_lex_state = 4}, - [3485] = {.lex_state = 267, .external_lex_state = 4}, - [3486] = {.lex_state = 267, .external_lex_state = 4}, - [3487] = {.lex_state = 267, .external_lex_state = 4}, - [3488] = {.lex_state = 267, .external_lex_state = 4}, + [3476] = {.lex_state = 135, .external_lex_state = 4}, + [3477] = {.lex_state = 135, .external_lex_state = 4}, + [3478] = {.lex_state = 267, .external_lex_state = 5}, + [3479] = {.lex_state = 102, .external_lex_state = 5}, + [3480] = {.lex_state = 267, .external_lex_state = 5}, + [3481] = {.lex_state = 267, .external_lex_state = 5}, + [3482] = {.lex_state = 129, .external_lex_state = 5}, + [3483] = {.lex_state = 132, .external_lex_state = 5}, + [3484] = {.lex_state = 129, .external_lex_state = 5}, + [3485] = {.lex_state = 129, .external_lex_state = 5}, + [3486] = {.lex_state = 132, .external_lex_state = 5}, + [3487] = {.lex_state = 129, .external_lex_state = 5}, + [3488] = {.lex_state = 132, .external_lex_state = 5}, [3489] = {.lex_state = 267, .external_lex_state = 5}, - [3490] = {.lex_state = 132, .external_lex_state = 4}, - [3491] = {.lex_state = 132, .external_lex_state = 4}, - [3492] = {.lex_state = 267, .external_lex_state = 4}, - [3493] = {.lex_state = 267, .external_lex_state = 4}, - [3494] = {.lex_state = 267, .external_lex_state = 4}, - [3495] = {.lex_state = 129, .external_lex_state = 5}, - [3496] = {.lex_state = 129, .external_lex_state = 5}, - [3497] = {.lex_state = 267, .external_lex_state = 5}, - [3498] = {.lex_state = 132, .external_lex_state = 4}, - [3499] = {.lex_state = 138, .external_lex_state = 4}, - [3500] = {.lex_state = 102, .external_lex_state = 4}, + [3490] = {.lex_state = 267, .external_lex_state = 5}, + [3491] = {.lex_state = 132, .external_lex_state = 5}, + [3492] = {.lex_state = 129, .external_lex_state = 5}, + [3493] = {.lex_state = 267, .external_lex_state = 5}, + [3494] = {.lex_state = 267, .external_lex_state = 5}, + [3495] = {.lex_state = 135, .external_lex_state = 4}, + [3496] = {.lex_state = 135, .external_lex_state = 4}, + [3497] = {.lex_state = 132, .external_lex_state = 5}, + [3498] = {.lex_state = 271, .external_lex_state = 4}, + [3499] = {.lex_state = 102, .external_lex_state = 4}, + [3500] = {.lex_state = 271, .external_lex_state = 4}, [3501] = {.lex_state = 267, .external_lex_state = 4}, - [3502] = {.lex_state = 102, .external_lex_state = 4}, - [3503] = {.lex_state = 267, .external_lex_state = 4}, - [3504] = {.lex_state = 129, .external_lex_state = 4}, - [3505] = {.lex_state = 129, .external_lex_state = 4}, - [3506] = {.lex_state = 267, .external_lex_state = 5}, + [3502] = {.lex_state = 271, .external_lex_state = 4}, + [3503] = {.lex_state = 271, .external_lex_state = 4}, + [3504] = {.lex_state = 267, .external_lex_state = 4}, + [3505] = {.lex_state = 267, .external_lex_state = 4}, + [3506] = {.lex_state = 271, .external_lex_state = 4}, [3507] = {.lex_state = 271, .external_lex_state = 4}, - [3508] = {.lex_state = 267, .external_lex_state = 4}, + [3508] = {.lex_state = 271, .external_lex_state = 4}, [3509] = {.lex_state = 271, .external_lex_state = 4}, [3510] = {.lex_state = 271, .external_lex_state = 4}, [3511] = {.lex_state = 271, .external_lex_state = 4}, [3512] = {.lex_state = 271, .external_lex_state = 4}, - [3513] = {.lex_state = 129, .external_lex_state = 5}, + [3513] = {.lex_state = 271, .external_lex_state = 4}, [3514] = {.lex_state = 271, .external_lex_state = 4}, [3515] = {.lex_state = 271, .external_lex_state = 4}, - [3516] = {.lex_state = 271, .external_lex_state = 4}, + [3516] = {.lex_state = 129, .external_lex_state = 5}, [3517] = {.lex_state = 271, .external_lex_state = 4}, - [3518] = {.lex_state = 129, .external_lex_state = 5}, + [3518] = {.lex_state = 271, .external_lex_state = 4}, [3519] = {.lex_state = 271, .external_lex_state = 4}, - [3520] = {.lex_state = 271, .external_lex_state = 4}, - [3521] = {.lex_state = 129, .external_lex_state = 4}, + [3520] = {.lex_state = 267, .external_lex_state = 4}, + [3521] = {.lex_state = 271, .external_lex_state = 4}, [3522] = {.lex_state = 271, .external_lex_state = 4}, [3523] = {.lex_state = 271, .external_lex_state = 4}, - [3524] = {.lex_state = 102, .external_lex_state = 4}, + [3524] = {.lex_state = 271, .external_lex_state = 4}, [3525] = {.lex_state = 271, .external_lex_state = 4}, - [3526] = {.lex_state = 271, .external_lex_state = 4}, - [3527] = {.lex_state = 129, .external_lex_state = 5}, + [3526] = {.lex_state = 267, .external_lex_state = 4}, + [3527] = {.lex_state = 271, .external_lex_state = 4}, [3528] = {.lex_state = 271, .external_lex_state = 4}, - [3529] = {.lex_state = 267, .external_lex_state = 4}, - [3530] = {.lex_state = 102, .external_lex_state = 4}, + [3529] = {.lex_state = 135, .external_lex_state = 4}, + [3530] = {.lex_state = 271, .external_lex_state = 4}, [3531] = {.lex_state = 102, .external_lex_state = 4}, - [3532] = {.lex_state = 271, .external_lex_state = 4}, + [3532] = {.lex_state = 102, .external_lex_state = 4}, [3533] = {.lex_state = 271, .external_lex_state = 4}, - [3534] = {.lex_state = 267, .external_lex_state = 4}, + [3534] = {.lex_state = 271, .external_lex_state = 4}, [3535] = {.lex_state = 271, .external_lex_state = 4}, - [3536] = {.lex_state = 132, .external_lex_state = 4}, + [3536] = {.lex_state = 271, .external_lex_state = 4}, [3537] = {.lex_state = 271, .external_lex_state = 4}, [3538] = {.lex_state = 271, .external_lex_state = 4}, - [3539] = {.lex_state = 267, .external_lex_state = 5}, - [3540] = {.lex_state = 267, .external_lex_state = 5}, - [3541] = {.lex_state = 267, .external_lex_state = 5}, + [3539] = {.lex_state = 129, .external_lex_state = 4}, + [3540] = {.lex_state = 271, .external_lex_state = 4}, + [3541] = {.lex_state = 129, .external_lex_state = 4}, [3542] = {.lex_state = 271, .external_lex_state = 4}, - [3543] = {.lex_state = 132, .external_lex_state = 4}, - [3544] = {.lex_state = 267, .external_lex_state = 4}, - [3545] = {.lex_state = 267, .external_lex_state = 5}, - [3546] = {.lex_state = 267, .external_lex_state = 5}, - [3547] = {.lex_state = 132, .external_lex_state = 4}, - [3548] = {.lex_state = 267, .external_lex_state = 5}, - [3549] = {.lex_state = 267, .external_lex_state = 5}, - [3550] = {.lex_state = 267, .external_lex_state = 5}, - [3551] = {.lex_state = 267, .external_lex_state = 5}, - [3552] = {.lex_state = 267, .external_lex_state = 4}, - [3553] = {.lex_state = 267, .external_lex_state = 5}, - [3554] = {.lex_state = 267, .external_lex_state = 5}, - [3555] = {.lex_state = 267, .external_lex_state = 4}, - [3556] = {.lex_state = 267, .external_lex_state = 4}, - [3557] = {.lex_state = 267, .external_lex_state = 4}, - [3558] = {.lex_state = 267, .external_lex_state = 4}, - [3559] = {.lex_state = 129, .external_lex_state = 5}, + [3543] = {.lex_state = 271, .external_lex_state = 4}, + [3544] = {.lex_state = 271, .external_lex_state = 4}, + [3545] = {.lex_state = 271, .external_lex_state = 4}, + [3546] = {.lex_state = 271, .external_lex_state = 4}, + [3547] = {.lex_state = 129, .external_lex_state = 4}, + [3548] = {.lex_state = 271, .external_lex_state = 4}, + [3549] = {.lex_state = 271, .external_lex_state = 4}, + [3550] = {.lex_state = 271, .external_lex_state = 4}, + [3551] = {.lex_state = 271, .external_lex_state = 4}, + [3552] = {.lex_state = 271, .external_lex_state = 4}, + [3553] = {.lex_state = 271, .external_lex_state = 4}, + [3554] = {.lex_state = 271, .external_lex_state = 4}, + [3555] = {.lex_state = 271, .external_lex_state = 4}, + [3556] = {.lex_state = 271, .external_lex_state = 4}, + [3557] = {.lex_state = 271, .external_lex_state = 4}, + [3558] = {.lex_state = 271, .external_lex_state = 4}, + [3559] = {.lex_state = 271, .external_lex_state = 4}, [3560] = {.lex_state = 271, .external_lex_state = 4}, - [3561] = {.lex_state = 129, .external_lex_state = 5}, - [3562] = {.lex_state = 271, .external_lex_state = 4}, - [3563] = {.lex_state = 132, .external_lex_state = 4}, - [3564] = {.lex_state = 132, .external_lex_state = 4}, - [3565] = {.lex_state = 132, .external_lex_state = 4}, - [3566] = {.lex_state = 132, .external_lex_state = 4}, - [3567] = {.lex_state = 132, .external_lex_state = 4}, - [3568] = {.lex_state = 132, .external_lex_state = 4}, - [3569] = {.lex_state = 132, .external_lex_state = 4}, - [3570] = {.lex_state = 267, .external_lex_state = 4}, - [3571] = {.lex_state = 132, .external_lex_state = 4}, - [3572] = {.lex_state = 132, .external_lex_state = 4}, - [3573] = {.lex_state = 132, .external_lex_state = 4}, + [3561] = {.lex_state = 271, .external_lex_state = 4}, + [3562] = {.lex_state = 267, .external_lex_state = 4}, + [3563] = {.lex_state = 271, .external_lex_state = 4}, + [3564] = {.lex_state = 267, .external_lex_state = 4}, + [3565] = {.lex_state = 271, .external_lex_state = 4}, + [3566] = {.lex_state = 271, .external_lex_state = 4}, + [3567] = {.lex_state = 271, .external_lex_state = 4}, + [3568] = {.lex_state = 271, .external_lex_state = 4}, + [3569] = {.lex_state = 271, .external_lex_state = 4}, + [3570] = {.lex_state = 271, .external_lex_state = 4}, + [3571] = {.lex_state = 271, .external_lex_state = 4}, + [3572] = {.lex_state = 271, .external_lex_state = 4}, + [3573] = {.lex_state = 271, .external_lex_state = 4}, [3574] = {.lex_state = 271, .external_lex_state = 4}, [3575] = {.lex_state = 271, .external_lex_state = 4}, - [3576] = {.lex_state = 129, .external_lex_state = 5}, - [3577] = {.lex_state = 129, .external_lex_state = 5}, + [3576] = {.lex_state = 271, .external_lex_state = 4}, + [3577] = {.lex_state = 271, .external_lex_state = 4}, [3578] = {.lex_state = 267, .external_lex_state = 4}, - [3579] = {.lex_state = 129, .external_lex_state = 5}, + [3579] = {.lex_state = 271, .external_lex_state = 4}, [3580] = {.lex_state = 271, .external_lex_state = 4}, - [3581] = {.lex_state = 132, .external_lex_state = 4}, - [3582] = {.lex_state = 129, .external_lex_state = 5}, - [3583] = {.lex_state = 129, .external_lex_state = 5}, - [3584] = {.lex_state = 129, .external_lex_state = 5}, - [3585] = {.lex_state = 129, .external_lex_state = 5}, - [3586] = {.lex_state = 129, .external_lex_state = 5}, - [3587] = {.lex_state = 129, .external_lex_state = 5}, - [3588] = {.lex_state = 267, .external_lex_state = 4}, - [3589] = {.lex_state = 132, .external_lex_state = 4}, - [3590] = {.lex_state = 267, .external_lex_state = 5}, - [3591] = {.lex_state = 267, .external_lex_state = 5}, + [3581] = {.lex_state = 271, .external_lex_state = 4}, + [3582] = {.lex_state = 271, .external_lex_state = 4}, + [3583] = {.lex_state = 271, .external_lex_state = 4}, + [3584] = {.lex_state = 271, .external_lex_state = 4}, + [3585] = {.lex_state = 271, .external_lex_state = 4}, + [3586] = {.lex_state = 271, .external_lex_state = 4}, + [3587] = {.lex_state = 271, .external_lex_state = 4}, + [3588] = {.lex_state = 271, .external_lex_state = 4}, + [3589] = {.lex_state = 271, .external_lex_state = 4}, + [3590] = {.lex_state = 267, .external_lex_state = 4}, + [3591] = {.lex_state = 271, .external_lex_state = 4}, [3592] = {.lex_state = 267, .external_lex_state = 4}, - [3593] = {.lex_state = 129, .external_lex_state = 5}, - [3594] = {.lex_state = 102, .external_lex_state = 4}, - [3595] = {.lex_state = 129, .external_lex_state = 5}, - [3596] = {.lex_state = 267, .external_lex_state = 5}, + [3593] = {.lex_state = 271, .external_lex_state = 4}, + [3594] = {.lex_state = 267, .external_lex_state = 4}, + [3595] = {.lex_state = 271, .external_lex_state = 4}, + [3596] = {.lex_state = 271, .external_lex_state = 4}, [3597] = {.lex_state = 271, .external_lex_state = 4}, [3598] = {.lex_state = 271, .external_lex_state = 4}, [3599] = {.lex_state = 271, .external_lex_state = 4}, [3600] = {.lex_state = 271, .external_lex_state = 4}, [3601] = {.lex_state = 271, .external_lex_state = 4}, [3602] = {.lex_state = 271, .external_lex_state = 4}, - [3603] = {.lex_state = 129, .external_lex_state = 5}, - [3604] = {.lex_state = 138, .external_lex_state = 4}, - [3605] = {.lex_state = 129, .external_lex_state = 5}, - [3606] = {.lex_state = 138, .external_lex_state = 4}, - [3607] = {.lex_state = 102, .external_lex_state = 4}, - [3608] = {.lex_state = 138, .external_lex_state = 4}, + [3603] = {.lex_state = 271, .external_lex_state = 4}, + [3604] = {.lex_state = 271, .external_lex_state = 4}, + [3605] = {.lex_state = 267, .external_lex_state = 4}, + [3606] = {.lex_state = 271, .external_lex_state = 4}, + [3607] = {.lex_state = 271, .external_lex_state = 4}, + [3608] = {.lex_state = 267, .external_lex_state = 4}, [3609] = {.lex_state = 271, .external_lex_state = 4}, - [3610] = {.lex_state = 138, .external_lex_state = 4}, - [3611] = {.lex_state = 129, .external_lex_state = 5}, - [3612] = {.lex_state = 102, .external_lex_state = 4}, - [3613] = {.lex_state = 138, .external_lex_state = 4}, + [3610] = {.lex_state = 271, .external_lex_state = 4}, + [3611] = {.lex_state = 271, .external_lex_state = 4}, + [3612] = {.lex_state = 271, .external_lex_state = 4}, + [3613] = {.lex_state = 267, .external_lex_state = 4}, [3614] = {.lex_state = 271, .external_lex_state = 4}, - [3615] = {.lex_state = 138, .external_lex_state = 4}, - [3616] = {.lex_state = 138, .external_lex_state = 4}, - [3617] = {.lex_state = 138, .external_lex_state = 4}, - [3618] = {.lex_state = 102, .external_lex_state = 4}, - [3619] = {.lex_state = 138, .external_lex_state = 4}, - [3620] = {.lex_state = 138, .external_lex_state = 4}, - [3621] = {.lex_state = 138, .external_lex_state = 4}, - [3622] = {.lex_state = 138, .external_lex_state = 4}, - [3623] = {.lex_state = 132, .external_lex_state = 4}, - [3624] = {.lex_state = 132, .external_lex_state = 4}, - [3625] = {.lex_state = 132, .external_lex_state = 4}, - [3626] = {.lex_state = 129, .external_lex_state = 5}, - [3627] = {.lex_state = 129, .external_lex_state = 5}, - [3628] = {.lex_state = 132, .external_lex_state = 4}, - [3629] = {.lex_state = 132, .external_lex_state = 4}, - [3630] = {.lex_state = 132, .external_lex_state = 4}, - [3631] = {.lex_state = 132, .external_lex_state = 4}, - [3632] = {.lex_state = 271, .external_lex_state = 4}, - [3633] = {.lex_state = 132, .external_lex_state = 4}, - [3634] = {.lex_state = 271, .external_lex_state = 4}, - [3635] = {.lex_state = 132, .external_lex_state = 4}, - [3636] = {.lex_state = 132, .external_lex_state = 4}, - [3637] = {.lex_state = 132, .external_lex_state = 4}, - [3638] = {.lex_state = 132, .external_lex_state = 4}, - [3639] = {.lex_state = 271, .external_lex_state = 4}, - [3640] = {.lex_state = 129, .external_lex_state = 5}, - [3641] = {.lex_state = 132, .external_lex_state = 4}, - [3642] = {.lex_state = 132, .external_lex_state = 4}, - [3643] = {.lex_state = 132, .external_lex_state = 4}, - [3644] = {.lex_state = 271, .external_lex_state = 4}, - [3645] = {.lex_state = 129, .external_lex_state = 5}, - [3646] = {.lex_state = 267, .external_lex_state = 4}, + [3615] = {.lex_state = 267, .external_lex_state = 5}, + [3616] = {.lex_state = 267, .external_lex_state = 4}, + [3617] = {.lex_state = 267, .external_lex_state = 5}, + [3618] = {.lex_state = 267, .external_lex_state = 5}, + [3619] = {.lex_state = 267, .external_lex_state = 5}, + [3620] = {.lex_state = 267, .external_lex_state = 5}, + [3621] = {.lex_state = 267, .external_lex_state = 5}, + [3622] = {.lex_state = 267, .external_lex_state = 5}, + [3623] = {.lex_state = 267, .external_lex_state = 5}, + [3624] = {.lex_state = 267, .external_lex_state = 5}, + [3625] = {.lex_state = 267, .external_lex_state = 5}, + [3626] = {.lex_state = 267, .external_lex_state = 5}, + [3627] = {.lex_state = 267, .external_lex_state = 5}, + [3628] = {.lex_state = 267, .external_lex_state = 5}, + [3629] = {.lex_state = 267, .external_lex_state = 5}, + [3630] = {.lex_state = 267, .external_lex_state = 5}, + [3631] = {.lex_state = 267, .external_lex_state = 5}, + [3632] = {.lex_state = 267, .external_lex_state = 5}, + [3633] = {.lex_state = 271, .external_lex_state = 4}, + [3634] = {.lex_state = 267, .external_lex_state = 4}, + [3635] = {.lex_state = 271, .external_lex_state = 4}, + [3636] = {.lex_state = 102, .external_lex_state = 4}, + [3637] = {.lex_state = 267, .external_lex_state = 4}, + [3638] = {.lex_state = 267, .external_lex_state = 4}, + [3639] = {.lex_state = 102, .external_lex_state = 4}, + [3640] = {.lex_state = 102, .external_lex_state = 4}, + [3641] = {.lex_state = 135, .external_lex_state = 4}, + [3642] = {.lex_state = 135, .external_lex_state = 4}, + [3643] = {.lex_state = 135, .external_lex_state = 4}, + [3644] = {.lex_state = 135, .external_lex_state = 4}, + [3645] = {.lex_state = 102, .external_lex_state = 4}, + [3646] = {.lex_state = 271, .external_lex_state = 4}, [3647] = {.lex_state = 271, .external_lex_state = 4}, - [3648] = {.lex_state = 132, .external_lex_state = 4}, + [3648] = {.lex_state = 102, .external_lex_state = 4}, [3649] = {.lex_state = 102, .external_lex_state = 4}, - [3650] = {.lex_state = 129, .external_lex_state = 5}, - [3651] = {.lex_state = 129, .external_lex_state = 5}, - [3652] = {.lex_state = 138, .external_lex_state = 4}, - [3653] = {.lex_state = 129, .external_lex_state = 5}, - [3654] = {.lex_state = 267, .external_lex_state = 4}, - [3655] = {.lex_state = 267, .external_lex_state = 4}, - [3656] = {.lex_state = 271, .external_lex_state = 4}, - [3657] = {.lex_state = 132, .external_lex_state = 4}, - [3658] = {.lex_state = 271, .external_lex_state = 4}, - [3659] = {.lex_state = 132, .external_lex_state = 4}, - [3660] = {.lex_state = 132, .external_lex_state = 4}, - [3661] = {.lex_state = 132, .external_lex_state = 4}, - [3662] = {.lex_state = 271, .external_lex_state = 4}, - [3663] = {.lex_state = 271, .external_lex_state = 4}, - [3664] = {.lex_state = 271, .external_lex_state = 4}, - [3665] = {.lex_state = 129, .external_lex_state = 5}, - [3666] = {.lex_state = 129, .external_lex_state = 5}, - [3667] = {.lex_state = 129, .external_lex_state = 5}, - [3668] = {.lex_state = 271, .external_lex_state = 4}, - [3669] = {.lex_state = 271, .external_lex_state = 4}, - [3670] = {.lex_state = 132, .external_lex_state = 4}, + [3650] = {.lex_state = 271, .external_lex_state = 4}, + [3651] = {.lex_state = 135, .external_lex_state = 4}, + [3652] = {.lex_state = 267, .external_lex_state = 4}, + [3653] = {.lex_state = 271, .external_lex_state = 4}, + [3654] = {.lex_state = 135, .external_lex_state = 4}, + [3655] = {.lex_state = 135, .external_lex_state = 4}, + [3656] = {.lex_state = 135, .external_lex_state = 4}, + [3657] = {.lex_state = 135, .external_lex_state = 4}, + [3658] = {.lex_state = 135, .external_lex_state = 4}, + [3659] = {.lex_state = 271, .external_lex_state = 4}, + [3660] = {.lex_state = 271, .external_lex_state = 4}, + [3661] = {.lex_state = 271, .external_lex_state = 4}, + [3662] = {.lex_state = 135, .external_lex_state = 4}, + [3663] = {.lex_state = 135, .external_lex_state = 4}, + [3664] = {.lex_state = 135, .external_lex_state = 4}, + [3665] = {.lex_state = 135, .external_lex_state = 4}, + [3666] = {.lex_state = 135, .external_lex_state = 4}, + [3667] = {.lex_state = 102, .external_lex_state = 4}, + [3668] = {.lex_state = 135, .external_lex_state = 4}, + [3669] = {.lex_state = 102, .external_lex_state = 4}, + [3670] = {.lex_state = 135, .external_lex_state = 4}, [3671] = {.lex_state = 271, .external_lex_state = 4}, - [3672] = {.lex_state = 132, .external_lex_state = 4}, - [3673] = {.lex_state = 271, .external_lex_state = 4}, - [3674] = {.lex_state = 271, .external_lex_state = 4}, - [3675] = {.lex_state = 271, .external_lex_state = 4}, - [3676] = {.lex_state = 271, .external_lex_state = 4}, - [3677] = {.lex_state = 271, .external_lex_state = 4}, - [3678] = {.lex_state = 271, .external_lex_state = 4}, - [3679] = {.lex_state = 271, .external_lex_state = 4}, - [3680] = {.lex_state = 271, .external_lex_state = 4}, - [3681] = {.lex_state = 271, .external_lex_state = 4}, - [3682] = {.lex_state = 271, .external_lex_state = 4}, - [3683] = {.lex_state = 271, .external_lex_state = 4}, - [3684] = {.lex_state = 271, .external_lex_state = 4}, - [3685] = {.lex_state = 271, .external_lex_state = 4}, - [3686] = {.lex_state = 271, .external_lex_state = 4}, - [3687] = {.lex_state = 271, .external_lex_state = 4}, - [3688] = {.lex_state = 271, .external_lex_state = 4}, - [3689] = {.lex_state = 271, .external_lex_state = 4}, - [3690] = {.lex_state = 271, .external_lex_state = 4}, - [3691] = {.lex_state = 271, .external_lex_state = 4}, - [3692] = {.lex_state = 271, .external_lex_state = 4}, - [3693] = {.lex_state = 129, .external_lex_state = 5}, - [3694] = {.lex_state = 129, .external_lex_state = 5}, - [3695] = {.lex_state = 129, .external_lex_state = 5}, - [3696] = {.lex_state = 129, .external_lex_state = 5}, - [3697] = {.lex_state = 129, .external_lex_state = 5}, - [3698] = {.lex_state = 271, .external_lex_state = 4}, - [3699] = {.lex_state = 129, .external_lex_state = 5}, - [3700] = {.lex_state = 132, .external_lex_state = 4}, - [3701] = {.lex_state = 267, .external_lex_state = 4}, - [3702] = {.lex_state = 271, .external_lex_state = 4}, - [3703] = {.lex_state = 132, .external_lex_state = 4}, - [3704] = {.lex_state = 271, .external_lex_state = 4}, - [3705] = {.lex_state = 271, .external_lex_state = 4}, - [3706] = {.lex_state = 138, .external_lex_state = 4}, - [3707] = {.lex_state = 138, .external_lex_state = 4}, - [3708] = {.lex_state = 132, .external_lex_state = 4}, - [3709] = {.lex_state = 132, .external_lex_state = 4}, - [3710] = {.lex_state = 138, .external_lex_state = 4}, - [3711] = {.lex_state = 138, .external_lex_state = 4}, - [3712] = {.lex_state = 271, .external_lex_state = 4}, - [3713] = {.lex_state = 271, .external_lex_state = 4}, - [3714] = {.lex_state = 271, .external_lex_state = 4}, - [3715] = {.lex_state = 271, .external_lex_state = 4}, - [3716] = {.lex_state = 271, .external_lex_state = 4}, - [3717] = {.lex_state = 271, .external_lex_state = 4}, - [3718] = {.lex_state = 271, .external_lex_state = 4}, - [3719] = {.lex_state = 271, .external_lex_state = 4}, - [3720] = {.lex_state = 132, .external_lex_state = 4}, - [3721] = {.lex_state = 132, .external_lex_state = 4}, - [3722] = {.lex_state = 102, .external_lex_state = 4}, - [3723] = {.lex_state = 271, .external_lex_state = 4}, - [3724] = {.lex_state = 271, .external_lex_state = 4}, - [3725] = {.lex_state = 271, .external_lex_state = 4}, - [3726] = {.lex_state = 271, .external_lex_state = 4}, - [3727] = {.lex_state = 271, .external_lex_state = 4}, - [3728] = {.lex_state = 271, .external_lex_state = 4}, + [3672] = {.lex_state = 129, .external_lex_state = 5}, + [3673] = {.lex_state = 135, .external_lex_state = 4}, + [3674] = {.lex_state = 135, .external_lex_state = 4}, + [3675] = {.lex_state = 267, .external_lex_state = 4}, + [3676] = {.lex_state = 135, .external_lex_state = 4}, + [3677] = {.lex_state = 267, .external_lex_state = 4}, + [3678] = {.lex_state = 135, .external_lex_state = 4}, + [3679] = {.lex_state = 135, .external_lex_state = 4}, + [3680] = {.lex_state = 135, .external_lex_state = 4}, + [3681] = {.lex_state = 135, .external_lex_state = 4}, + [3682] = {.lex_state = 135, .external_lex_state = 4}, + [3683] = {.lex_state = 135, .external_lex_state = 4}, + [3684] = {.lex_state = 102, .external_lex_state = 4}, + [3685] = {.lex_state = 102, .external_lex_state = 4}, + [3686] = {.lex_state = 102, .external_lex_state = 4}, + [3687] = {.lex_state = 102, .external_lex_state = 4}, + [3688] = {.lex_state = 135, .external_lex_state = 4}, + [3689] = {.lex_state = 102, .external_lex_state = 4}, + [3690] = {.lex_state = 135, .external_lex_state = 4}, + [3691] = {.lex_state = 135, .external_lex_state = 4}, + [3692] = {.lex_state = 135, .external_lex_state = 4}, + [3693] = {.lex_state = 135, .external_lex_state = 4}, + [3694] = {.lex_state = 102, .external_lex_state = 4}, + [3695] = {.lex_state = 102, .external_lex_state = 4}, + [3696] = {.lex_state = 102, .external_lex_state = 4}, + [3697] = {.lex_state = 102, .external_lex_state = 4}, + [3698] = {.lex_state = 102, .external_lex_state = 4}, + [3699] = {.lex_state = 102, .external_lex_state = 4}, + [3700] = {.lex_state = 102, .external_lex_state = 4}, + [3701] = {.lex_state = 102, .external_lex_state = 4}, + [3702] = {.lex_state = 129, .external_lex_state = 5}, + [3703] = {.lex_state = 102, .external_lex_state = 4}, + [3704] = {.lex_state = 102, .external_lex_state = 4}, + [3705] = {.lex_state = 102, .external_lex_state = 4}, + [3706] = {.lex_state = 102, .external_lex_state = 4}, + [3707] = {.lex_state = 102, .external_lex_state = 4}, + [3708] = {.lex_state = 102, .external_lex_state = 4}, + [3709] = {.lex_state = 102, .external_lex_state = 4}, + [3710] = {.lex_state = 267, .external_lex_state = 4}, + [3711] = {.lex_state = 135, .external_lex_state = 4}, + [3712] = {.lex_state = 135, .external_lex_state = 4}, + [3713] = {.lex_state = 135, .external_lex_state = 4}, + [3714] = {.lex_state = 135, .external_lex_state = 4}, + [3715] = {.lex_state = 135, .external_lex_state = 4}, + [3716] = {.lex_state = 138, .external_lex_state = 4}, + [3717] = {.lex_state = 138, .external_lex_state = 4}, + [3718] = {.lex_state = 135, .external_lex_state = 4}, + [3719] = {.lex_state = 135, .external_lex_state = 4}, + [3720] = {.lex_state = 138, .external_lex_state = 4}, + [3721] = {.lex_state = 138, .external_lex_state = 4}, + [3722] = {.lex_state = 135, .external_lex_state = 4}, + [3723] = {.lex_state = 135, .external_lex_state = 4}, + [3724] = {.lex_state = 138, .external_lex_state = 4}, + [3725] = {.lex_state = 138, .external_lex_state = 4}, + [3726] = {.lex_state = 135, .external_lex_state = 4}, + [3727] = {.lex_state = 135, .external_lex_state = 4}, + [3728] = {.lex_state = 135, .external_lex_state = 4}, [3729] = {.lex_state = 102, .external_lex_state = 4}, [3730] = {.lex_state = 271, .external_lex_state = 4}, - [3731] = {.lex_state = 271, .external_lex_state = 4}, - [3732] = {.lex_state = 271, .external_lex_state = 4}, - [3733] = {.lex_state = 271, .external_lex_state = 4}, - [3734] = {.lex_state = 271, .external_lex_state = 4}, - [3735] = {.lex_state = 271, .external_lex_state = 4}, - [3736] = {.lex_state = 271, .external_lex_state = 4}, - [3737] = {.lex_state = 271, .external_lex_state = 4}, - [3738] = {.lex_state = 271, .external_lex_state = 4}, + [3731] = {.lex_state = 135, .external_lex_state = 4}, + [3732] = {.lex_state = 135, .external_lex_state = 4}, + [3733] = {.lex_state = 135, .external_lex_state = 4}, + [3734] = {.lex_state = 135, .external_lex_state = 4}, + [3735] = {.lex_state = 135, .external_lex_state = 4}, + [3736] = {.lex_state = 102, .external_lex_state = 4}, + [3737] = {.lex_state = 102, .external_lex_state = 4}, + [3738] = {.lex_state = 129, .external_lex_state = 5}, [3739] = {.lex_state = 271, .external_lex_state = 4}, - [3740] = {.lex_state = 271, .external_lex_state = 4}, - [3741] = {.lex_state = 271, .external_lex_state = 4}, - [3742] = {.lex_state = 271, .external_lex_state = 4}, - [3743] = {.lex_state = 271, .external_lex_state = 4}, + [3740] = {.lex_state = 102, .external_lex_state = 4}, + [3741] = {.lex_state = 102, .external_lex_state = 4}, + [3742] = {.lex_state = 102, .external_lex_state = 4}, + [3743] = {.lex_state = 102, .external_lex_state = 4}, [3744] = {.lex_state = 271, .external_lex_state = 4}, - [3745] = {.lex_state = 271, .external_lex_state = 4}, - [3746] = {.lex_state = 267, .external_lex_state = 4}, - [3747] = {.lex_state = 267, .external_lex_state = 4}, - [3748] = {.lex_state = 267, .external_lex_state = 4}, - [3749] = {.lex_state = 138, .external_lex_state = 4}, - [3750] = {.lex_state = 267, .external_lex_state = 4}, - [3751] = {.lex_state = 132, .external_lex_state = 4}, - [3752] = {.lex_state = 132, .external_lex_state = 4}, + [3745] = {.lex_state = 138, .external_lex_state = 4}, + [3746] = {.lex_state = 271, .external_lex_state = 4}, + [3747] = {.lex_state = 271, .external_lex_state = 4}, + [3748] = {.lex_state = 271, .external_lex_state = 4}, + [3749] = {.lex_state = 102, .external_lex_state = 4}, + [3750] = {.lex_state = 102, .external_lex_state = 4}, + [3751] = {.lex_state = 271, .external_lex_state = 4}, + [3752] = {.lex_state = 271, .external_lex_state = 4}, [3753] = {.lex_state = 138, .external_lex_state = 4}, [3754] = {.lex_state = 138, .external_lex_state = 4}, - [3755] = {.lex_state = 132, .external_lex_state = 4}, - [3756] = {.lex_state = 132, .external_lex_state = 4}, + [3755] = {.lex_state = 138, .external_lex_state = 4}, + [3756] = {.lex_state = 138, .external_lex_state = 4}, [3757] = {.lex_state = 138, .external_lex_state = 4}, [3758] = {.lex_state = 138, .external_lex_state = 4}, - [3759] = {.lex_state = 132, .external_lex_state = 4}, - [3760] = {.lex_state = 132, .external_lex_state = 4}, + [3759] = {.lex_state = 138, .external_lex_state = 4}, + [3760] = {.lex_state = 138, .external_lex_state = 4}, [3761] = {.lex_state = 138, .external_lex_state = 4}, [3762] = {.lex_state = 138, .external_lex_state = 4}, - [3763] = {.lex_state = 132, .external_lex_state = 4}, - [3764] = {.lex_state = 267, .external_lex_state = 4}, - [3765] = {.lex_state = 132, .external_lex_state = 4}, - [3766] = {.lex_state = 132, .external_lex_state = 4}, - [3767] = {.lex_state = 132, .external_lex_state = 4}, - [3768] = {.lex_state = 271, .external_lex_state = 4}, - [3769] = {.lex_state = 267, .external_lex_state = 4}, - [3770] = {.lex_state = 267, .external_lex_state = 4}, - [3771] = {.lex_state = 271, .external_lex_state = 4}, - [3772] = {.lex_state = 102, .external_lex_state = 4}, - [3773] = {.lex_state = 102, .external_lex_state = 4}, - [3774] = {.lex_state = 271, .external_lex_state = 4}, - [3775] = {.lex_state = 267, .external_lex_state = 4}, + [3763] = {.lex_state = 138, .external_lex_state = 4}, + [3764] = {.lex_state = 138, .external_lex_state = 4}, + [3765] = {.lex_state = 138, .external_lex_state = 4}, + [3766] = {.lex_state = 138, .external_lex_state = 4}, + [3767] = {.lex_state = 271, .external_lex_state = 4}, + [3768] = {.lex_state = 138, .external_lex_state = 4}, + [3769] = {.lex_state = 138, .external_lex_state = 4}, + [3770] = {.lex_state = 138, .external_lex_state = 4}, + [3771] = {.lex_state = 138, .external_lex_state = 4}, + [3772] = {.lex_state = 138, .external_lex_state = 4}, + [3773] = {.lex_state = 138, .external_lex_state = 4}, + [3774] = {.lex_state = 138, .external_lex_state = 4}, + [3775] = {.lex_state = 138, .external_lex_state = 4}, [3776] = {.lex_state = 267, .external_lex_state = 4}, - [3777] = {.lex_state = 267, .external_lex_state = 4}, - [3778] = {.lex_state = 267, .external_lex_state = 4}, - [3779] = {.lex_state = 267, .external_lex_state = 4}, - [3780] = {.lex_state = 129, .external_lex_state = 5}, - [3781] = {.lex_state = 132, .external_lex_state = 4}, - [3782] = {.lex_state = 129, .external_lex_state = 5}, - [3783] = {.lex_state = 129, .external_lex_state = 5}, - [3784] = {.lex_state = 129, .external_lex_state = 5}, - [3785] = {.lex_state = 129, .external_lex_state = 5}, - [3786] = {.lex_state = 129, .external_lex_state = 5}, - [3787] = {.lex_state = 129, .external_lex_state = 5}, - [3788] = {.lex_state = 271, .external_lex_state = 4}, - [3789] = {.lex_state = 271, .external_lex_state = 4}, - [3790] = {.lex_state = 267, .external_lex_state = 4}, - [3791] = {.lex_state = 267, .external_lex_state = 4}, - [3792] = {.lex_state = 267, .external_lex_state = 4}, - [3793] = {.lex_state = 271, .external_lex_state = 4}, - [3794] = {.lex_state = 271, .external_lex_state = 4}, - [3795] = {.lex_state = 271, .external_lex_state = 4}, - [3796] = {.lex_state = 102, .external_lex_state = 4}, - [3797] = {.lex_state = 138, .external_lex_state = 4}, + [3777] = {.lex_state = 138, .external_lex_state = 4}, + [3778] = {.lex_state = 138, .external_lex_state = 4}, + [3779] = {.lex_state = 138, .external_lex_state = 4}, + [3780] = {.lex_state = 138, .external_lex_state = 4}, + [3781] = {.lex_state = 135, .external_lex_state = 4}, + [3782] = {.lex_state = 138, .external_lex_state = 4}, + [3783] = {.lex_state = 138, .external_lex_state = 4}, + [3784] = {.lex_state = 138, .external_lex_state = 4}, + [3785] = {.lex_state = 138, .external_lex_state = 4}, + [3786] = {.lex_state = 138, .external_lex_state = 4}, + [3787] = {.lex_state = 138, .external_lex_state = 4}, + [3788] = {.lex_state = 135, .external_lex_state = 4}, + [3789] = {.lex_state = 138, .external_lex_state = 4}, + [3790] = {.lex_state = 138, .external_lex_state = 4}, + [3791] = {.lex_state = 138, .external_lex_state = 4}, + [3792] = {.lex_state = 138, .external_lex_state = 4}, + [3793] = {.lex_state = 267, .external_lex_state = 4}, + [3794] = {.lex_state = 267, .external_lex_state = 4}, + [3795] = {.lex_state = 135, .external_lex_state = 4}, + [3796] = {.lex_state = 138, .external_lex_state = 4}, + [3797] = {.lex_state = 135, .external_lex_state = 4}, [3798] = {.lex_state = 138, .external_lex_state = 4}, - [3799] = {.lex_state = 102, .external_lex_state = 4}, - [3800] = {.lex_state = 271, .external_lex_state = 4}, - [3801] = {.lex_state = 271, .external_lex_state = 4}, - [3802] = {.lex_state = 271, .external_lex_state = 4}, - [3803] = {.lex_state = 271, .external_lex_state = 4}, - [3804] = {.lex_state = 271, .external_lex_state = 4}, - [3805] = {.lex_state = 271, .external_lex_state = 4}, - [3806] = {.lex_state = 271, .external_lex_state = 4}, - [3807] = {.lex_state = 271, .external_lex_state = 4}, - [3808] = {.lex_state = 271, .external_lex_state = 4}, - [3809] = {.lex_state = 271, .external_lex_state = 4}, - [3810] = {.lex_state = 271, .external_lex_state = 4}, - [3811] = {.lex_state = 271, .external_lex_state = 4}, - [3812] = {.lex_state = 271, .external_lex_state = 4}, - [3813] = {.lex_state = 271, .external_lex_state = 4}, - [3814] = {.lex_state = 271, .external_lex_state = 4}, - [3815] = {.lex_state = 271, .external_lex_state = 4}, - [3816] = {.lex_state = 271, .external_lex_state = 4}, - [3817] = {.lex_state = 271, .external_lex_state = 4}, - [3818] = {.lex_state = 271, .external_lex_state = 4}, - [3819] = {.lex_state = 271, .external_lex_state = 4}, - [3820] = {.lex_state = 271, .external_lex_state = 4}, - [3821] = {.lex_state = 129, .external_lex_state = 5}, - [3822] = {.lex_state = 267, .external_lex_state = 4}, + [3799] = {.lex_state = 138, .external_lex_state = 4}, + [3800] = {.lex_state = 138, .external_lex_state = 4}, + [3801] = {.lex_state = 138, .external_lex_state = 4}, + [3802] = {.lex_state = 138, .external_lex_state = 4}, + [3803] = {.lex_state = 138, .external_lex_state = 4}, + [3804] = {.lex_state = 138, .external_lex_state = 4}, + [3805] = {.lex_state = 138, .external_lex_state = 4}, + [3806] = {.lex_state = 138, .external_lex_state = 4}, + [3807] = {.lex_state = 138, .external_lex_state = 4}, + [3808] = {.lex_state = 138, .external_lex_state = 4}, + [3809] = {.lex_state = 138, .external_lex_state = 4}, + [3810] = {.lex_state = 138, .external_lex_state = 4}, + [3811] = {.lex_state = 138, .external_lex_state = 4}, + [3812] = {.lex_state = 138, .external_lex_state = 4}, + [3813] = {.lex_state = 138, .external_lex_state = 4}, + [3814] = {.lex_state = 129, .external_lex_state = 5}, + [3815] = {.lex_state = 129, .external_lex_state = 5}, + [3816] = {.lex_state = 135, .external_lex_state = 4}, + [3817] = {.lex_state = 135, .external_lex_state = 4}, + [3818] = {.lex_state = 135, .external_lex_state = 4}, + [3819] = {.lex_state = 135, .external_lex_state = 4}, + [3820] = {.lex_state = 135, .external_lex_state = 4}, + [3821] = {.lex_state = 135, .external_lex_state = 4}, + [3822] = {.lex_state = 135, .external_lex_state = 4}, [3823] = {.lex_state = 271, .external_lex_state = 4}, - [3824] = {.lex_state = 102, .external_lex_state = 4}, - [3825] = {.lex_state = 102, .external_lex_state = 4}, - [3826] = {.lex_state = 267, .external_lex_state = 5}, - [3827] = {.lex_state = 271, .external_lex_state = 4}, + [3824] = {.lex_state = 271, .external_lex_state = 4}, + [3825] = {.lex_state = 135, .external_lex_state = 4}, + [3826] = {.lex_state = 267, .external_lex_state = 4}, + [3827] = {.lex_state = 135, .external_lex_state = 4}, [3828] = {.lex_state = 271, .external_lex_state = 4}, [3829] = {.lex_state = 271, .external_lex_state = 4}, - [3830] = {.lex_state = 271, .external_lex_state = 4}, + [3830] = {.lex_state = 135, .external_lex_state = 4}, [3831] = {.lex_state = 271, .external_lex_state = 4}, [3832] = {.lex_state = 271, .external_lex_state = 4}, - [3833] = {.lex_state = 271, .external_lex_state = 4}, + [3833] = {.lex_state = 135, .external_lex_state = 4}, [3834] = {.lex_state = 271, .external_lex_state = 4}, [3835] = {.lex_state = 271, .external_lex_state = 4}, [3836] = {.lex_state = 271, .external_lex_state = 4}, [3837] = {.lex_state = 271, .external_lex_state = 4}, - [3838] = {.lex_state = 267, .external_lex_state = 5}, - [3839] = {.lex_state = 129, .external_lex_state = 5}, - [3840] = {.lex_state = 267, .external_lex_state = 4}, - [3841] = {.lex_state = 267, .external_lex_state = 4}, - [3842] = {.lex_state = 267, .external_lex_state = 4}, - [3843] = {.lex_state = 271, .external_lex_state = 4}, - [3844] = {.lex_state = 271, .external_lex_state = 4}, - [3845] = {.lex_state = 271, .external_lex_state = 4}, - [3846] = {.lex_state = 267, .external_lex_state = 4}, - [3847] = {.lex_state = 102, .external_lex_state = 4}, - [3848] = {.lex_state = 271, .external_lex_state = 4}, + [3838] = {.lex_state = 138, .external_lex_state = 4}, + [3839] = {.lex_state = 138, .external_lex_state = 4}, + [3840] = {.lex_state = 138, .external_lex_state = 4}, + [3841] = {.lex_state = 138, .external_lex_state = 4}, + [3842] = {.lex_state = 138, .external_lex_state = 4}, + [3843] = {.lex_state = 138, .external_lex_state = 4}, + [3844] = {.lex_state = 138, .external_lex_state = 4}, + [3845] = {.lex_state = 138, .external_lex_state = 4}, + [3846] = {.lex_state = 138, .external_lex_state = 4}, + [3847] = {.lex_state = 138, .external_lex_state = 4}, + [3848] = {.lex_state = 138, .external_lex_state = 4}, [3849] = {.lex_state = 138, .external_lex_state = 4}, [3850] = {.lex_state = 138, .external_lex_state = 4}, [3851] = {.lex_state = 138, .external_lex_state = 4}, [3852] = {.lex_state = 138, .external_lex_state = 4}, [3853] = {.lex_state = 138, .external_lex_state = 4}, - [3854] = {.lex_state = 129, .external_lex_state = 5}, - [3855] = {.lex_state = 267, .external_lex_state = 4}, - [3856] = {.lex_state = 102, .external_lex_state = 4}, - [3857] = {.lex_state = 102, .external_lex_state = 4}, - [3858] = {.lex_state = 267, .external_lex_state = 4}, + [3854] = {.lex_state = 138, .external_lex_state = 4}, + [3855] = {.lex_state = 138, .external_lex_state = 4}, + [3856] = {.lex_state = 138, .external_lex_state = 4}, + [3857] = {.lex_state = 138, .external_lex_state = 4}, + [3858] = {.lex_state = 129, .external_lex_state = 5}, [3859] = {.lex_state = 129, .external_lex_state = 5}, - [3860] = {.lex_state = 267, .external_lex_state = 4}, - [3861] = {.lex_state = 267, .external_lex_state = 4}, + [3860] = {.lex_state = 102, .external_lex_state = 4}, + [3861] = {.lex_state = 271, .external_lex_state = 4}, [3862] = {.lex_state = 271, .external_lex_state = 4}, - [3863] = {.lex_state = 267, .external_lex_state = 4}, - [3864] = {.lex_state = 267, .external_lex_state = 4}, + [3863] = {.lex_state = 271, .external_lex_state = 4}, + [3864] = {.lex_state = 271, .external_lex_state = 4}, [3865] = {.lex_state = 271, .external_lex_state = 4}, - [3866] = {.lex_state = 129, .external_lex_state = 5}, - [3867] = {.lex_state = 129, .external_lex_state = 5}, - [3868] = {.lex_state = 129, .external_lex_state = 5}, - [3869] = {.lex_state = 129, .external_lex_state = 5}, - [3870] = {.lex_state = 129, .external_lex_state = 5}, - [3871] = {.lex_state = 102, .external_lex_state = 4}, + [3866] = {.lex_state = 271, .external_lex_state = 4}, + [3867] = {.lex_state = 271, .external_lex_state = 4}, + [3868] = {.lex_state = 135, .external_lex_state = 4}, + [3869] = {.lex_state = 271, .external_lex_state = 4}, + [3870] = {.lex_state = 271, .external_lex_state = 4}, + [3871] = {.lex_state = 129, .external_lex_state = 5}, [3872] = {.lex_state = 271, .external_lex_state = 4}, [3873] = {.lex_state = 129, .external_lex_state = 5}, [3874] = {.lex_state = 129, .external_lex_state = 5}, - [3875] = {.lex_state = 129, .external_lex_state = 5}, - [3876] = {.lex_state = 129, .external_lex_state = 5}, - [3877] = {.lex_state = 129, .external_lex_state = 5}, - [3878] = {.lex_state = 129, .external_lex_state = 5}, - [3879] = {.lex_state = 129, .external_lex_state = 5}, - [3880] = {.lex_state = 129, .external_lex_state = 5}, - [3881] = {.lex_state = 129, .external_lex_state = 5}, - [3882] = {.lex_state = 129, .external_lex_state = 5}, + [3875] = {.lex_state = 271, .external_lex_state = 4}, + [3876] = {.lex_state = 271, .external_lex_state = 4}, + [3877] = {.lex_state = 102, .external_lex_state = 4}, + [3878] = {.lex_state = 271, .external_lex_state = 4}, + [3879] = {.lex_state = 271, .external_lex_state = 4}, + [3880] = {.lex_state = 271, .external_lex_state = 4}, + [3881] = {.lex_state = 271, .external_lex_state = 4}, + [3882] = {.lex_state = 271, .external_lex_state = 4}, [3883] = {.lex_state = 129, .external_lex_state = 5}, [3884] = {.lex_state = 129, .external_lex_state = 5}, - [3885] = {.lex_state = 129, .external_lex_state = 5}, + [3885] = {.lex_state = 267, .external_lex_state = 4}, [3886] = {.lex_state = 129, .external_lex_state = 5}, [3887] = {.lex_state = 129, .external_lex_state = 5}, [3888] = {.lex_state = 129, .external_lex_state = 5}, - [3889] = {.lex_state = 271, .external_lex_state = 4}, - [3890] = {.lex_state = 271, .external_lex_state = 4}, + [3889] = {.lex_state = 129, .external_lex_state = 5}, + [3890] = {.lex_state = 129, .external_lex_state = 5}, [3891] = {.lex_state = 129, .external_lex_state = 5}, [3892] = {.lex_state = 129, .external_lex_state = 5}, - [3893] = {.lex_state = 132, .external_lex_state = 4}, - [3894] = {.lex_state = 132, .external_lex_state = 4}, - [3895] = {.lex_state = 132, .external_lex_state = 4}, - [3896] = {.lex_state = 132, .external_lex_state = 4}, + [3893] = {.lex_state = 102, .external_lex_state = 4}, + [3894] = {.lex_state = 129, .external_lex_state = 5}, + [3895] = {.lex_state = 135, .external_lex_state = 4}, + [3896] = {.lex_state = 135, .external_lex_state = 4}, [3897] = {.lex_state = 129, .external_lex_state = 5}, - [3898] = {.lex_state = 102, .external_lex_state = 4}, - [3899] = {.lex_state = 132, .external_lex_state = 4}, + [3898] = {.lex_state = 129, .external_lex_state = 5}, + [3899] = {.lex_state = 129, .external_lex_state = 5}, [3900] = {.lex_state = 129, .external_lex_state = 5}, - [3901] = {.lex_state = 267, .external_lex_state = 4}, - [3902] = {.lex_state = 102, .external_lex_state = 4}, + [3901] = {.lex_state = 129, .external_lex_state = 5}, + [3902] = {.lex_state = 129, .external_lex_state = 5}, [3903] = {.lex_state = 129, .external_lex_state = 5}, - [3904] = {.lex_state = 132, .external_lex_state = 4}, + [3904] = {.lex_state = 271, .external_lex_state = 4}, [3905] = {.lex_state = 129, .external_lex_state = 5}, [3906] = {.lex_state = 129, .external_lex_state = 5}, [3907] = {.lex_state = 129, .external_lex_state = 5}, [3908] = {.lex_state = 129, .external_lex_state = 5}, [3909] = {.lex_state = 129, .external_lex_state = 5}, - [3910] = {.lex_state = 271, .external_lex_state = 4}, - [3911] = {.lex_state = 132, .external_lex_state = 4}, - [3912] = {.lex_state = 271, .external_lex_state = 4}, - [3913] = {.lex_state = 271, .external_lex_state = 4}, - [3914] = {.lex_state = 271, .external_lex_state = 4}, - [3915] = {.lex_state = 132, .external_lex_state = 4}, - [3916] = {.lex_state = 129, .external_lex_state = 5}, - [3917] = {.lex_state = 132, .external_lex_state = 4}, - [3918] = {.lex_state = 132, .external_lex_state = 4}, + [3910] = {.lex_state = 129, .external_lex_state = 5}, + [3911] = {.lex_state = 129, .external_lex_state = 5}, + [3912] = {.lex_state = 129, .external_lex_state = 5}, + [3913] = {.lex_state = 129, .external_lex_state = 5}, + [3914] = {.lex_state = 129, .external_lex_state = 5}, + [3915] = {.lex_state = 267, .external_lex_state = 4}, + [3916] = {.lex_state = 271, .external_lex_state = 4}, + [3917] = {.lex_state = 135, .external_lex_state = 4}, + [3918] = {.lex_state = 135, .external_lex_state = 4}, [3919] = {.lex_state = 129, .external_lex_state = 5}, [3920] = {.lex_state = 129, .external_lex_state = 5}, [3921] = {.lex_state = 129, .external_lex_state = 5}, [3922] = {.lex_state = 129, .external_lex_state = 5}, [3923] = {.lex_state = 129, .external_lex_state = 5}, - [3924] = {.lex_state = 267, .external_lex_state = 4}, + [3924] = {.lex_state = 129, .external_lex_state = 5}, [3925] = {.lex_state = 129, .external_lex_state = 5}, [3926] = {.lex_state = 129, .external_lex_state = 5}, - [3927] = {.lex_state = 132, .external_lex_state = 4}, - [3928] = {.lex_state = 102, .external_lex_state = 4}, - [3929] = {.lex_state = 129, .external_lex_state = 5}, - [3930] = {.lex_state = 129, .external_lex_state = 5}, - [3931] = {.lex_state = 129, .external_lex_state = 5}, - [3932] = {.lex_state = 132, .external_lex_state = 4}, - [3933] = {.lex_state = 132, .external_lex_state = 4}, + [3927] = {.lex_state = 267, .external_lex_state = 5}, + [3928] = {.lex_state = 129, .external_lex_state = 5}, + [3929] = {.lex_state = 271, .external_lex_state = 4}, + [3930] = {.lex_state = 271, .external_lex_state = 4}, + [3931] = {.lex_state = 271, .external_lex_state = 4}, + [3932] = {.lex_state = 267, .external_lex_state = 4}, + [3933] = {.lex_state = 271, .external_lex_state = 4}, [3934] = {.lex_state = 129, .external_lex_state = 5}, [3935] = {.lex_state = 129, .external_lex_state = 5}, [3936] = {.lex_state = 129, .external_lex_state = 5}, [3937] = {.lex_state = 129, .external_lex_state = 5}, [3938] = {.lex_state = 129, .external_lex_state = 5}, - [3939] = {.lex_state = 132, .external_lex_state = 4}, + [3939] = {.lex_state = 129, .external_lex_state = 5}, [3940] = {.lex_state = 102, .external_lex_state = 4}, - [3941] = {.lex_state = 102, .external_lex_state = 4}, + [3941] = {.lex_state = 129, .external_lex_state = 5}, [3942] = {.lex_state = 129, .external_lex_state = 5}, [3943] = {.lex_state = 129, .external_lex_state = 5}, [3944] = {.lex_state = 129, .external_lex_state = 5}, @@ -27618,205 +27603,205 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3948] = {.lex_state = 129, .external_lex_state = 5}, [3949] = {.lex_state = 129, .external_lex_state = 5}, [3950] = {.lex_state = 129, .external_lex_state = 5}, - [3951] = {.lex_state = 271, .external_lex_state = 4}, - [3952] = {.lex_state = 132, .external_lex_state = 4}, - [3953] = {.lex_state = 132, .external_lex_state = 4}, - [3954] = {.lex_state = 132, .external_lex_state = 4}, - [3955] = {.lex_state = 132, .external_lex_state = 4}, - [3956] = {.lex_state = 267, .external_lex_state = 4}, - [3957] = {.lex_state = 271, .external_lex_state = 4}, - [3958] = {.lex_state = 132, .external_lex_state = 4}, - [3959] = {.lex_state = 132, .external_lex_state = 4}, - [3960] = {.lex_state = 132, .external_lex_state = 4}, - [3961] = {.lex_state = 132, .external_lex_state = 4}, - [3962] = {.lex_state = 132, .external_lex_state = 4}, - [3963] = {.lex_state = 271, .external_lex_state = 4}, + [3951] = {.lex_state = 129, .external_lex_state = 5}, + [3952] = {.lex_state = 129, .external_lex_state = 5}, + [3953] = {.lex_state = 129, .external_lex_state = 5}, + [3954] = {.lex_state = 129, .external_lex_state = 5}, + [3955] = {.lex_state = 129, .external_lex_state = 5}, + [3956] = {.lex_state = 129, .external_lex_state = 5}, + [3957] = {.lex_state = 129, .external_lex_state = 5}, + [3958] = {.lex_state = 135, .external_lex_state = 4}, + [3959] = {.lex_state = 135, .external_lex_state = 4}, + [3960] = {.lex_state = 271, .external_lex_state = 4}, + [3961] = {.lex_state = 129, .external_lex_state = 5}, + [3962] = {.lex_state = 129, .external_lex_state = 5}, + [3963] = {.lex_state = 129, .external_lex_state = 5}, [3964] = {.lex_state = 129, .external_lex_state = 5}, [3965] = {.lex_state = 129, .external_lex_state = 5}, - [3966] = {.lex_state = 102, .external_lex_state = 4}, + [3966] = {.lex_state = 129, .external_lex_state = 5}, [3967] = {.lex_state = 129, .external_lex_state = 5}, [3968] = {.lex_state = 129, .external_lex_state = 5}, [3969] = {.lex_state = 129, .external_lex_state = 5}, [3970] = {.lex_state = 129, .external_lex_state = 5}, - [3971] = {.lex_state = 129, .external_lex_state = 5}, + [3971] = {.lex_state = 135, .external_lex_state = 4}, [3972] = {.lex_state = 129, .external_lex_state = 5}, - [3973] = {.lex_state = 138, .external_lex_state = 4}, - [3974] = {.lex_state = 138, .external_lex_state = 4}, - [3975] = {.lex_state = 138, .external_lex_state = 4}, - [3976] = {.lex_state = 138, .external_lex_state = 4}, - [3977] = {.lex_state = 138, .external_lex_state = 4}, - [3978] = {.lex_state = 138, .external_lex_state = 4}, - [3979] = {.lex_state = 138, .external_lex_state = 4}, - [3980] = {.lex_state = 138, .external_lex_state = 4}, - [3981] = {.lex_state = 138, .external_lex_state = 4}, - [3982] = {.lex_state = 138, .external_lex_state = 4}, + [3973] = {.lex_state = 129, .external_lex_state = 5}, + [3974] = {.lex_state = 271, .external_lex_state = 4}, + [3975] = {.lex_state = 267, .external_lex_state = 4}, + [3976] = {.lex_state = 267, .external_lex_state = 4}, + [3977] = {.lex_state = 267, .external_lex_state = 4}, + [3978] = {.lex_state = 267, .external_lex_state = 4}, + [3979] = {.lex_state = 267, .external_lex_state = 4}, + [3980] = {.lex_state = 267, .external_lex_state = 4}, + [3981] = {.lex_state = 267, .external_lex_state = 4}, + [3982] = {.lex_state = 267, .external_lex_state = 4}, [3983] = {.lex_state = 267, .external_lex_state = 4}, - [3984] = {.lex_state = 138, .external_lex_state = 4}, - [3985] = {.lex_state = 138, .external_lex_state = 4}, - [3986] = {.lex_state = 138, .external_lex_state = 4}, + [3984] = {.lex_state = 271, .external_lex_state = 4}, + [3985] = {.lex_state = 267, .external_lex_state = 4}, + [3986] = {.lex_state = 267, .external_lex_state = 4}, [3987] = {.lex_state = 267, .external_lex_state = 4}, - [3988] = {.lex_state = 138, .external_lex_state = 4}, - [3989] = {.lex_state = 102, .external_lex_state = 4}, - [3990] = {.lex_state = 102, .external_lex_state = 4}, - [3991] = {.lex_state = 102, .external_lex_state = 4}, - [3992] = {.lex_state = 102, .external_lex_state = 4}, - [3993] = {.lex_state = 102, .external_lex_state = 4}, - [3994] = {.lex_state = 102, .external_lex_state = 4}, - [3995] = {.lex_state = 102, .external_lex_state = 4}, - [3996] = {.lex_state = 102, .external_lex_state = 4}, - [3997] = {.lex_state = 102, .external_lex_state = 4}, - [3998] = {.lex_state = 102, .external_lex_state = 4}, - [3999] = {.lex_state = 138, .external_lex_state = 4}, - [4000] = {.lex_state = 102, .external_lex_state = 4}, - [4001] = {.lex_state = 102, .external_lex_state = 4}, - [4002] = {.lex_state = 102, .external_lex_state = 4}, - [4003] = {.lex_state = 102, .external_lex_state = 4}, - [4004] = {.lex_state = 102, .external_lex_state = 4}, - [4005] = {.lex_state = 138, .external_lex_state = 4}, - [4006] = {.lex_state = 102, .external_lex_state = 4}, + [3988] = {.lex_state = 267, .external_lex_state = 4}, + [3989] = {.lex_state = 267, .external_lex_state = 4}, + [3990] = {.lex_state = 271, .external_lex_state = 4}, + [3991] = {.lex_state = 267, .external_lex_state = 4}, + [3992] = {.lex_state = 267, .external_lex_state = 4}, + [3993] = {.lex_state = 267, .external_lex_state = 4}, + [3994] = {.lex_state = 271, .external_lex_state = 4}, + [3995] = {.lex_state = 271, .external_lex_state = 4}, + [3996] = {.lex_state = 129, .external_lex_state = 5}, + [3997] = {.lex_state = 129, .external_lex_state = 5}, + [3998] = {.lex_state = 129, .external_lex_state = 5}, + [3999] = {.lex_state = 129, .external_lex_state = 5}, + [4000] = {.lex_state = 129, .external_lex_state = 5}, + [4001] = {.lex_state = 129, .external_lex_state = 5}, + [4002] = {.lex_state = 129, .external_lex_state = 5}, + [4003] = {.lex_state = 129, .external_lex_state = 5}, + [4004] = {.lex_state = 267, .external_lex_state = 4}, + [4005] = {.lex_state = 102, .external_lex_state = 4}, + [4006] = {.lex_state = 271, .external_lex_state = 4}, [4007] = {.lex_state = 102, .external_lex_state = 4}, - [4008] = {.lex_state = 267, .external_lex_state = 5}, - [4009] = {.lex_state = 102, .external_lex_state = 4}, - [4010] = {.lex_state = 138, .external_lex_state = 4}, - [4011] = {.lex_state = 271, .external_lex_state = 4}, - [4012] = {.lex_state = 267, .external_lex_state = 5}, + [4008] = {.lex_state = 135, .external_lex_state = 4}, + [4009] = {.lex_state = 135, .external_lex_state = 4}, + [4010] = {.lex_state = 271, .external_lex_state = 4}, + [4011] = {.lex_state = 129, .external_lex_state = 5}, + [4012] = {.lex_state = 267, .external_lex_state = 4}, [4013] = {.lex_state = 267, .external_lex_state = 4}, - [4014] = {.lex_state = 138, .external_lex_state = 4}, - [4015] = {.lex_state = 138, .external_lex_state = 4}, - [4016] = {.lex_state = 138, .external_lex_state = 4}, - [4017] = {.lex_state = 138, .external_lex_state = 4}, - [4018] = {.lex_state = 138, .external_lex_state = 4}, - [4019] = {.lex_state = 138, .external_lex_state = 4}, - [4020] = {.lex_state = 138, .external_lex_state = 4}, - [4021] = {.lex_state = 138, .external_lex_state = 4}, - [4022] = {.lex_state = 267, .external_lex_state = 5}, - [4023] = {.lex_state = 138, .external_lex_state = 4}, - [4024] = {.lex_state = 138, .external_lex_state = 4}, - [4025] = {.lex_state = 138, .external_lex_state = 4}, - [4026] = {.lex_state = 138, .external_lex_state = 4}, - [4027] = {.lex_state = 132, .external_lex_state = 4}, - [4028] = {.lex_state = 138, .external_lex_state = 4}, - [4029] = {.lex_state = 138, .external_lex_state = 4}, - [4030] = {.lex_state = 138, .external_lex_state = 4}, - [4031] = {.lex_state = 138, .external_lex_state = 4}, - [4032] = {.lex_state = 138, .external_lex_state = 4}, - [4033] = {.lex_state = 138, .external_lex_state = 4}, - [4034] = {.lex_state = 138, .external_lex_state = 4}, - [4035] = {.lex_state = 138, .external_lex_state = 4}, - [4036] = {.lex_state = 138, .external_lex_state = 4}, - [4037] = {.lex_state = 138, .external_lex_state = 4}, - [4038] = {.lex_state = 138, .external_lex_state = 4}, - [4039] = {.lex_state = 132, .external_lex_state = 4}, - [4040] = {.lex_state = 138, .external_lex_state = 4}, - [4041] = {.lex_state = 138, .external_lex_state = 4}, - [4042] = {.lex_state = 138, .external_lex_state = 4}, - [4043] = {.lex_state = 138, .external_lex_state = 4}, - [4044] = {.lex_state = 138, .external_lex_state = 4}, - [4045] = {.lex_state = 138, .external_lex_state = 4}, - [4046] = {.lex_state = 138, .external_lex_state = 4}, - [4047] = {.lex_state = 138, .external_lex_state = 4}, - [4048] = {.lex_state = 129, .external_lex_state = 5}, - [4049] = {.lex_state = 141, .external_lex_state = 4}, - [4050] = {.lex_state = 141, .external_lex_state = 4}, - [4051] = {.lex_state = 267, .external_lex_state = 4}, + [4014] = {.lex_state = 129, .external_lex_state = 5}, + [4015] = {.lex_state = 129, .external_lex_state = 5}, + [4016] = {.lex_state = 129, .external_lex_state = 5}, + [4017] = {.lex_state = 135, .external_lex_state = 4}, + [4018] = {.lex_state = 135, .external_lex_state = 4}, + [4019] = {.lex_state = 135, .external_lex_state = 4}, + [4020] = {.lex_state = 129, .external_lex_state = 5}, + [4021] = {.lex_state = 135, .external_lex_state = 4}, + [4022] = {.lex_state = 135, .external_lex_state = 4}, + [4023] = {.lex_state = 129, .external_lex_state = 5}, + [4024] = {.lex_state = 129, .external_lex_state = 5}, + [4025] = {.lex_state = 129, .external_lex_state = 5}, + [4026] = {.lex_state = 129, .external_lex_state = 5}, + [4027] = {.lex_state = 129, .external_lex_state = 5}, + [4028] = {.lex_state = 129, .external_lex_state = 5}, + [4029] = {.lex_state = 129, .external_lex_state = 5}, + [4030] = {.lex_state = 129, .external_lex_state = 5}, + [4031] = {.lex_state = 129, .external_lex_state = 5}, + [4032] = {.lex_state = 267, .external_lex_state = 5}, + [4033] = {.lex_state = 271, .external_lex_state = 4}, + [4034] = {.lex_state = 267, .external_lex_state = 5}, + [4035] = {.lex_state = 129, .external_lex_state = 5}, + [4036] = {.lex_state = 271, .external_lex_state = 4}, + [4037] = {.lex_state = 271, .external_lex_state = 4}, + [4038] = {.lex_state = 271, .external_lex_state = 4}, + [4039] = {.lex_state = 267, .external_lex_state = 4}, + [4040] = {.lex_state = 267, .external_lex_state = 4}, + [4041] = {.lex_state = 129, .external_lex_state = 5}, + [4042] = {.lex_state = 129, .external_lex_state = 5}, + [4043] = {.lex_state = 129, .external_lex_state = 5}, + [4044] = {.lex_state = 129, .external_lex_state = 5}, + [4045] = {.lex_state = 135, .external_lex_state = 4}, + [4046] = {.lex_state = 129, .external_lex_state = 5}, + [4047] = {.lex_state = 129, .external_lex_state = 5}, + [4048] = {.lex_state = 271, .external_lex_state = 4}, + [4049] = {.lex_state = 267, .external_lex_state = 4}, + [4050] = {.lex_state = 102, .external_lex_state = 4}, + [4051] = {.lex_state = 141, .external_lex_state = 4}, [4052] = {.lex_state = 267, .external_lex_state = 4}, [4053] = {.lex_state = 267, .external_lex_state = 4}, [4054] = {.lex_state = 102, .external_lex_state = 4}, - [4055] = {.lex_state = 129, .external_lex_state = 4}, + [4055] = {.lex_state = 267, .external_lex_state = 4}, [4056] = {.lex_state = 102, .external_lex_state = 4}, [4057] = {.lex_state = 267, .external_lex_state = 4}, - [4058] = {.lex_state = 102, .external_lex_state = 4}, - [4059] = {.lex_state = 129, .external_lex_state = 4}, + [4058] = {.lex_state = 267, .external_lex_state = 4}, + [4059] = {.lex_state = 102, .external_lex_state = 4}, [4060] = {.lex_state = 102, .external_lex_state = 4}, [4061] = {.lex_state = 267, .external_lex_state = 4}, [4062] = {.lex_state = 267, .external_lex_state = 4}, - [4063] = {.lex_state = 267, .external_lex_state = 4}, - [4064] = {.lex_state = 267, .external_lex_state = 4}, + [4063] = {.lex_state = 102, .external_lex_state = 4}, + [4064] = {.lex_state = 102, .external_lex_state = 4}, [4065] = {.lex_state = 267, .external_lex_state = 4}, [4066] = {.lex_state = 267, .external_lex_state = 4}, - [4067] = {.lex_state = 102, .external_lex_state = 4}, - [4068] = {.lex_state = 267, .external_lex_state = 4}, + [4067] = {.lex_state = 267, .external_lex_state = 4}, + [4068] = {.lex_state = 102, .external_lex_state = 4}, [4069] = {.lex_state = 267, .external_lex_state = 4}, - [4070] = {.lex_state = 102, .external_lex_state = 4}, + [4070] = {.lex_state = 267, .external_lex_state = 4}, [4071] = {.lex_state = 267, .external_lex_state = 4}, - [4072] = {.lex_state = 102, .external_lex_state = 4}, + [4072] = {.lex_state = 267, .external_lex_state = 4}, [4073] = {.lex_state = 267, .external_lex_state = 4}, - [4074] = {.lex_state = 102, .external_lex_state = 4}, - [4075] = {.lex_state = 102, .external_lex_state = 4}, - [4076] = {.lex_state = 102, .external_lex_state = 4}, - [4077] = {.lex_state = 102, .external_lex_state = 4}, - [4078] = {.lex_state = 102, .external_lex_state = 4}, + [4074] = {.lex_state = 129, .external_lex_state = 4}, + [4075] = {.lex_state = 129, .external_lex_state = 4}, + [4076] = {.lex_state = 267, .external_lex_state = 4}, + [4077] = {.lex_state = 267, .external_lex_state = 4}, + [4078] = {.lex_state = 267, .external_lex_state = 4}, [4079] = {.lex_state = 267, .external_lex_state = 4}, - [4080] = {.lex_state = 267, .external_lex_state = 4}, + [4080] = {.lex_state = 129, .external_lex_state = 4}, [4081] = {.lex_state = 267, .external_lex_state = 4}, - [4082] = {.lex_state = 267, .external_lex_state = 4}, - [4083] = {.lex_state = 267, .external_lex_state = 4}, + [4082] = {.lex_state = 102, .external_lex_state = 4}, + [4083] = {.lex_state = 129, .external_lex_state = 4}, [4084] = {.lex_state = 267, .external_lex_state = 4}, [4085] = {.lex_state = 267, .external_lex_state = 4}, [4086] = {.lex_state = 267, .external_lex_state = 4}, [4087] = {.lex_state = 267, .external_lex_state = 4}, - [4088] = {.lex_state = 102, .external_lex_state = 4}, + [4088] = {.lex_state = 267, .external_lex_state = 4}, [4089] = {.lex_state = 267, .external_lex_state = 4}, [4090] = {.lex_state = 267, .external_lex_state = 4}, - [4091] = {.lex_state = 267, .external_lex_state = 4}, - [4092] = {.lex_state = 267, .external_lex_state = 4}, + [4091] = {.lex_state = 102, .external_lex_state = 4}, + [4092] = {.lex_state = 102, .external_lex_state = 4}, [4093] = {.lex_state = 267, .external_lex_state = 4}, - [4094] = {.lex_state = 102, .external_lex_state = 4}, - [4095] = {.lex_state = 129, .external_lex_state = 4}, - [4096] = {.lex_state = 102, .external_lex_state = 4}, - [4097] = {.lex_state = 102, .external_lex_state = 4}, - [4098] = {.lex_state = 267, .external_lex_state = 4}, - [4099] = {.lex_state = 102, .external_lex_state = 4}, - [4100] = {.lex_state = 102, .external_lex_state = 4}, + [4094] = {.lex_state = 267, .external_lex_state = 4}, + [4095] = {.lex_state = 102, .external_lex_state = 4}, + [4096] = {.lex_state = 129, .external_lex_state = 4}, + [4097] = {.lex_state = 267, .external_lex_state = 4}, + [4098] = {.lex_state = 102, .external_lex_state = 4}, + [4099] = {.lex_state = 267, .external_lex_state = 4}, + [4100] = {.lex_state = 129, .external_lex_state = 4}, [4101] = {.lex_state = 267, .external_lex_state = 4}, - [4102] = {.lex_state = 267, .external_lex_state = 4}, - [4103] = {.lex_state = 267, .external_lex_state = 4}, + [4102] = {.lex_state = 102, .external_lex_state = 4}, + [4103] = {.lex_state = 102, .external_lex_state = 4}, [4104] = {.lex_state = 102, .external_lex_state = 4}, - [4105] = {.lex_state = 267, .external_lex_state = 4}, - [4106] = {.lex_state = 267, .external_lex_state = 4}, + [4105] = {.lex_state = 102, .external_lex_state = 4}, + [4106] = {.lex_state = 102, .external_lex_state = 4}, [4107] = {.lex_state = 102, .external_lex_state = 4}, - [4108] = {.lex_state = 267, .external_lex_state = 4}, - [4109] = {.lex_state = 267, .external_lex_state = 4}, + [4108] = {.lex_state = 102, .external_lex_state = 4}, + [4109] = {.lex_state = 129, .external_lex_state = 4}, [4110] = {.lex_state = 267, .external_lex_state = 4}, - [4111] = {.lex_state = 267, .external_lex_state = 4}, - [4112] = {.lex_state = 267, .external_lex_state = 4}, - [4113] = {.lex_state = 102, .external_lex_state = 4}, - [4114] = {.lex_state = 102, .external_lex_state = 4}, + [4111] = {.lex_state = 141, .external_lex_state = 4}, + [4112] = {.lex_state = 141, .external_lex_state = 4}, + [4113] = {.lex_state = 267, .external_lex_state = 4}, + [4114] = {.lex_state = 267, .external_lex_state = 4}, [4115] = {.lex_state = 267, .external_lex_state = 4}, - [4116] = {.lex_state = 102, .external_lex_state = 4}, + [4116] = {.lex_state = 267, .external_lex_state = 4}, [4117] = {.lex_state = 267, .external_lex_state = 4}, [4118] = {.lex_state = 267, .external_lex_state = 4}, [4119] = {.lex_state = 267, .external_lex_state = 4}, - [4120] = {.lex_state = 102, .external_lex_state = 4}, + [4120] = {.lex_state = 267, .external_lex_state = 4}, [4121] = {.lex_state = 267, .external_lex_state = 4}, [4122] = {.lex_state = 267, .external_lex_state = 4}, [4123] = {.lex_state = 267, .external_lex_state = 4}, - [4124] = {.lex_state = 102, .external_lex_state = 4}, - [4125] = {.lex_state = 267, .external_lex_state = 4}, + [4124] = {.lex_state = 267, .external_lex_state = 4}, + [4125] = {.lex_state = 102, .external_lex_state = 4}, [4126] = {.lex_state = 267, .external_lex_state = 4}, [4127] = {.lex_state = 267, .external_lex_state = 4}, [4128] = {.lex_state = 267, .external_lex_state = 4}, [4129] = {.lex_state = 267, .external_lex_state = 4}, [4130] = {.lex_state = 267, .external_lex_state = 4}, [4131] = {.lex_state = 267, .external_lex_state = 4}, - [4132] = {.lex_state = 102, .external_lex_state = 4}, + [4132] = {.lex_state = 267, .external_lex_state = 4}, [4133] = {.lex_state = 267, .external_lex_state = 4}, - [4134] = {.lex_state = 102, .external_lex_state = 4}, - [4135] = {.lex_state = 102, .external_lex_state = 4}, - [4136] = {.lex_state = 141, .external_lex_state = 4}, - [4137] = {.lex_state = 141, .external_lex_state = 4}, - [4138] = {.lex_state = 102, .external_lex_state = 4}, - [4139] = {.lex_state = 102, .external_lex_state = 4}, - [4140] = {.lex_state = 102, .external_lex_state = 4}, - [4141] = {.lex_state = 102, .external_lex_state = 4}, - [4142] = {.lex_state = 102, .external_lex_state = 4}, - [4143] = {.lex_state = 102, .external_lex_state = 4}, - [4144] = {.lex_state = 102, .external_lex_state = 4}, + [4134] = {.lex_state = 267, .external_lex_state = 4}, + [4135] = {.lex_state = 267, .external_lex_state = 4}, + [4136] = {.lex_state = 267, .external_lex_state = 4}, + [4137] = {.lex_state = 267, .external_lex_state = 4}, + [4138] = {.lex_state = 267, .external_lex_state = 4}, + [4139] = {.lex_state = 267, .external_lex_state = 4}, + [4140] = {.lex_state = 267, .external_lex_state = 4}, + [4141] = {.lex_state = 267, .external_lex_state = 4}, + [4142] = {.lex_state = 267, .external_lex_state = 4}, + [4143] = {.lex_state = 267, .external_lex_state = 4}, + [4144] = {.lex_state = 267, .external_lex_state = 4}, [4145] = {.lex_state = 267, .external_lex_state = 4}, - [4146] = {.lex_state = 102, .external_lex_state = 4}, + [4146] = {.lex_state = 267, .external_lex_state = 4}, [4147] = {.lex_state = 141, .external_lex_state = 4}, - [4148] = {.lex_state = 102, .external_lex_state = 4}, - [4149] = {.lex_state = 102, .external_lex_state = 4}, + [4148] = {.lex_state = 141, .external_lex_state = 4}, + [4149] = {.lex_state = 267, .external_lex_state = 4}, [4150] = {.lex_state = 267, .external_lex_state = 4}, [4151] = {.lex_state = 141, .external_lex_state = 4}, [4152] = {.lex_state = 141, .external_lex_state = 4}, @@ -27824,268 +27809,268 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4154] = {.lex_state = 267, .external_lex_state = 4}, [4155] = {.lex_state = 141, .external_lex_state = 4}, [4156] = {.lex_state = 141, .external_lex_state = 4}, - [4157] = {.lex_state = 267, .external_lex_state = 4}, + [4157] = {.lex_state = 102, .external_lex_state = 4}, [4158] = {.lex_state = 102, .external_lex_state = 4}, - [4159] = {.lex_state = 141, .external_lex_state = 4}, - [4160] = {.lex_state = 141, .external_lex_state = 4}, - [4161] = {.lex_state = 102, .external_lex_state = 4}, - [4162] = {.lex_state = 141, .external_lex_state = 4}, - [4163] = {.lex_state = 267, .external_lex_state = 4}, - [4164] = {.lex_state = 267, .external_lex_state = 4}, - [4165] = {.lex_state = 141, .external_lex_state = 4}, - [4166] = {.lex_state = 141, .external_lex_state = 4}, + [4159] = {.lex_state = 102, .external_lex_state = 4}, + [4160] = {.lex_state = 102, .external_lex_state = 4}, + [4161] = {.lex_state = 267, .external_lex_state = 4}, + [4162] = {.lex_state = 267, .external_lex_state = 4}, + [4163] = {.lex_state = 102, .external_lex_state = 4}, + [4164] = {.lex_state = 102, .external_lex_state = 4}, + [4165] = {.lex_state = 102, .external_lex_state = 4}, + [4166] = {.lex_state = 102, .external_lex_state = 4}, [4167] = {.lex_state = 267, .external_lex_state = 4}, - [4168] = {.lex_state = 267, .external_lex_state = 4}, - [4169] = {.lex_state = 267, .external_lex_state = 4}, + [4168] = {.lex_state = 102, .external_lex_state = 4}, + [4169] = {.lex_state = 102, .external_lex_state = 4}, [4170] = {.lex_state = 267, .external_lex_state = 4}, [4171] = {.lex_state = 267, .external_lex_state = 4}, - [4172] = {.lex_state = 267, .external_lex_state = 4}, - [4173] = {.lex_state = 267, .external_lex_state = 4}, - [4174] = {.lex_state = 267, .external_lex_state = 4}, - [4175] = {.lex_state = 267, .external_lex_state = 4}, - [4176] = {.lex_state = 267, .external_lex_state = 4}, - [4177] = {.lex_state = 267, .external_lex_state = 4}, - [4178] = {.lex_state = 267, .external_lex_state = 4}, + [4172] = {.lex_state = 129, .external_lex_state = 4}, + [4173] = {.lex_state = 129, .external_lex_state = 4}, + [4174] = {.lex_state = 102, .external_lex_state = 4}, + [4175] = {.lex_state = 102, .external_lex_state = 4}, + [4176] = {.lex_state = 141, .external_lex_state = 4}, + [4177] = {.lex_state = 141, .external_lex_state = 4}, + [4178] = {.lex_state = 102, .external_lex_state = 4}, [4179] = {.lex_state = 267, .external_lex_state = 4}, [4180] = {.lex_state = 267, .external_lex_state = 4}, - [4181] = {.lex_state = 267, .external_lex_state = 4}, - [4182] = {.lex_state = 267, .external_lex_state = 4}, - [4183] = {.lex_state = 267, .external_lex_state = 4}, - [4184] = {.lex_state = 267, .external_lex_state = 4}, - [4185] = {.lex_state = 267, .external_lex_state = 4}, + [4181] = {.lex_state = 129, .external_lex_state = 4}, + [4182] = {.lex_state = 102, .external_lex_state = 4}, + [4183] = {.lex_state = 102, .external_lex_state = 4}, + [4184] = {.lex_state = 102, .external_lex_state = 4}, + [4185] = {.lex_state = 141, .external_lex_state = 4}, [4186] = {.lex_state = 141, .external_lex_state = 4}, - [4187] = {.lex_state = 267, .external_lex_state = 4}, - [4188] = {.lex_state = 267, .external_lex_state = 4}, + [4187] = {.lex_state = 129, .external_lex_state = 4}, + [4188] = {.lex_state = 102, .external_lex_state = 4}, [4189] = {.lex_state = 267, .external_lex_state = 4}, - [4190] = {.lex_state = 129, .external_lex_state = 4}, - [4191] = {.lex_state = 129, .external_lex_state = 4}, - [4192] = {.lex_state = 267, .external_lex_state = 4}, + [4190] = {.lex_state = 267, .external_lex_state = 4}, + [4191] = {.lex_state = 102, .external_lex_state = 4}, + [4192] = {.lex_state = 102, .external_lex_state = 4}, [4193] = {.lex_state = 267, .external_lex_state = 4}, - [4194] = {.lex_state = 267, .external_lex_state = 4}, + [4194] = {.lex_state = 141, .external_lex_state = 4}, [4195] = {.lex_state = 267, .external_lex_state = 4}, [4196] = {.lex_state = 102, .external_lex_state = 4}, [4197] = {.lex_state = 102, .external_lex_state = 4}, - [4198] = {.lex_state = 267, .external_lex_state = 4}, - [4199] = {.lex_state = 141, .external_lex_state = 4}, - [4200] = {.lex_state = 102, .external_lex_state = 4}, + [4198] = {.lex_state = 102, .external_lex_state = 4}, + [4199] = {.lex_state = 102, .external_lex_state = 4}, + [4200] = {.lex_state = 267, .external_lex_state = 4}, [4201] = {.lex_state = 102, .external_lex_state = 4}, [4202] = {.lex_state = 102, .external_lex_state = 4}, - [4203] = {.lex_state = 267, .external_lex_state = 4}, - [4204] = {.lex_state = 129, .external_lex_state = 4}, - [4205] = {.lex_state = 129, .external_lex_state = 4}, + [4203] = {.lex_state = 102, .external_lex_state = 4}, + [4204] = {.lex_state = 267, .external_lex_state = 4}, + [4205] = {.lex_state = 102, .external_lex_state = 4}, [4206] = {.lex_state = 102, .external_lex_state = 4}, - [4207] = {.lex_state = 102, .external_lex_state = 4}, + [4207] = {.lex_state = 267, .external_lex_state = 4}, [4208] = {.lex_state = 102, .external_lex_state = 4}, [4209] = {.lex_state = 102, .external_lex_state = 4}, - [4210] = {.lex_state = 267, .external_lex_state = 4}, + [4210] = {.lex_state = 102, .external_lex_state = 4}, [4211] = {.lex_state = 102, .external_lex_state = 4}, - [4212] = {.lex_state = 102, .external_lex_state = 4}, + [4212] = {.lex_state = 267, .external_lex_state = 4}, [4213] = {.lex_state = 102, .external_lex_state = 4}, [4214] = {.lex_state = 102, .external_lex_state = 4}, - [4215] = {.lex_state = 267, .external_lex_state = 4}, - [4216] = {.lex_state = 267, .external_lex_state = 4}, + [4215] = {.lex_state = 102, .external_lex_state = 4}, + [4216] = {.lex_state = 102, .external_lex_state = 4}, [4217] = {.lex_state = 102, .external_lex_state = 4}, - [4218] = {.lex_state = 267, .external_lex_state = 4}, + [4218] = {.lex_state = 102, .external_lex_state = 4}, [4219] = {.lex_state = 102, .external_lex_state = 4}, - [4220] = {.lex_state = 267, .external_lex_state = 4}, + [4220] = {.lex_state = 102, .external_lex_state = 4}, [4221] = {.lex_state = 102, .external_lex_state = 4}, - [4222] = {.lex_state = 267, .external_lex_state = 4}, - [4223] = {.lex_state = 102, .external_lex_state = 4}, + [4222] = {.lex_state = 141, .external_lex_state = 4}, + [4223] = {.lex_state = 267, .external_lex_state = 4}, [4224] = {.lex_state = 102, .external_lex_state = 4}, [4225] = {.lex_state = 102, .external_lex_state = 4}, [4226] = {.lex_state = 102, .external_lex_state = 4}, - [4227] = {.lex_state = 129, .external_lex_state = 4}, - [4228] = {.lex_state = 129, .external_lex_state = 4}, - [4229] = {.lex_state = 129, .external_lex_state = 4}, + [4227] = {.lex_state = 102, .external_lex_state = 4}, + [4228] = {.lex_state = 102, .external_lex_state = 4}, + [4229] = {.lex_state = 102, .external_lex_state = 4}, [4230] = {.lex_state = 102, .external_lex_state = 4}, - [4231] = {.lex_state = 141, .external_lex_state = 4}, - [4232] = {.lex_state = 267, .external_lex_state = 4}, - [4233] = {.lex_state = 141, .external_lex_state = 4}, - [4234] = {.lex_state = 267, .external_lex_state = 4}, - [4235] = {.lex_state = 267, .external_lex_state = 4}, - [4236] = {.lex_state = 141, .external_lex_state = 4}, - [4237] = {.lex_state = 141, .external_lex_state = 4}, + [4231] = {.lex_state = 102, .external_lex_state = 4}, + [4232] = {.lex_state = 102, .external_lex_state = 4}, + [4233] = {.lex_state = 102, .external_lex_state = 4}, + [4234] = {.lex_state = 102, .external_lex_state = 4}, + [4235] = {.lex_state = 102, .external_lex_state = 4}, + [4236] = {.lex_state = 267, .external_lex_state = 4}, + [4237] = {.lex_state = 102, .external_lex_state = 4}, [4238] = {.lex_state = 102, .external_lex_state = 4}, - [4239] = {.lex_state = 141, .external_lex_state = 4}, - [4240] = {.lex_state = 141, .external_lex_state = 4}, + [4239] = {.lex_state = 102, .external_lex_state = 4}, + [4240] = {.lex_state = 102, .external_lex_state = 4}, [4241] = {.lex_state = 102, .external_lex_state = 4}, [4242] = {.lex_state = 102, .external_lex_state = 4}, - [4243] = {.lex_state = 141, .external_lex_state = 4}, - [4244] = {.lex_state = 141, .external_lex_state = 4}, - [4245] = {.lex_state = 141, .external_lex_state = 4}, + [4243] = {.lex_state = 129, .external_lex_state = 4}, + [4244] = {.lex_state = 129, .external_lex_state = 4}, + [4245] = {.lex_state = 129, .external_lex_state = 4}, [4246] = {.lex_state = 141, .external_lex_state = 4}, [4247] = {.lex_state = 141, .external_lex_state = 4}, [4248] = {.lex_state = 141, .external_lex_state = 4}, [4249] = {.lex_state = 141, .external_lex_state = 4}, - [4250] = {.lex_state = 102, .external_lex_state = 4}, + [4250] = {.lex_state = 141, .external_lex_state = 4}, [4251] = {.lex_state = 141, .external_lex_state = 4}, - [4252] = {.lex_state = 129, .external_lex_state = 4}, - [4253] = {.lex_state = 102, .external_lex_state = 4}, - [4254] = {.lex_state = 102, .external_lex_state = 4}, - [4255] = {.lex_state = 141, .external_lex_state = 4}, + [4252] = {.lex_state = 141, .external_lex_state = 4}, + [4253] = {.lex_state = 141, .external_lex_state = 4}, + [4254] = {.lex_state = 267, .external_lex_state = 4}, + [4255] = {.lex_state = 129, .external_lex_state = 4}, [4256] = {.lex_state = 141, .external_lex_state = 4}, [4257] = {.lex_state = 141, .external_lex_state = 4}, [4258] = {.lex_state = 141, .external_lex_state = 4}, - [4259] = {.lex_state = 141, .external_lex_state = 4}, - [4260] = {.lex_state = 141, .external_lex_state = 4}, + [4259] = {.lex_state = 102, .external_lex_state = 4}, + [4260] = {.lex_state = 102, .external_lex_state = 4}, [4261] = {.lex_state = 141, .external_lex_state = 4}, - [4262] = {.lex_state = 102, .external_lex_state = 4}, - [4263] = {.lex_state = 102, .external_lex_state = 4}, + [4262] = {.lex_state = 141, .external_lex_state = 4}, + [4263] = {.lex_state = 141, .external_lex_state = 4}, [4264] = {.lex_state = 102, .external_lex_state = 4}, - [4265] = {.lex_state = 141, .external_lex_state = 4}, - [4266] = {.lex_state = 267, .external_lex_state = 4}, + [4265] = {.lex_state = 102, .external_lex_state = 4}, + [4266] = {.lex_state = 141, .external_lex_state = 4}, [4267] = {.lex_state = 102, .external_lex_state = 4}, [4268] = {.lex_state = 102, .external_lex_state = 4}, [4269] = {.lex_state = 141, .external_lex_state = 4}, - [4270] = {.lex_state = 129, .external_lex_state = 4}, + [4270] = {.lex_state = 141, .external_lex_state = 4}, [4271] = {.lex_state = 102, .external_lex_state = 4}, [4272] = {.lex_state = 102, .external_lex_state = 4}, - [4273] = {.lex_state = 141, .external_lex_state = 4}, + [4273] = {.lex_state = 102, .external_lex_state = 4}, [4274] = {.lex_state = 141, .external_lex_state = 4}, [4275] = {.lex_state = 102, .external_lex_state = 4}, - [4276] = {.lex_state = 141, .external_lex_state = 4}, + [4276] = {.lex_state = 102, .external_lex_state = 4}, [4277] = {.lex_state = 141, .external_lex_state = 4}, [4278] = {.lex_state = 141, .external_lex_state = 4}, - [4279] = {.lex_state = 102, .external_lex_state = 4}, - [4280] = {.lex_state = 102, .external_lex_state = 4}, - [4281] = {.lex_state = 102, .external_lex_state = 4}, + [4279] = {.lex_state = 141, .external_lex_state = 4}, + [4280] = {.lex_state = 141, .external_lex_state = 4}, + [4281] = {.lex_state = 141, .external_lex_state = 4}, [4282] = {.lex_state = 141, .external_lex_state = 4}, - [4283] = {.lex_state = 129, .external_lex_state = 4}, - [4284] = {.lex_state = 267, .external_lex_state = 4}, - [4285] = {.lex_state = 129, .external_lex_state = 4}, - [4286] = {.lex_state = 267, .external_lex_state = 4}, - [4287] = {.lex_state = 267, .external_lex_state = 4}, + [4283] = {.lex_state = 141, .external_lex_state = 4}, + [4284] = {.lex_state = 141, .external_lex_state = 4}, + [4285] = {.lex_state = 141, .external_lex_state = 4}, + [4286] = {.lex_state = 129, .external_lex_state = 4}, + [4287] = {.lex_state = 102, .external_lex_state = 4}, [4288] = {.lex_state = 267, .external_lex_state = 4}, - [4289] = {.lex_state = 129, .external_lex_state = 4}, + [4289] = {.lex_state = 141, .external_lex_state = 4}, [4290] = {.lex_state = 141, .external_lex_state = 4}, [4291] = {.lex_state = 102, .external_lex_state = 4}, - [4292] = {.lex_state = 141, .external_lex_state = 4}, - [4293] = {.lex_state = 141, .external_lex_state = 4}, - [4294] = {.lex_state = 141, .external_lex_state = 4}, - [4295] = {.lex_state = 267, .external_lex_state = 4}, - [4296] = {.lex_state = 102, .external_lex_state = 4}, + [4292] = {.lex_state = 102, .external_lex_state = 4}, + [4293] = {.lex_state = 102, .external_lex_state = 4}, + [4294] = {.lex_state = 102, .external_lex_state = 4}, + [4295] = {.lex_state = 141, .external_lex_state = 4}, + [4296] = {.lex_state = 141, .external_lex_state = 4}, [4297] = {.lex_state = 102, .external_lex_state = 4}, - [4298] = {.lex_state = 102, .external_lex_state = 4}, + [4298] = {.lex_state = 267, .external_lex_state = 4}, [4299] = {.lex_state = 102, .external_lex_state = 4}, [4300] = {.lex_state = 102, .external_lex_state = 4}, - [4301] = {.lex_state = 102, .external_lex_state = 4}, + [4301] = {.lex_state = 141, .external_lex_state = 4}, [4302] = {.lex_state = 102, .external_lex_state = 4}, [4303] = {.lex_state = 102, .external_lex_state = 4}, [4304] = {.lex_state = 102, .external_lex_state = 4}, - [4305] = {.lex_state = 102, .external_lex_state = 4}, - [4306] = {.lex_state = 267, .external_lex_state = 4}, + [4305] = {.lex_state = 141, .external_lex_state = 4}, + [4306] = {.lex_state = 141, .external_lex_state = 4}, [4307] = {.lex_state = 141, .external_lex_state = 4}, - [4308] = {.lex_state = 129, .external_lex_state = 4}, + [4308] = {.lex_state = 141, .external_lex_state = 4}, [4309] = {.lex_state = 267, .external_lex_state = 4}, - [4310] = {.lex_state = 267, .external_lex_state = 4}, - [4311] = {.lex_state = 267, .external_lex_state = 4}, - [4312] = {.lex_state = 267, .external_lex_state = 4}, - [4313] = {.lex_state = 267, .external_lex_state = 4}, - [4314] = {.lex_state = 267, .external_lex_state = 4}, - [4315] = {.lex_state = 267, .external_lex_state = 4}, - [4316] = {.lex_state = 267, .external_lex_state = 4}, - [4317] = {.lex_state = 129, .external_lex_state = 4}, - [4318] = {.lex_state = 141, .external_lex_state = 4}, - [4319] = {.lex_state = 129, .external_lex_state = 4}, + [4310] = {.lex_state = 141, .external_lex_state = 4}, + [4311] = {.lex_state = 141, .external_lex_state = 4}, + [4312] = {.lex_state = 141, .external_lex_state = 4}, + [4313] = {.lex_state = 141, .external_lex_state = 4}, + [4314] = {.lex_state = 141, .external_lex_state = 4}, + [4315] = {.lex_state = 141, .external_lex_state = 4}, + [4316] = {.lex_state = 141, .external_lex_state = 4}, + [4317] = {.lex_state = 141, .external_lex_state = 4}, + [4318] = {.lex_state = 102, .external_lex_state = 4}, + [4319] = {.lex_state = 267, .external_lex_state = 4}, [4320] = {.lex_state = 267, .external_lex_state = 4}, - [4321] = {.lex_state = 102, .external_lex_state = 4}, - [4322] = {.lex_state = 141, .external_lex_state = 4}, - [4323] = {.lex_state = 141, .external_lex_state = 4}, + [4321] = {.lex_state = 141, .external_lex_state = 4}, + [4322] = {.lex_state = 267, .external_lex_state = 4}, + [4323] = {.lex_state = 129, .external_lex_state = 4}, [4324] = {.lex_state = 141, .external_lex_state = 4}, [4325] = {.lex_state = 141, .external_lex_state = 4}, - [4326] = {.lex_state = 129, .external_lex_state = 4}, - [4327] = {.lex_state = 141, .external_lex_state = 4}, + [4326] = {.lex_state = 141, .external_lex_state = 4}, + [4327] = {.lex_state = 267, .external_lex_state = 4}, [4328] = {.lex_state = 141, .external_lex_state = 4}, [4329] = {.lex_state = 267, .external_lex_state = 4}, [4330] = {.lex_state = 267, .external_lex_state = 4}, - [4331] = {.lex_state = 141, .external_lex_state = 4}, - [4332] = {.lex_state = 141, .external_lex_state = 4}, - [4333] = {.lex_state = 141, .external_lex_state = 4}, - [4334] = {.lex_state = 141, .external_lex_state = 4}, - [4335] = {.lex_state = 141, .external_lex_state = 4}, - [4336] = {.lex_state = 141, .external_lex_state = 4}, - [4337] = {.lex_state = 141, .external_lex_state = 4}, - [4338] = {.lex_state = 129, .external_lex_state = 4}, + [4331] = {.lex_state = 267, .external_lex_state = 4}, + [4332] = {.lex_state = 267, .external_lex_state = 4}, + [4333] = {.lex_state = 267, .external_lex_state = 4}, + [4334] = {.lex_state = 267, .external_lex_state = 4}, + [4335] = {.lex_state = 129, .external_lex_state = 4}, + [4336] = {.lex_state = 267, .external_lex_state = 4}, + [4337] = {.lex_state = 267, .external_lex_state = 4}, + [4338] = {.lex_state = 267, .external_lex_state = 4}, [4339] = {.lex_state = 267, .external_lex_state = 4}, - [4340] = {.lex_state = 141, .external_lex_state = 4}, - [4341] = {.lex_state = 102, .external_lex_state = 4}, - [4342] = {.lex_state = 141, .external_lex_state = 4}, - [4343] = {.lex_state = 141, .external_lex_state = 4}, - [4344] = {.lex_state = 141, .external_lex_state = 4}, - [4345] = {.lex_state = 102, .external_lex_state = 4}, - [4346] = {.lex_state = 102, .external_lex_state = 4}, - [4347] = {.lex_state = 141, .external_lex_state = 4}, - [4348] = {.lex_state = 141, .external_lex_state = 4}, + [4340] = {.lex_state = 267, .external_lex_state = 4}, + [4341] = {.lex_state = 267, .external_lex_state = 4}, + [4342] = {.lex_state = 267, .external_lex_state = 4}, + [4343] = {.lex_state = 267, .external_lex_state = 4}, + [4344] = {.lex_state = 129, .external_lex_state = 4}, + [4345] = {.lex_state = 129, .external_lex_state = 4}, + [4346] = {.lex_state = 267, .external_lex_state = 4}, + [4347] = {.lex_state = 129, .external_lex_state = 4}, + [4348] = {.lex_state = 267, .external_lex_state = 4}, [4349] = {.lex_state = 267, .external_lex_state = 4}, [4350] = {.lex_state = 267, .external_lex_state = 4}, [4351] = {.lex_state = 267, .external_lex_state = 4}, - [4352] = {.lex_state = 141, .external_lex_state = 4}, - [4353] = {.lex_state = 141, .external_lex_state = 4}, + [4352] = {.lex_state = 129, .external_lex_state = 4}, + [4353] = {.lex_state = 267, .external_lex_state = 4}, [4354] = {.lex_state = 102, .external_lex_state = 4}, - [4355] = {.lex_state = 102, .external_lex_state = 4}, + [4355] = {.lex_state = 267, .external_lex_state = 4}, [4356] = {.lex_state = 267, .external_lex_state = 4}, [4357] = {.lex_state = 267, .external_lex_state = 4}, [4358] = {.lex_state = 102, .external_lex_state = 4}, - [4359] = {.lex_state = 141, .external_lex_state = 4}, - [4360] = {.lex_state = 267, .external_lex_state = 4}, - [4361] = {.lex_state = 141, .external_lex_state = 4}, + [4359] = {.lex_state = 129, .external_lex_state = 4}, + [4360] = {.lex_state = 102, .external_lex_state = 4}, + [4361] = {.lex_state = 267, .external_lex_state = 4}, [4362] = {.lex_state = 102, .external_lex_state = 4}, - [4363] = {.lex_state = 141, .external_lex_state = 4}, + [4363] = {.lex_state = 267, .external_lex_state = 4}, [4364] = {.lex_state = 267, .external_lex_state = 4}, [4365] = {.lex_state = 267, .external_lex_state = 4}, [4366] = {.lex_state = 267, .external_lex_state = 4}, - [4367] = {.lex_state = 141, .external_lex_state = 4}, + [4367] = {.lex_state = 267, .external_lex_state = 4}, [4368] = {.lex_state = 267, .external_lex_state = 4}, [4369] = {.lex_state = 267, .external_lex_state = 4}, [4370] = {.lex_state = 267, .external_lex_state = 4}, [4371] = {.lex_state = 267, .external_lex_state = 4}, [4372] = {.lex_state = 267, .external_lex_state = 4}, - [4373] = {.lex_state = 102, .external_lex_state = 4}, + [4373] = {.lex_state = 267, .external_lex_state = 4}, [4374] = {.lex_state = 267, .external_lex_state = 4}, - [4375] = {.lex_state = 141, .external_lex_state = 4}, - [4376] = {.lex_state = 267, .external_lex_state = 4}, - [4377] = {.lex_state = 267, .external_lex_state = 4}, - [4378] = {.lex_state = 102, .external_lex_state = 4}, - [4379] = {.lex_state = 267, .external_lex_state = 4}, - [4380] = {.lex_state = 267, .external_lex_state = 4}, - [4381] = {.lex_state = 267, .external_lex_state = 4}, + [4375] = {.lex_state = 129, .external_lex_state = 4}, + [4376] = {.lex_state = 141, .external_lex_state = 4}, + [4377] = {.lex_state = 141, .external_lex_state = 4}, + [4378] = {.lex_state = 141, .external_lex_state = 4}, + [4379] = {.lex_state = 141, .external_lex_state = 4}, + [4380] = {.lex_state = 141, .external_lex_state = 4}, + [4381] = {.lex_state = 141, .external_lex_state = 4}, [4382] = {.lex_state = 267, .external_lex_state = 4}, - [4383] = {.lex_state = 267, .external_lex_state = 4}, + [4383] = {.lex_state = 102, .external_lex_state = 4}, [4384] = {.lex_state = 267, .external_lex_state = 4}, - [4385] = {.lex_state = 129, .external_lex_state = 4}, - [4386] = {.lex_state = 267, .external_lex_state = 4}, + [4385] = {.lex_state = 267, .external_lex_state = 4}, + [4386] = {.lex_state = 141, .external_lex_state = 4}, [4387] = {.lex_state = 267, .external_lex_state = 4}, - [4388] = {.lex_state = 267, .external_lex_state = 4}, + [4388] = {.lex_state = 141, .external_lex_state = 4}, [4389] = {.lex_state = 267, .external_lex_state = 4}, [4390] = {.lex_state = 267, .external_lex_state = 4}, - [4391] = {.lex_state = 129, .external_lex_state = 4}, - [4392] = {.lex_state = 129, .external_lex_state = 4}, + [4391] = {.lex_state = 267, .external_lex_state = 4}, + [4392] = {.lex_state = 267, .external_lex_state = 4}, [4393] = {.lex_state = 102, .external_lex_state = 4}, [4394] = {.lex_state = 267, .external_lex_state = 4}, - [4395] = {.lex_state = 141, .external_lex_state = 4}, - [4396] = {.lex_state = 141, .external_lex_state = 4}, - [4397] = {.lex_state = 129, .external_lex_state = 4}, - [4398] = {.lex_state = 102, .external_lex_state = 4}, - [4399] = {.lex_state = 102, .external_lex_state = 4}, + [4395] = {.lex_state = 267, .external_lex_state = 4}, + [4396] = {.lex_state = 267, .external_lex_state = 4}, + [4397] = {.lex_state = 267, .external_lex_state = 4}, + [4398] = {.lex_state = 141, .external_lex_state = 4}, + [4399] = {.lex_state = 141, .external_lex_state = 4}, [4400] = {.lex_state = 267, .external_lex_state = 4}, [4401] = {.lex_state = 267, .external_lex_state = 4}, [4402] = {.lex_state = 267, .external_lex_state = 4}, [4403] = {.lex_state = 267, .external_lex_state = 4}, [4404] = {.lex_state = 267, .external_lex_state = 4}, - [4405] = {.lex_state = 129, .external_lex_state = 4}, - [4406] = {.lex_state = 267, .external_lex_state = 4}, - [4407] = {.lex_state = 267, .external_lex_state = 4}, - [4408] = {.lex_state = 267, .external_lex_state = 4}, - [4409] = {.lex_state = 141, .external_lex_state = 4}, - [4410] = {.lex_state = 102, .external_lex_state = 4}, - [4411] = {.lex_state = 267, .external_lex_state = 4}, - [4412] = {.lex_state = 102, .external_lex_state = 4}, - [4413] = {.lex_state = 102, .external_lex_state = 4}, - [4414] = {.lex_state = 102, .external_lex_state = 4}, - [4415] = {.lex_state = 102, .external_lex_state = 4}, - [4416] = {.lex_state = 102, .external_lex_state = 4}, - [4417] = {.lex_state = 102, .external_lex_state = 4}, - [4418] = {.lex_state = 267, .external_lex_state = 4}, + [4405] = {.lex_state = 141, .external_lex_state = 4}, + [4406] = {.lex_state = 141, .external_lex_state = 4}, + [4407] = {.lex_state = 141, .external_lex_state = 4}, + [4408] = {.lex_state = 129, .external_lex_state = 4}, + [4409] = {.lex_state = 267, .external_lex_state = 4}, + [4410] = {.lex_state = 141, .external_lex_state = 4}, + [4411] = {.lex_state = 141, .external_lex_state = 4}, + [4412] = {.lex_state = 267, .external_lex_state = 4}, + [4413] = {.lex_state = 267, .external_lex_state = 4}, + [4414] = {.lex_state = 267, .external_lex_state = 4}, + [4415] = {.lex_state = 141, .external_lex_state = 4}, + [4416] = {.lex_state = 267, .external_lex_state = 4}, + [4417] = {.lex_state = 267, .external_lex_state = 4}, + [4418] = {.lex_state = 129, .external_lex_state = 4}, [4419] = {.lex_state = 129, .external_lex_state = 4}, [4420] = {.lex_state = 129, .external_lex_state = 4}, [4421] = {.lex_state = 129, .external_lex_state = 4}, @@ -28108,11 +28093,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4438] = {.lex_state = 129, .external_lex_state = 4}, [4439] = {.lex_state = 129, .external_lex_state = 4}, [4440] = {.lex_state = 129, .external_lex_state = 4}, - [4441] = {.lex_state = 129, .external_lex_state = 4}, - [4442] = {.lex_state = 267, .external_lex_state = 4}, - [4443] = {.lex_state = 267, .external_lex_state = 4}, + [4441] = {.lex_state = 267, .external_lex_state = 4}, + [4442] = {.lex_state = 129, .external_lex_state = 4}, + [4443] = {.lex_state = 129, .external_lex_state = 4}, [4444] = {.lex_state = 129, .external_lex_state = 4}, - [4445] = {.lex_state = 267, .external_lex_state = 4}, + [4445] = {.lex_state = 129, .external_lex_state = 4}, [4446] = {.lex_state = 129, .external_lex_state = 4}, [4447] = {.lex_state = 129, .external_lex_state = 4}, [4448] = {.lex_state = 129, .external_lex_state = 4}, @@ -28120,7 +28105,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4450] = {.lex_state = 129, .external_lex_state = 4}, [4451] = {.lex_state = 129, .external_lex_state = 4}, [4452] = {.lex_state = 129, .external_lex_state = 4}, - [4453] = {.lex_state = 129, .external_lex_state = 4}, + [4453] = {.lex_state = 102, .external_lex_state = 4}, [4454] = {.lex_state = 129, .external_lex_state = 4}, [4455] = {.lex_state = 129, .external_lex_state = 4}, [4456] = {.lex_state = 267, .external_lex_state = 4}, @@ -28136,8 +28121,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4466] = {.lex_state = 129, .external_lex_state = 4}, [4467] = {.lex_state = 129, .external_lex_state = 4}, [4468] = {.lex_state = 129, .external_lex_state = 4}, - [4469] = {.lex_state = 267, .external_lex_state = 4}, - [4470] = {.lex_state = 129, .external_lex_state = 4}, + [4469] = {.lex_state = 129, .external_lex_state = 4}, + [4470] = {.lex_state = 267, .external_lex_state = 4}, [4471] = {.lex_state = 129, .external_lex_state = 4}, [4472] = {.lex_state = 129, .external_lex_state = 4}, [4473] = {.lex_state = 129, .external_lex_state = 4}, @@ -28155,15 +28140,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4485] = {.lex_state = 129, .external_lex_state = 4}, [4486] = {.lex_state = 129, .external_lex_state = 4}, [4487] = {.lex_state = 129, .external_lex_state = 4}, - [4488] = {.lex_state = 267, .external_lex_state = 4}, - [4489] = {.lex_state = 102, .external_lex_state = 4}, + [4488] = {.lex_state = 129, .external_lex_state = 4}, + [4489] = {.lex_state = 129, .external_lex_state = 4}, [4490] = {.lex_state = 267, .external_lex_state = 4}, [4491] = {.lex_state = 129, .external_lex_state = 4}, - [4492] = {.lex_state = 129, .external_lex_state = 4}, + [4492] = {.lex_state = 267, .external_lex_state = 4}, [4493] = {.lex_state = 129, .external_lex_state = 4}, - [4494] = {.lex_state = 129, .external_lex_state = 4}, + [4494] = {.lex_state = 267, .external_lex_state = 4}, [4495] = {.lex_state = 129, .external_lex_state = 4}, - [4496] = {.lex_state = 102, .external_lex_state = 4}, + [4496] = {.lex_state = 129, .external_lex_state = 4}, [4497] = {.lex_state = 129, .external_lex_state = 4}, [4498] = {.lex_state = 102, .external_lex_state = 4}, [4499] = {.lex_state = 129, .external_lex_state = 4}, @@ -28188,7 +28173,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4518] = {.lex_state = 267, .external_lex_state = 4}, [4519] = {.lex_state = 267, .external_lex_state = 4}, [4520] = {.lex_state = 267, .external_lex_state = 4}, - [4521] = {.lex_state = 129, .external_lex_state = 4}, + [4521] = {.lex_state = 267, .external_lex_state = 4}, [4522] = {.lex_state = 267, .external_lex_state = 4}, [4523] = {.lex_state = 267, .external_lex_state = 4}, [4524] = {.lex_state = 267, .external_lex_state = 4}, @@ -28202,8 +28187,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4532] = {.lex_state = 267, .external_lex_state = 4}, [4533] = {.lex_state = 267, .external_lex_state = 4}, [4534] = {.lex_state = 129, .external_lex_state = 4}, - [4535] = {.lex_state = 129, .external_lex_state = 4}, - [4536] = {.lex_state = 129, .external_lex_state = 4}, + [4535] = {.lex_state = 267, .external_lex_state = 4}, + [4536] = {.lex_state = 102, .external_lex_state = 4}, [4537] = {.lex_state = 129, .external_lex_state = 4}, [4538] = {.lex_state = 129, .external_lex_state = 4}, [4539] = {.lex_state = 129, .external_lex_state = 4}, @@ -28237,12 +28222,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4567] = {.lex_state = 267, .external_lex_state = 4}, [4568] = {.lex_state = 267, .external_lex_state = 4}, [4569] = {.lex_state = 267, .external_lex_state = 4}, - [4570] = {.lex_state = 102, .external_lex_state = 4}, + [4570] = {.lex_state = 267, .external_lex_state = 4}, [4571] = {.lex_state = 267, .external_lex_state = 4}, [4572] = {.lex_state = 267, .external_lex_state = 4}, [4573] = {.lex_state = 267, .external_lex_state = 4}, [4574] = {.lex_state = 267, .external_lex_state = 4}, - [4575] = {.lex_state = 267, .external_lex_state = 4}, + [4575] = {.lex_state = 102, .external_lex_state = 4}, [4576] = {.lex_state = 102, .external_lex_state = 4}, [4577] = {.lex_state = 267, .external_lex_state = 4}, [4578] = {.lex_state = 267, .external_lex_state = 4}, @@ -28419,7 +28404,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4749] = {.lex_state = 102, .external_lex_state = 6}, [4750] = {.lex_state = 102, .external_lex_state = 6}, [4751] = {.lex_state = 102, .external_lex_state = 6}, - [4752] = {.lex_state = 102, .external_lex_state = 6}, + [4752] = {.lex_state = 144, .external_lex_state = 6}, [4753] = {.lex_state = 102, .external_lex_state = 6}, [4754] = {.lex_state = 102, .external_lex_state = 6}, [4755] = {.lex_state = 102, .external_lex_state = 6}, @@ -28427,7 +28412,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4757] = {.lex_state = 102, .external_lex_state = 6}, [4758] = {.lex_state = 102, .external_lex_state = 6}, [4759] = {.lex_state = 102, .external_lex_state = 6}, - [4760] = {.lex_state = 102, .external_lex_state = 6}, + [4760] = {.lex_state = 144, .external_lex_state = 6}, [4761] = {.lex_state = 102, .external_lex_state = 6}, [4762] = {.lex_state = 102, .external_lex_state = 6}, [4763] = {.lex_state = 102, .external_lex_state = 6}, @@ -28442,9 +28427,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4772] = {.lex_state = 102, .external_lex_state = 6}, [4773] = {.lex_state = 102, .external_lex_state = 6}, [4774] = {.lex_state = 102, .external_lex_state = 6}, - [4775] = {.lex_state = 144, .external_lex_state = 6}, + [4775] = {.lex_state = 102, .external_lex_state = 6}, [4776] = {.lex_state = 102, .external_lex_state = 6}, - [4777] = {.lex_state = 144, .external_lex_state = 6}, + [4777] = {.lex_state = 102, .external_lex_state = 6}, [4778] = {.lex_state = 102, .external_lex_state = 6}, [4779] = {.lex_state = 102, .external_lex_state = 6}, [4780] = {.lex_state = 102, .external_lex_state = 6}, @@ -28453,356 +28438,356 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4783] = {.lex_state = 50, .external_lex_state = 6}, [4784] = {.lex_state = 144, .external_lex_state = 6}, [4785] = {.lex_state = 50, .external_lex_state = 6}, - [4786] = {.lex_state = 50, .external_lex_state = 6}, + [4786] = {.lex_state = 144, .external_lex_state = 6}, [4787] = {.lex_state = 50, .external_lex_state = 6}, - [4788] = {.lex_state = 144, .external_lex_state = 6}, + [4788] = {.lex_state = 50, .external_lex_state = 6}, [4789] = {.lex_state = 144, .external_lex_state = 6}, [4790] = {.lex_state = 144, .external_lex_state = 6}, - [4791] = {.lex_state = 144, .external_lex_state = 6}, + [4791] = {.lex_state = 50, .external_lex_state = 6}, [4792] = {.lex_state = 144, .external_lex_state = 6}, - [4793] = {.lex_state = 144, .external_lex_state = 6}, - [4794] = {.lex_state = 50, .external_lex_state = 6}, + [4793] = {.lex_state = 50, .external_lex_state = 6}, + [4794] = {.lex_state = 144, .external_lex_state = 6}, [4795] = {.lex_state = 144, .external_lex_state = 6}, - [4796] = {.lex_state = 144, .external_lex_state = 6}, - [4797] = {.lex_state = 50, .external_lex_state = 6}, + [4796] = {.lex_state = 50, .external_lex_state = 6}, + [4797] = {.lex_state = 144, .external_lex_state = 6}, [4798] = {.lex_state = 50, .external_lex_state = 6}, - [4799] = {.lex_state = 144, .external_lex_state = 6}, + [4799] = {.lex_state = 50, .external_lex_state = 6}, [4800] = {.lex_state = 144, .external_lex_state = 6}, [4801] = {.lex_state = 144, .external_lex_state = 6}, [4802] = {.lex_state = 50, .external_lex_state = 6}, - [4803] = {.lex_state = 50, .external_lex_state = 6}, - [4804] = {.lex_state = 144, .external_lex_state = 6}, + [4803] = {.lex_state = 144, .external_lex_state = 6}, + [4804] = {.lex_state = 50, .external_lex_state = 6}, [4805] = {.lex_state = 50, .external_lex_state = 6}, - [4806] = {.lex_state = 50, .external_lex_state = 6}, + [4806] = {.lex_state = 144, .external_lex_state = 6}, [4807] = {.lex_state = 144, .external_lex_state = 6}, - [4808] = {.lex_state = 50, .external_lex_state = 6}, + [4808] = {.lex_state = 144, .external_lex_state = 6}, [4809] = {.lex_state = 144, .external_lex_state = 6}, - [4810] = {.lex_state = 50, .external_lex_state = 6}, + [4810] = {.lex_state = 144, .external_lex_state = 6}, [4811] = {.lex_state = 144, .external_lex_state = 6}, - [4812] = {.lex_state = 50, .external_lex_state = 6}, - [4813] = {.lex_state = 144, .external_lex_state = 6}, + [4812] = {.lex_state = 144, .external_lex_state = 6}, + [4813] = {.lex_state = 50, .external_lex_state = 6}, [4814] = {.lex_state = 144, .external_lex_state = 6}, - [4815] = {.lex_state = 50, .external_lex_state = 6}, - [4816] = {.lex_state = 144, .external_lex_state = 6}, + [4815] = {.lex_state = 144, .external_lex_state = 6}, + [4816] = {.lex_state = 50, .external_lex_state = 6}, [4817] = {.lex_state = 50, .external_lex_state = 6}, [4818] = {.lex_state = 144, .external_lex_state = 6}, - [4819] = {.lex_state = 144, .external_lex_state = 6}, - [4820] = {.lex_state = 50, .external_lex_state = 6}, - [4821] = {.lex_state = 144, .external_lex_state = 6}, + [4819] = {.lex_state = 50, .external_lex_state = 6}, + [4820] = {.lex_state = 144, .external_lex_state = 6}, + [4821] = {.lex_state = 50, .external_lex_state = 6}, [4822] = {.lex_state = 50, .external_lex_state = 6}, [4823] = {.lex_state = 50, .external_lex_state = 6}, [4824] = {.lex_state = 50, .external_lex_state = 6}, [4825] = {.lex_state = 102, .external_lex_state = 6}, - [4826] = {.lex_state = 51, .external_lex_state = 6}, - [4827] = {.lex_state = 102, .external_lex_state = 6}, + [4826] = {.lex_state = 102, .external_lex_state = 6}, + [4827] = {.lex_state = 51, .external_lex_state = 6}, [4828] = {.lex_state = 102, .external_lex_state = 6}, [4829] = {.lex_state = 62, .external_lex_state = 7}, - [4830] = {.lex_state = 64, .external_lex_state = 8}, - [4831] = {.lex_state = 62, .external_lex_state = 9}, - [4832] = {.lex_state = 64, .external_lex_state = 10}, - [4833] = {.lex_state = 64, .external_lex_state = 8}, - [4834] = {.lex_state = 62, .external_lex_state = 7}, + [4830] = {.lex_state = 62, .external_lex_state = 7}, + [4831] = {.lex_state = 64, .external_lex_state = 8}, + [4832] = {.lex_state = 62, .external_lex_state = 9}, + [4833] = {.lex_state = 62, .external_lex_state = 9}, + [4834] = {.lex_state = 62, .external_lex_state = 10}, [4835] = {.lex_state = 62, .external_lex_state = 9}, - [4836] = {.lex_state = 64, .external_lex_state = 10}, + [4836] = {.lex_state = 64, .external_lex_state = 8}, [4837] = {.lex_state = 64, .external_lex_state = 8}, - [4838] = {.lex_state = 62, .external_lex_state = 7}, - [4839] = {.lex_state = 62, .external_lex_state = 9}, - [4840] = {.lex_state = 64, .external_lex_state = 10}, - [4841] = {.lex_state = 64, .external_lex_state = 8}, - [4842] = {.lex_state = 62, .external_lex_state = 7}, + [4838] = {.lex_state = 64, .external_lex_state = 11}, + [4839] = {.lex_state = 62, .external_lex_state = 7}, + [4840] = {.lex_state = 64, .external_lex_state = 11}, + [4841] = {.lex_state = 62, .external_lex_state = 7}, + [4842] = {.lex_state = 64, .external_lex_state = 8}, [4843] = {.lex_state = 62, .external_lex_state = 9}, - [4844] = {.lex_state = 64, .external_lex_state = 10}, - [4845] = {.lex_state = 64, .external_lex_state = 8}, - [4846] = {.lex_state = 62, .external_lex_state = 7}, + [4844] = {.lex_state = 62, .external_lex_state = 7}, + [4845] = {.lex_state = 62, .external_lex_state = 7}, + [4846] = {.lex_state = 64, .external_lex_state = 8}, [4847] = {.lex_state = 62, .external_lex_state = 9}, - [4848] = {.lex_state = 64, .external_lex_state = 10}, + [4848] = {.lex_state = 64, .external_lex_state = 11}, [4849] = {.lex_state = 64, .external_lex_state = 8}, [4850] = {.lex_state = 62, .external_lex_state = 7}, - [4851] = {.lex_state = 62, .external_lex_state = 9}, - [4852] = {.lex_state = 64, .external_lex_state = 10}, - [4853] = {.lex_state = 64, .external_lex_state = 8}, - [4854] = {.lex_state = 62, .external_lex_state = 7}, - [4855] = {.lex_state = 64, .external_lex_state = 10}, - [4856] = {.lex_state = 64, .external_lex_state = 8}, + [4851] = {.lex_state = 64, .external_lex_state = 8}, + [4852] = {.lex_state = 64, .external_lex_state = 8}, + [4853] = {.lex_state = 62, .external_lex_state = 9}, + [4854] = {.lex_state = 64, .external_lex_state = 11}, + [4855] = {.lex_state = 64, .external_lex_state = 11}, + [4856] = {.lex_state = 64, .external_lex_state = 11}, [4857] = {.lex_state = 62, .external_lex_state = 7}, - [4858] = {.lex_state = 62, .external_lex_state = 9}, - [4859] = {.lex_state = 64, .external_lex_state = 10}, - [4860] = {.lex_state = 64, .external_lex_state = 8}, - [4861] = {.lex_state = 62, .external_lex_state = 7}, - [4862] = {.lex_state = 62, .external_lex_state = 9}, - [4863] = {.lex_state = 64, .external_lex_state = 10}, - [4864] = {.lex_state = 64, .external_lex_state = 8}, - [4865] = {.lex_state = 62, .external_lex_state = 7}, - [4866] = {.lex_state = 62, .external_lex_state = 9}, - [4867] = {.lex_state = 64, .external_lex_state = 10}, - [4868] = {.lex_state = 64, .external_lex_state = 8}, - [4869] = {.lex_state = 62, .external_lex_state = 7}, - [4870] = {.lex_state = 62, .external_lex_state = 9}, - [4871] = {.lex_state = 62, .external_lex_state = 11}, - [4872] = {.lex_state = 62, .external_lex_state = 12}, - [4873] = {.lex_state = 62, .external_lex_state = 13}, - [4874] = {.lex_state = 62, .external_lex_state = 14}, - [4875] = {.lex_state = 62, .external_lex_state = 15}, - [4876] = {.lex_state = 62, .external_lex_state = 16}, - [4877] = {.lex_state = 64, .external_lex_state = 10}, + [4858] = {.lex_state = 62, .external_lex_state = 10}, + [4859] = {.lex_state = 62, .external_lex_state = 12}, + [4860] = {.lex_state = 62, .external_lex_state = 13}, + [4861] = {.lex_state = 62, .external_lex_state = 14}, + [4862] = {.lex_state = 62, .external_lex_state = 15}, + [4863] = {.lex_state = 62, .external_lex_state = 16}, + [4864] = {.lex_state = 62, .external_lex_state = 12}, + [4865] = {.lex_state = 62, .external_lex_state = 10}, + [4866] = {.lex_state = 62, .external_lex_state = 16}, + [4867] = {.lex_state = 62, .external_lex_state = 15}, + [4868] = {.lex_state = 62, .external_lex_state = 14}, + [4869] = {.lex_state = 62, .external_lex_state = 13}, + [4870] = {.lex_state = 62, .external_lex_state = 7}, + [4871] = {.lex_state = 64, .external_lex_state = 11}, + [4872] = {.lex_state = 62, .external_lex_state = 7}, + [4873] = {.lex_state = 64, .external_lex_state = 8}, + [4874] = {.lex_state = 62, .external_lex_state = 9}, + [4875] = {.lex_state = 62, .external_lex_state = 9}, + [4876] = {.lex_state = 64, .external_lex_state = 11}, + [4877] = {.lex_state = 64, .external_lex_state = 8}, [4878] = {.lex_state = 64, .external_lex_state = 8}, - [4879] = {.lex_state = 62, .external_lex_state = 7}, + [4879] = {.lex_state = 62, .external_lex_state = 9}, [4880] = {.lex_state = 62, .external_lex_state = 9}, - [4881] = {.lex_state = 62, .external_lex_state = 11}, - [4882] = {.lex_state = 62, .external_lex_state = 12}, - [4883] = {.lex_state = 62, .external_lex_state = 13}, - [4884] = {.lex_state = 62, .external_lex_state = 14}, - [4885] = {.lex_state = 62, .external_lex_state = 15}, - [4886] = {.lex_state = 62, .external_lex_state = 16}, - [4887] = {.lex_state = 64, .external_lex_state = 10}, + [4881] = {.lex_state = 64, .external_lex_state = 11}, + [4882] = {.lex_state = 62, .external_lex_state = 9}, + [4883] = {.lex_state = 64, .external_lex_state = 11}, + [4884] = {.lex_state = 64, .external_lex_state = 11}, + [4885] = {.lex_state = 62, .external_lex_state = 7}, + [4886] = {.lex_state = 64, .external_lex_state = 8}, + [4887] = {.lex_state = 64, .external_lex_state = 11}, [4888] = {.lex_state = 64, .external_lex_state = 8}, - [4889] = {.lex_state = 62, .external_lex_state = 7}, - [4890] = {.lex_state = 62, .external_lex_state = 9}, - [4891] = {.lex_state = 62, .external_lex_state = 11}, - [4892] = {.lex_state = 62, .external_lex_state = 12}, - [4893] = {.lex_state = 62, .external_lex_state = 13}, - [4894] = {.lex_state = 62, .external_lex_state = 14}, + [4889] = {.lex_state = 64, .external_lex_state = 8}, + [4890] = {.lex_state = 62, .external_lex_state = 13}, + [4891] = {.lex_state = 62, .external_lex_state = 14}, + [4892] = {.lex_state = 62, .external_lex_state = 9}, + [4893] = {.lex_state = 62, .external_lex_state = 10}, + [4894] = {.lex_state = 64, .external_lex_state = 11}, [4895] = {.lex_state = 62, .external_lex_state = 15}, [4896] = {.lex_state = 62, .external_lex_state = 16}, - [4897] = {.lex_state = 64, .external_lex_state = 10}, - [4898] = {.lex_state = 64, .external_lex_state = 8}, - [4899] = {.lex_state = 62, .external_lex_state = 7}, - [4900] = {.lex_state = 62, .external_lex_state = 9}, - [4901] = {.lex_state = 62, .external_lex_state = 11}, - [4902] = {.lex_state = 62, .external_lex_state = 12}, - [4903] = {.lex_state = 62, .external_lex_state = 13}, - [4904] = {.lex_state = 62, .external_lex_state = 14}, - [4905] = {.lex_state = 62, .external_lex_state = 15}, - [4906] = {.lex_state = 62, .external_lex_state = 16}, - [4907] = {.lex_state = 64, .external_lex_state = 10}, + [4897] = {.lex_state = 62, .external_lex_state = 12}, + [4898] = {.lex_state = 62, .external_lex_state = 7}, + [4899] = {.lex_state = 62, .external_lex_state = 12}, + [4900] = {.lex_state = 62, .external_lex_state = 7}, + [4901] = {.lex_state = 62, .external_lex_state = 16}, + [4902] = {.lex_state = 64, .external_lex_state = 8}, + [4903] = {.lex_state = 62, .external_lex_state = 15}, + [4904] = {.lex_state = 62, .external_lex_state = 13}, + [4905] = {.lex_state = 62, .external_lex_state = 10}, + [4906] = {.lex_state = 62, .external_lex_state = 14}, + [4907] = {.lex_state = 62, .external_lex_state = 15}, [4908] = {.lex_state = 62, .external_lex_state = 9}, - [4909] = {.lex_state = 62, .external_lex_state = 7}, - [4910] = {.lex_state = 64, .external_lex_state = 8}, - [4911] = {.lex_state = 64, .external_lex_state = 10}, - [4912] = {.lex_state = 64, .external_lex_state = 8}, - [4913] = {.lex_state = 62, .external_lex_state = 7}, - [4914] = {.lex_state = 62, .external_lex_state = 15}, - [4915] = {.lex_state = 62, .external_lex_state = 9}, - [4916] = {.lex_state = 62, .external_lex_state = 7}, - [4917] = {.lex_state = 62, .external_lex_state = 11}, - [4918] = {.lex_state = 62, .external_lex_state = 12}, - [4919] = {.lex_state = 62, .external_lex_state = 13}, - [4920] = {.lex_state = 62, .external_lex_state = 14}, - [4921] = {.lex_state = 62, .external_lex_state = 15}, - [4922] = {.lex_state = 62, .external_lex_state = 16}, - [4923] = {.lex_state = 64, .external_lex_state = 8}, - [4924] = {.lex_state = 64, .external_lex_state = 10}, + [4909] = {.lex_state = 64, .external_lex_state = 8}, + [4910] = {.lex_state = 62, .external_lex_state = 10}, + [4911] = {.lex_state = 64, .external_lex_state = 11}, + [4912] = {.lex_state = 62, .external_lex_state = 16}, + [4913] = {.lex_state = 62, .external_lex_state = 12}, + [4914] = {.lex_state = 62, .external_lex_state = 12}, + [4915] = {.lex_state = 62, .external_lex_state = 10}, + [4916] = {.lex_state = 62, .external_lex_state = 9}, + [4917] = {.lex_state = 64, .external_lex_state = 11}, + [4918] = {.lex_state = 62, .external_lex_state = 7}, + [4919] = {.lex_state = 62, .external_lex_state = 14}, + [4920] = {.lex_state = 62, .external_lex_state = 13}, + [4921] = {.lex_state = 62, .external_lex_state = 14}, + [4922] = {.lex_state = 62, .external_lex_state = 15}, + [4923] = {.lex_state = 62, .external_lex_state = 16}, + [4924] = {.lex_state = 62, .external_lex_state = 13}, [4925] = {.lex_state = 64, .external_lex_state = 8}, - [4926] = {.lex_state = 64, .external_lex_state = 10}, + [4926] = {.lex_state = 62, .external_lex_state = 12}, [4927] = {.lex_state = 62, .external_lex_state = 9}, - [4928] = {.lex_state = 62, .external_lex_state = 9}, - [4929] = {.lex_state = 62, .external_lex_state = 11}, - [4930] = {.lex_state = 62, .external_lex_state = 12}, - [4931] = {.lex_state = 62, .external_lex_state = 13}, - [4932] = {.lex_state = 62, .external_lex_state = 14}, - [4933] = {.lex_state = 62, .external_lex_state = 15}, - [4934] = {.lex_state = 62, .external_lex_state = 16}, - [4935] = {.lex_state = 62, .external_lex_state = 9}, - [4936] = {.lex_state = 64, .external_lex_state = 10}, - [4937] = {.lex_state = 64, .external_lex_state = 8}, - [4938] = {.lex_state = 62, .external_lex_state = 7}, + [4928] = {.lex_state = 62, .external_lex_state = 10}, + [4929] = {.lex_state = 64, .external_lex_state = 11}, + [4930] = {.lex_state = 62, .external_lex_state = 7}, + [4931] = {.lex_state = 64, .external_lex_state = 8}, + [4932] = {.lex_state = 62, .external_lex_state = 9}, + [4933] = {.lex_state = 62, .external_lex_state = 12}, + [4934] = {.lex_state = 64, .external_lex_state = 11}, + [4935] = {.lex_state = 62, .external_lex_state = 16}, + [4936] = {.lex_state = 62, .external_lex_state = 15}, + [4937] = {.lex_state = 62, .external_lex_state = 7}, + [4938] = {.lex_state = 64, .external_lex_state = 8}, [4939] = {.lex_state = 62, .external_lex_state = 9}, - [4940] = {.lex_state = 64, .external_lex_state = 8}, - [4941] = {.lex_state = 62, .external_lex_state = 11}, - [4942] = {.lex_state = 62, .external_lex_state = 12}, - [4943] = {.lex_state = 62, .external_lex_state = 13}, - [4944] = {.lex_state = 62, .external_lex_state = 14}, - [4945] = {.lex_state = 62, .external_lex_state = 15}, - [4946] = {.lex_state = 64, .external_lex_state = 10}, - [4947] = {.lex_state = 62, .external_lex_state = 16}, + [4940] = {.lex_state = 62, .external_lex_state = 9}, + [4941] = {.lex_state = 62, .external_lex_state = 14}, + [4942] = {.lex_state = 64, .external_lex_state = 11}, + [4943] = {.lex_state = 64, .external_lex_state = 11}, + [4944] = {.lex_state = 62, .external_lex_state = 13}, + [4945] = {.lex_state = 62, .external_lex_state = 7}, + [4946] = {.lex_state = 64, .external_lex_state = 8}, + [4947] = {.lex_state = 64, .external_lex_state = 8}, [4948] = {.lex_state = 62, .external_lex_state = 9}, - [4949] = {.lex_state = 64, .external_lex_state = 10}, + [4949] = {.lex_state = 64, .external_lex_state = 8}, [4950] = {.lex_state = 62, .external_lex_state = 7}, [4951] = {.lex_state = 62, .external_lex_state = 7}, - [4952] = {.lex_state = 62, .external_lex_state = 9}, - [4953] = {.lex_state = 62, .external_lex_state = 16}, - [4954] = {.lex_state = 62, .external_lex_state = 15}, - [4955] = {.lex_state = 62, .external_lex_state = 14}, - [4956] = {.lex_state = 62, .external_lex_state = 13}, - [4957] = {.lex_state = 62, .external_lex_state = 12}, - [4958] = {.lex_state = 62, .external_lex_state = 11}, + [4952] = {.lex_state = 64, .external_lex_state = 8}, + [4953] = {.lex_state = 62, .external_lex_state = 10}, + [4954] = {.lex_state = 62, .external_lex_state = 12}, + [4955] = {.lex_state = 62, .external_lex_state = 16}, + [4956] = {.lex_state = 62, .external_lex_state = 15}, + [4957] = {.lex_state = 62, .external_lex_state = 14}, + [4958] = {.lex_state = 62, .external_lex_state = 13}, [4959] = {.lex_state = 62, .external_lex_state = 7}, - [4960] = {.lex_state = 62, .external_lex_state = 11}, - [4961] = {.lex_state = 62, .external_lex_state = 12}, - [4962] = {.lex_state = 62, .external_lex_state = 13}, - [4963] = {.lex_state = 62, .external_lex_state = 14}, - [4964] = {.lex_state = 62, .external_lex_state = 11}, - [4965] = {.lex_state = 62, .external_lex_state = 12}, - [4966] = {.lex_state = 62, .external_lex_state = 13}, - [4967] = {.lex_state = 62, .external_lex_state = 14}, - [4968] = {.lex_state = 62, .external_lex_state = 15}, - [4969] = {.lex_state = 62, .external_lex_state = 16}, - [4970] = {.lex_state = 62, .external_lex_state = 9}, - [4971] = {.lex_state = 62, .external_lex_state = 16}, - [4972] = {.lex_state = 64, .external_lex_state = 10}, - [4973] = {.lex_state = 64, .external_lex_state = 8}, - [4974] = {.lex_state = 62, .external_lex_state = 7}, + [4960] = {.lex_state = 64, .external_lex_state = 8}, + [4961] = {.lex_state = 62, .external_lex_state = 7}, + [4962] = {.lex_state = 62, .external_lex_state = 12}, + [4963] = {.lex_state = 62, .external_lex_state = 9}, + [4964] = {.lex_state = 62, .external_lex_state = 16}, + [4965] = {.lex_state = 64, .external_lex_state = 11}, + [4966] = {.lex_state = 62, .external_lex_state = 9}, + [4967] = {.lex_state = 62, .external_lex_state = 15}, + [4968] = {.lex_state = 62, .external_lex_state = 14}, + [4969] = {.lex_state = 62, .external_lex_state = 9}, + [4970] = {.lex_state = 64, .external_lex_state = 8}, + [4971] = {.lex_state = 64, .external_lex_state = 8}, + [4972] = {.lex_state = 62, .external_lex_state = 13}, + [4973] = {.lex_state = 64, .external_lex_state = 11}, + [4974] = {.lex_state = 62, .external_lex_state = 13}, [4975] = {.lex_state = 62, .external_lex_state = 9}, - [4976] = {.lex_state = 62, .external_lex_state = 7}, - [4977] = {.lex_state = 62, .external_lex_state = 9}, - [4978] = {.lex_state = 62, .external_lex_state = 15}, + [4976] = {.lex_state = 62, .external_lex_state = 9}, + [4977] = {.lex_state = 64, .external_lex_state = 8}, + [4978] = {.lex_state = 62, .external_lex_state = 9}, [4979] = {.lex_state = 62, .external_lex_state = 7}, - [4980] = {.lex_state = 62, .external_lex_state = 11}, - [4981] = {.lex_state = 62, .external_lex_state = 12}, - [4982] = {.lex_state = 62, .external_lex_state = 13}, - [4983] = {.lex_state = 62, .external_lex_state = 14}, - [4984] = {.lex_state = 62, .external_lex_state = 15}, + [4980] = {.lex_state = 64, .external_lex_state = 11}, + [4981] = {.lex_state = 62, .external_lex_state = 14}, + [4982] = {.lex_state = 62, .external_lex_state = 10}, + [4983] = {.lex_state = 62, .external_lex_state = 12}, + [4984] = {.lex_state = 62, .external_lex_state = 9}, [4985] = {.lex_state = 62, .external_lex_state = 16}, - [4986] = {.lex_state = 62, .external_lex_state = 9}, - [4987] = {.lex_state = 64, .external_lex_state = 10}, - [4988] = {.lex_state = 64, .external_lex_state = 8}, - [4989] = {.lex_state = 62, .external_lex_state = 11}, - [4990] = {.lex_state = 62, .external_lex_state = 7}, - [4991] = {.lex_state = 62, .external_lex_state = 9}, - [4992] = {.lex_state = 64, .external_lex_state = 10}, - [4993] = {.lex_state = 64, .external_lex_state = 8}, - [4994] = {.lex_state = 62, .external_lex_state = 7}, - [4995] = {.lex_state = 62, .external_lex_state = 9}, - [4996] = {.lex_state = 62, .external_lex_state = 7}, - [4997] = {.lex_state = 62, .external_lex_state = 9}, + [4986] = {.lex_state = 62, .external_lex_state = 15}, + [4987] = {.lex_state = 62, .external_lex_state = 14}, + [4988] = {.lex_state = 62, .external_lex_state = 13}, + [4989] = {.lex_state = 62, .external_lex_state = 13}, + [4990] = {.lex_state = 62, .external_lex_state = 13}, + [4991] = {.lex_state = 62, .external_lex_state = 14}, + [4992] = {.lex_state = 62, .external_lex_state = 15}, + [4993] = {.lex_state = 62, .external_lex_state = 16}, + [4994] = {.lex_state = 62, .external_lex_state = 12}, + [4995] = {.lex_state = 62, .external_lex_state = 10}, + [4996] = {.lex_state = 62, .external_lex_state = 15}, + [4997] = {.lex_state = 62, .external_lex_state = 16}, [4998] = {.lex_state = 62, .external_lex_state = 9}, - [4999] = {.lex_state = 62, .external_lex_state = 7}, - [5000] = {.lex_state = 64, .external_lex_state = 8}, - [5001] = {.lex_state = 64, .external_lex_state = 10}, - [5002] = {.lex_state = 62, .external_lex_state = 9}, - [5003] = {.lex_state = 62, .external_lex_state = 11}, - [5004] = {.lex_state = 62, .external_lex_state = 12}, - [5005] = {.lex_state = 62, .external_lex_state = 13}, - [5006] = {.lex_state = 62, .external_lex_state = 14}, - [5007] = {.lex_state = 62, .external_lex_state = 15}, - [5008] = {.lex_state = 62, .external_lex_state = 16}, - [5009] = {.lex_state = 62, .external_lex_state = 7}, - [5010] = {.lex_state = 64, .external_lex_state = 10}, - [5011] = {.lex_state = 64, .external_lex_state = 8}, - [5012] = {.lex_state = 62, .external_lex_state = 7}, + [4999] = {.lex_state = 62, .external_lex_state = 9}, + [5000] = {.lex_state = 62, .external_lex_state = 12}, + [5001] = {.lex_state = 62, .external_lex_state = 10}, + [5002] = {.lex_state = 62, .external_lex_state = 10}, + [5003] = {.lex_state = 62, .external_lex_state = 9}, + [5004] = {.lex_state = 62, .external_lex_state = 13}, + [5005] = {.lex_state = 62, .external_lex_state = 12}, + [5006] = {.lex_state = 62, .external_lex_state = 16}, + [5007] = {.lex_state = 62, .external_lex_state = 14}, + [5008] = {.lex_state = 64, .external_lex_state = 8}, + [5009] = {.lex_state = 62, .external_lex_state = 15}, + [5010] = {.lex_state = 64, .external_lex_state = 11}, + [5011] = {.lex_state = 62, .external_lex_state = 7}, + [5012] = {.lex_state = 64, .external_lex_state = 8}, [5013] = {.lex_state = 62, .external_lex_state = 9}, - [5014] = {.lex_state = 62, .external_lex_state = 11}, - [5015] = {.lex_state = 62, .external_lex_state = 12}, - [5016] = {.lex_state = 62, .external_lex_state = 13}, + [5014] = {.lex_state = 62, .external_lex_state = 7}, + [5015] = {.lex_state = 62, .external_lex_state = 14}, + [5016] = {.lex_state = 62, .external_lex_state = 15}, [5017] = {.lex_state = 62, .external_lex_state = 16}, - [5018] = {.lex_state = 62, .external_lex_state = 15}, - [5019] = {.lex_state = 62, .external_lex_state = 14}, + [5018] = {.lex_state = 64, .external_lex_state = 11}, + [5019] = {.lex_state = 62, .external_lex_state = 12}, [5020] = {.lex_state = 62, .external_lex_state = 13}, - [5021] = {.lex_state = 62, .external_lex_state = 12}, - [5022] = {.lex_state = 62, .external_lex_state = 11}, - [5023] = {.lex_state = 62, .external_lex_state = 11}, - [5024] = {.lex_state = 62, .external_lex_state = 12}, - [5025] = {.lex_state = 62, .external_lex_state = 13}, - [5026] = {.lex_state = 62, .external_lex_state = 14}, - [5027] = {.lex_state = 62, .external_lex_state = 15}, - [5028] = {.lex_state = 62, .external_lex_state = 16}, - [5029] = {.lex_state = 62, .external_lex_state = 12}, - [5030] = {.lex_state = 64, .external_lex_state = 10}, - [5031] = {.lex_state = 64, .external_lex_state = 8}, - [5032] = {.lex_state = 62, .external_lex_state = 13}, - [5033] = {.lex_state = 62, .external_lex_state = 14}, - [5034] = {.lex_state = 62, .external_lex_state = 7}, - [5035] = {.lex_state = 62, .external_lex_state = 14}, - [5036] = {.lex_state = 62, .external_lex_state = 15}, - [5037] = {.lex_state = 64, .external_lex_state = 10}, - [5038] = {.lex_state = 64, .external_lex_state = 8}, - [5039] = {.lex_state = 62, .external_lex_state = 7}, - [5040] = {.lex_state = 62, .external_lex_state = 9}, - [5041] = {.lex_state = 62, .external_lex_state = 16}, - [5042] = {.lex_state = 62, .external_lex_state = 9}, - [5043] = {.lex_state = 62, .external_lex_state = 11}, - [5044] = {.lex_state = 62, .external_lex_state = 12}, - [5045] = {.lex_state = 62, .external_lex_state = 13}, - [5046] = {.lex_state = 62, .external_lex_state = 14}, - [5047] = {.lex_state = 62, .external_lex_state = 15}, - [5048] = {.lex_state = 62, .external_lex_state = 16}, - [5049] = {.lex_state = 62, .external_lex_state = 7}, - [5050] = {.lex_state = 62, .external_lex_state = 9}, - [5051] = {.lex_state = 62, .external_lex_state = 9}, - [5052] = {.lex_state = 64, .external_lex_state = 10}, + [5021] = {.lex_state = 62, .external_lex_state = 10}, + [5022] = {.lex_state = 62, .external_lex_state = 10}, + [5023] = {.lex_state = 62, .external_lex_state = 12}, + [5024] = {.lex_state = 62, .external_lex_state = 16}, + [5025] = {.lex_state = 64, .external_lex_state = 11}, + [5026] = {.lex_state = 62, .external_lex_state = 15}, + [5027] = {.lex_state = 62, .external_lex_state = 14}, + [5028] = {.lex_state = 64, .external_lex_state = 11}, + [5029] = {.lex_state = 62, .external_lex_state = 14}, + [5030] = {.lex_state = 62, .external_lex_state = 13}, + [5031] = {.lex_state = 62, .external_lex_state = 7}, + [5032] = {.lex_state = 62, .external_lex_state = 15}, + [5033] = {.lex_state = 62, .external_lex_state = 16}, + [5034] = {.lex_state = 62, .external_lex_state = 9}, + [5035] = {.lex_state = 62, .external_lex_state = 9}, + [5036] = {.lex_state = 64, .external_lex_state = 8}, + [5037] = {.lex_state = 64, .external_lex_state = 8}, + [5038] = {.lex_state = 62, .external_lex_state = 7}, + [5039] = {.lex_state = 64, .external_lex_state = 11}, + [5040] = {.lex_state = 64, .external_lex_state = 8}, + [5041] = {.lex_state = 62, .external_lex_state = 10}, + [5042] = {.lex_state = 62, .external_lex_state = 13}, + [5043] = {.lex_state = 62, .external_lex_state = 14}, + [5044] = {.lex_state = 62, .external_lex_state = 15}, + [5045] = {.lex_state = 62, .external_lex_state = 16}, + [5046] = {.lex_state = 62, .external_lex_state = 12}, + [5047] = {.lex_state = 62, .external_lex_state = 10}, + [5048] = {.lex_state = 62, .external_lex_state = 12}, + [5049] = {.lex_state = 62, .external_lex_state = 9}, + [5050] = {.lex_state = 62, .external_lex_state = 16}, + [5051] = {.lex_state = 62, .external_lex_state = 15}, + [5052] = {.lex_state = 62, .external_lex_state = 14}, [5053] = {.lex_state = 64, .external_lex_state = 8}, - [5054] = {.lex_state = 62, .external_lex_state = 7}, - [5055] = {.lex_state = 62, .external_lex_state = 7}, - [5056] = {.lex_state = 62, .external_lex_state = 16}, - [5057] = {.lex_state = 62, .external_lex_state = 9}, - [5058] = {.lex_state = 64, .external_lex_state = 10}, - [5059] = {.lex_state = 64, .external_lex_state = 8}, - [5060] = {.lex_state = 62, .external_lex_state = 7}, - [5061] = {.lex_state = 62, .external_lex_state = 16}, + [5054] = {.lex_state = 62, .external_lex_state = 13}, + [5055] = {.lex_state = 62, .external_lex_state = 9}, + [5056] = {.lex_state = 62, .external_lex_state = 10}, + [5057] = {.lex_state = 64, .external_lex_state = 8}, + [5058] = {.lex_state = 62, .external_lex_state = 9}, + [5059] = {.lex_state = 62, .external_lex_state = 7}, + [5060] = {.lex_state = 64, .external_lex_state = 11}, + [5061] = {.lex_state = 62, .external_lex_state = 7}, [5062] = {.lex_state = 62, .external_lex_state = 9}, - [5063] = {.lex_state = 62, .external_lex_state = 7}, - [5064] = {.lex_state = 64, .external_lex_state = 8}, - [5065] = {.lex_state = 64, .external_lex_state = 10}, - [5066] = {.lex_state = 62, .external_lex_state = 15}, - [5067] = {.lex_state = 62, .external_lex_state = 14}, - [5068] = {.lex_state = 62, .external_lex_state = 13}, - [5069] = {.lex_state = 62, .external_lex_state = 12}, - [5070] = {.lex_state = 62, .external_lex_state = 11}, + [5063] = {.lex_state = 64, .external_lex_state = 8}, + [5064] = {.lex_state = 62, .external_lex_state = 7}, + [5065] = {.lex_state = 64, .external_lex_state = 11}, + [5066] = {.lex_state = 64, .external_lex_state = 8}, + [5067] = {.lex_state = 62, .external_lex_state = 9}, + [5068] = {.lex_state = 64, .external_lex_state = 8}, + [5069] = {.lex_state = 62, .external_lex_state = 7}, + [5070] = {.lex_state = 64, .external_lex_state = 11}, [5071] = {.lex_state = 62, .external_lex_state = 6}, [5072] = {.lex_state = 62, .external_lex_state = 6}, [5073] = {.lex_state = 263, .external_lex_state = 6}, - [5074] = {.lex_state = 102, .external_lex_state = 6}, + [5074] = {.lex_state = 62, .external_lex_state = 6}, [5075] = {.lex_state = 62, .external_lex_state = 6}, [5076] = {.lex_state = 62, .external_lex_state = 6}, [5077] = {.lex_state = 64, .external_lex_state = 6}, - [5078] = {.lex_state = 102, .external_lex_state = 6}, - [5079] = {.lex_state = 263, .external_lex_state = 6}, - [5080] = {.lex_state = 263, .external_lex_state = 6}, - [5081] = {.lex_state = 62, .external_lex_state = 6}, - [5082] = {.lex_state = 62, .external_lex_state = 6}, + [5078] = {.lex_state = 64, .external_lex_state = 6}, + [5079] = {.lex_state = 62, .external_lex_state = 6}, + [5080] = {.lex_state = 62, .external_lex_state = 6}, + [5081] = {.lex_state = 64, .external_lex_state = 6}, + [5082] = {.lex_state = 64, .external_lex_state = 6}, [5083] = {.lex_state = 62, .external_lex_state = 6}, [5084] = {.lex_state = 62, .external_lex_state = 6}, [5085] = {.lex_state = 62, .external_lex_state = 6}, [5086] = {.lex_state = 64, .external_lex_state = 6}, - [5087] = {.lex_state = 64, .external_lex_state = 6}, + [5087] = {.lex_state = 62, .external_lex_state = 6}, [5088] = {.lex_state = 64, .external_lex_state = 6}, - [5089] = {.lex_state = 64, .external_lex_state = 6}, - [5090] = {.lex_state = 62, .external_lex_state = 6}, - [5091] = {.lex_state = 62, .external_lex_state = 6}, + [5089] = {.lex_state = 102, .external_lex_state = 6}, + [5090] = {.lex_state = 263, .external_lex_state = 6}, + [5091] = {.lex_state = 64, .external_lex_state = 6}, [5092] = {.lex_state = 62, .external_lex_state = 6}, - [5093] = {.lex_state = 62, .external_lex_state = 6}, - [5094] = {.lex_state = 263, .external_lex_state = 6}, - [5095] = {.lex_state = 64, .external_lex_state = 6}, - [5096] = {.lex_state = 102, .external_lex_state = 6}, + [5093] = {.lex_state = 64, .external_lex_state = 6}, + [5094] = {.lex_state = 62, .external_lex_state = 6}, + [5095] = {.lex_state = 62, .external_lex_state = 6}, + [5096] = {.lex_state = 263, .external_lex_state = 6}, [5097] = {.lex_state = 62, .external_lex_state = 6}, - [5098] = {.lex_state = 62, .external_lex_state = 6}, - [5099] = {.lex_state = 64, .external_lex_state = 6}, - [5100] = {.lex_state = 62, .external_lex_state = 6}, + [5098] = {.lex_state = 263, .external_lex_state = 6}, + [5099] = {.lex_state = 62, .external_lex_state = 6}, + [5100] = {.lex_state = 263, .external_lex_state = 6}, [5101] = {.lex_state = 62, .external_lex_state = 6}, [5102] = {.lex_state = 62, .external_lex_state = 6}, - [5103] = {.lex_state = 263, .external_lex_state = 6}, - [5104] = {.lex_state = 64, .external_lex_state = 6}, - [5105] = {.lex_state = 263, .external_lex_state = 6}, - [5106] = {.lex_state = 263, .external_lex_state = 6}, - [5107] = {.lex_state = 62, .external_lex_state = 6}, + [5103] = {.lex_state = 64, .external_lex_state = 6}, + [5104] = {.lex_state = 62, .external_lex_state = 6}, + [5105] = {.lex_state = 64, .external_lex_state = 6}, + [5106] = {.lex_state = 64, .external_lex_state = 6}, + [5107] = {.lex_state = 64, .external_lex_state = 6}, [5108] = {.lex_state = 62, .external_lex_state = 6}, [5109] = {.lex_state = 62, .external_lex_state = 6}, - [5110] = {.lex_state = 64, .external_lex_state = 6}, - [5111] = {.lex_state = 64, .external_lex_state = 6}, + [5110] = {.lex_state = 62, .external_lex_state = 6}, + [5111] = {.lex_state = 62, .external_lex_state = 6}, [5112] = {.lex_state = 62, .external_lex_state = 6}, - [5113] = {.lex_state = 62, .external_lex_state = 6}, - [5114] = {.lex_state = 64, .external_lex_state = 6}, - [5115] = {.lex_state = 64, .external_lex_state = 6}, - [5116] = {.lex_state = 64, .external_lex_state = 6}, - [5117] = {.lex_state = 64, .external_lex_state = 6}, + [5113] = {.lex_state = 102, .external_lex_state = 6}, + [5114] = {.lex_state = 62, .external_lex_state = 6}, + [5115] = {.lex_state = 62, .external_lex_state = 6}, + [5116] = {.lex_state = 263, .external_lex_state = 6}, + [5117] = {.lex_state = 263, .external_lex_state = 6}, [5118] = {.lex_state = 62, .external_lex_state = 6}, [5119] = {.lex_state = 62, .external_lex_state = 6}, [5120] = {.lex_state = 62, .external_lex_state = 6}, [5121] = {.lex_state = 62, .external_lex_state = 6}, [5122] = {.lex_state = 62, .external_lex_state = 6}, - [5123] = {.lex_state = 64, .external_lex_state = 6}, + [5123] = {.lex_state = 62, .external_lex_state = 6}, [5124] = {.lex_state = 62, .external_lex_state = 6}, [5125] = {.lex_state = 102, .external_lex_state = 6}, [5126] = {.lex_state = 102, .external_lex_state = 6}, [5127] = {.lex_state = 62, .external_lex_state = 6}, - [5128] = {.lex_state = 62, .external_lex_state = 6}, + [5128] = {.lex_state = 64, .external_lex_state = 6}, [5129] = {.lex_state = 62, .external_lex_state = 6}, [5130] = {.lex_state = 62, .external_lex_state = 6}, [5131] = {.lex_state = 62, .external_lex_state = 6}, [5132] = {.lex_state = 62, .external_lex_state = 6}, [5133] = {.lex_state = 62, .external_lex_state = 6}, [5134] = {.lex_state = 62, .external_lex_state = 6}, - [5135] = {.lex_state = 62, .external_lex_state = 6}, + [5135] = {.lex_state = 64, .external_lex_state = 6}, [5136] = {.lex_state = 263, .external_lex_state = 6}, [5137] = {.lex_state = 263, .external_lex_state = 6}, [5138] = {.lex_state = 62, .external_lex_state = 6}, @@ -28819,35 +28804,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5149] = {.lex_state = 62, .external_lex_state = 6}, [5150] = {.lex_state = 62, .external_lex_state = 6}, [5151] = {.lex_state = 62, .external_lex_state = 6}, - [5152] = {.lex_state = 263, .external_lex_state = 6}, + [5152] = {.lex_state = 62, .external_lex_state = 6}, [5153] = {.lex_state = 62, .external_lex_state = 6}, - [5154] = {.lex_state = 263, .external_lex_state = 6}, - [5155] = {.lex_state = 263, .external_lex_state = 6}, + [5154] = {.lex_state = 62, .external_lex_state = 6}, + [5155] = {.lex_state = 62, .external_lex_state = 6}, [5156] = {.lex_state = 62, .external_lex_state = 6}, [5157] = {.lex_state = 62, .external_lex_state = 6}, - [5158] = {.lex_state = 62, .external_lex_state = 6}, - [5159] = {.lex_state = 62, .external_lex_state = 6}, - [5160] = {.lex_state = 62, .external_lex_state = 6}, + [5158] = {.lex_state = 263, .external_lex_state = 6}, + [5159] = {.lex_state = 64, .external_lex_state = 6}, + [5160] = {.lex_state = 64, .external_lex_state = 6}, [5161] = {.lex_state = 102, .external_lex_state = 6}, [5162] = {.lex_state = 62, .external_lex_state = 6}, - [5163] = {.lex_state = 62, .external_lex_state = 6}, - [5164] = {.lex_state = 62, .external_lex_state = 6}, - [5165] = {.lex_state = 62, .external_lex_state = 6}, - [5166] = {.lex_state = 62, .external_lex_state = 6}, - [5167] = {.lex_state = 62, .external_lex_state = 6}, + [5163] = {.lex_state = 263, .external_lex_state = 6}, + [5164] = {.lex_state = 263, .external_lex_state = 6}, + [5165] = {.lex_state = 263, .external_lex_state = 6}, + [5166] = {.lex_state = 263, .external_lex_state = 6}, + [5167] = {.lex_state = 263, .external_lex_state = 6}, [5168] = {.lex_state = 62, .external_lex_state = 6}, - [5169] = {.lex_state = 62, .external_lex_state = 6}, + [5169] = {.lex_state = 263, .external_lex_state = 6}, [5170] = {.lex_state = 64, .external_lex_state = 6}, [5171] = {.lex_state = 102, .external_lex_state = 6}, [5172] = {.lex_state = 62, .external_lex_state = 6}, [5173] = {.lex_state = 62, .external_lex_state = 6}, [5174] = {.lex_state = 62, .external_lex_state = 6}, [5175] = {.lex_state = 62, .external_lex_state = 6}, - [5176] = {.lex_state = 62, .external_lex_state = 6}, - [5177] = {.lex_state = 263, .external_lex_state = 6}, + [5176] = {.lex_state = 102, .external_lex_state = 6}, + [5177] = {.lex_state = 64, .external_lex_state = 6}, [5178] = {.lex_state = 62, .external_lex_state = 6}, [5179] = {.lex_state = 62, .external_lex_state = 6}, - [5180] = {.lex_state = 62, .external_lex_state = 6}, + [5180] = {.lex_state = 64, .external_lex_state = 6}, [5181] = {.lex_state = 62, .external_lex_state = 6}, [5182] = {.lex_state = 62, .external_lex_state = 6}, [5183] = {.lex_state = 62, .external_lex_state = 6}, @@ -28856,56 +28841,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5186] = {.lex_state = 62, .external_lex_state = 6}, [5187] = {.lex_state = 62, .external_lex_state = 6}, [5188] = {.lex_state = 62, .external_lex_state = 6}, - [5189] = {.lex_state = 62, .external_lex_state = 6}, + [5189] = {.lex_state = 263, .external_lex_state = 6}, [5190] = {.lex_state = 64, .external_lex_state = 6}, - [5191] = {.lex_state = 64, .external_lex_state = 6}, - [5192] = {.lex_state = 62, .external_lex_state = 6}, - [5193] = {.lex_state = 62, .external_lex_state = 6}, + [5191] = {.lex_state = 62, .external_lex_state = 6}, + [5192] = {.lex_state = 64, .external_lex_state = 6}, + [5193] = {.lex_state = 64, .external_lex_state = 6}, [5194] = {.lex_state = 62, .external_lex_state = 6}, [5195] = {.lex_state = 62, .external_lex_state = 6}, - [5196] = {.lex_state = 62, .external_lex_state = 6}, + [5196] = {.lex_state = 64, .external_lex_state = 6}, [5197] = {.lex_state = 62, .external_lex_state = 6}, [5198] = {.lex_state = 64, .external_lex_state = 6}, - [5199] = {.lex_state = 102, .external_lex_state = 6}, + [5199] = {.lex_state = 64, .external_lex_state = 6}, [5200] = {.lex_state = 62, .external_lex_state = 6}, [5201] = {.lex_state = 62, .external_lex_state = 6}, [5202] = {.lex_state = 62, .external_lex_state = 6}, - [5203] = {.lex_state = 62, .external_lex_state = 6}, + [5203] = {.lex_state = 263, .external_lex_state = 6}, [5204] = {.lex_state = 62, .external_lex_state = 6}, - [5205] = {.lex_state = 62, .external_lex_state = 6}, - [5206] = {.lex_state = 62, .external_lex_state = 6}, + [5205] = {.lex_state = 64, .external_lex_state = 6}, + [5206] = {.lex_state = 64, .external_lex_state = 6}, [5207] = {.lex_state = 62, .external_lex_state = 6}, - [5208] = {.lex_state = 62, .external_lex_state = 6}, - [5209] = {.lex_state = 62, .external_lex_state = 6}, + [5208] = {.lex_state = 64, .external_lex_state = 6}, + [5209] = {.lex_state = 64, .external_lex_state = 6}, [5210] = {.lex_state = 62, .external_lex_state = 6}, [5211] = {.lex_state = 62, .external_lex_state = 6}, [5212] = {.lex_state = 62, .external_lex_state = 6}, - [5213] = {.lex_state = 62, .external_lex_state = 6}, + [5213] = {.lex_state = 64, .external_lex_state = 6}, [5214] = {.lex_state = 263, .external_lex_state = 6}, [5215] = {.lex_state = 62, .external_lex_state = 6}, - [5216] = {.lex_state = 62, .external_lex_state = 6}, - [5217] = {.lex_state = 62, .external_lex_state = 6}, + [5216] = {.lex_state = 64, .external_lex_state = 6}, + [5217] = {.lex_state = 64, .external_lex_state = 6}, [5218] = {.lex_state = 62, .external_lex_state = 6}, [5219] = {.lex_state = 263, .external_lex_state = 6}, [5220] = {.lex_state = 62, .external_lex_state = 6}, [5221] = {.lex_state = 102, .external_lex_state = 6}, [5222] = {.lex_state = 62, .external_lex_state = 6}, - [5223] = {.lex_state = 62, .external_lex_state = 6}, - [5224] = {.lex_state = 62, .external_lex_state = 6}, - [5225] = {.lex_state = 64, .external_lex_state = 6}, - [5226] = {.lex_state = 64, .external_lex_state = 6}, + [5223] = {.lex_state = 64, .external_lex_state = 6}, + [5224] = {.lex_state = 64, .external_lex_state = 6}, + [5225] = {.lex_state = 62, .external_lex_state = 6}, + [5226] = {.lex_state = 62, .external_lex_state = 6}, [5227] = {.lex_state = 64, .external_lex_state = 6}, [5228] = {.lex_state = 64, .external_lex_state = 6}, [5229] = {.lex_state = 62, .external_lex_state = 6}, [5230] = {.lex_state = 62, .external_lex_state = 6}, - [5231] = {.lex_state = 62, .external_lex_state = 6}, + [5231] = {.lex_state = 64, .external_lex_state = 6}, [5232] = {.lex_state = 62, .external_lex_state = 6}, - [5233] = {.lex_state = 62, .external_lex_state = 6}, - [5234] = {.lex_state = 102, .external_lex_state = 6}, + [5233] = {.lex_state = 64, .external_lex_state = 6}, + [5234] = {.lex_state = 62, .external_lex_state = 6}, [5235] = {.lex_state = 102, .external_lex_state = 6}, [5236] = {.lex_state = 62, .external_lex_state = 6}, [5237] = {.lex_state = 62, .external_lex_state = 6}, - [5238] = {.lex_state = 62, .external_lex_state = 6}, + [5238] = {.lex_state = 64, .external_lex_state = 6}, [5239] = {.lex_state = 62, .external_lex_state = 6}, [5240] = {.lex_state = 62, .external_lex_state = 6}, [5241] = {.lex_state = 62, .external_lex_state = 6}, @@ -28916,45 +28901,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5246] = {.lex_state = 263, .external_lex_state = 6}, [5247] = {.lex_state = 62, .external_lex_state = 6}, [5248] = {.lex_state = 62, .external_lex_state = 6}, - [5249] = {.lex_state = 62, .external_lex_state = 6}, - [5250] = {.lex_state = 64, .external_lex_state = 6}, + [5249] = {.lex_state = 64, .external_lex_state = 6}, + [5250] = {.lex_state = 62, .external_lex_state = 6}, [5251] = {.lex_state = 64, .external_lex_state = 6}, [5252] = {.lex_state = 62, .external_lex_state = 6}, [5253] = {.lex_state = 62, .external_lex_state = 6}, [5254] = {.lex_state = 62, .external_lex_state = 6}, [5255] = {.lex_state = 62, .external_lex_state = 6}, [5256] = {.lex_state = 62, .external_lex_state = 6}, - [5257] = {.lex_state = 62, .external_lex_state = 6}, - [5258] = {.lex_state = 263, .external_lex_state = 6}, + [5257] = {.lex_state = 263, .external_lex_state = 6}, + [5258] = {.lex_state = 62, .external_lex_state = 6}, [5259] = {.lex_state = 62, .external_lex_state = 6}, [5260] = {.lex_state = 62, .external_lex_state = 6}, [5261] = {.lex_state = 62, .external_lex_state = 6}, - [5262] = {.lex_state = 64, .external_lex_state = 6}, - [5263] = {.lex_state = 64, .external_lex_state = 6}, + [5262] = {.lex_state = 62, .external_lex_state = 6}, + [5263] = {.lex_state = 62, .external_lex_state = 6}, [5264] = {.lex_state = 62, .external_lex_state = 6}, [5265] = {.lex_state = 62, .external_lex_state = 6}, [5266] = {.lex_state = 62, .external_lex_state = 6}, [5267] = {.lex_state = 62, .external_lex_state = 6}, [5268] = {.lex_state = 62, .external_lex_state = 6}, [5269] = {.lex_state = 263, .external_lex_state = 6}, - [5270] = {.lex_state = 62, .external_lex_state = 6}, + [5270] = {.lex_state = 263, .external_lex_state = 6}, [5271] = {.lex_state = 102, .external_lex_state = 6}, [5272] = {.lex_state = 102, .external_lex_state = 6}, - [5273] = {.lex_state = 62, .external_lex_state = 6}, + [5273] = {.lex_state = 64, .external_lex_state = 6}, [5274] = {.lex_state = 263, .external_lex_state = 6}, - [5275] = {.lex_state = 62, .external_lex_state = 6}, - [5276] = {.lex_state = 62, .external_lex_state = 6}, - [5277] = {.lex_state = 64, .external_lex_state = 6}, - [5278] = {.lex_state = 62, .external_lex_state = 6}, + [5275] = {.lex_state = 64, .external_lex_state = 6}, + [5276] = {.lex_state = 64, .external_lex_state = 6}, + [5277] = {.lex_state = 62, .external_lex_state = 6}, + [5278] = {.lex_state = 64, .external_lex_state = 6}, [5279] = {.lex_state = 64, .external_lex_state = 6}, [5280] = {.lex_state = 62, .external_lex_state = 6}, [5281] = {.lex_state = 62, .external_lex_state = 6}, - [5282] = {.lex_state = 64, .external_lex_state = 6}, - [5283] = {.lex_state = 64, .external_lex_state = 6}, + [5282] = {.lex_state = 62, .external_lex_state = 6}, + [5283] = {.lex_state = 62, .external_lex_state = 6}, [5284] = {.lex_state = 64, .external_lex_state = 6}, - [5285] = {.lex_state = 64, .external_lex_state = 6}, - [5286] = {.lex_state = 62, .external_lex_state = 6}, - [5287] = {.lex_state = 62, .external_lex_state = 6}, + [5285] = {.lex_state = 62, .external_lex_state = 6}, + [5286] = {.lex_state = 64, .external_lex_state = 6}, + [5287] = {.lex_state = 64, .external_lex_state = 6}, [5288] = {.lex_state = 263, .external_lex_state = 6}, [5289] = {.lex_state = 263, .external_lex_state = 6}, [5290] = {.lex_state = 62, .external_lex_state = 6}, @@ -28971,34 +28956,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5301] = {.lex_state = 62, .external_lex_state = 6}, [5302] = {.lex_state = 62, .external_lex_state = 6}, [5303] = {.lex_state = 62, .external_lex_state = 6}, - [5304] = {.lex_state = 62, .external_lex_state = 6}, - [5305] = {.lex_state = 62, .external_lex_state = 6}, - [5306] = {.lex_state = 62, .external_lex_state = 6}, - [5307] = {.lex_state = 102, .external_lex_state = 6}, - [5308] = {.lex_state = 102, .external_lex_state = 6}, - [5309] = {.lex_state = 64, .external_lex_state = 6}, + [5304] = {.lex_state = 64, .external_lex_state = 6}, + [5305] = {.lex_state = 64, .external_lex_state = 6}, + [5306] = {.lex_state = 64, .external_lex_state = 6}, + [5307] = {.lex_state = 62, .external_lex_state = 6}, + [5308] = {.lex_state = 64, .external_lex_state = 6}, + [5309] = {.lex_state = 62, .external_lex_state = 6}, [5310] = {.lex_state = 64, .external_lex_state = 6}, - [5311] = {.lex_state = 62, .external_lex_state = 6}, + [5311] = {.lex_state = 64, .external_lex_state = 6}, [5312] = {.lex_state = 62, .external_lex_state = 6}, - [5313] = {.lex_state = 64, .external_lex_state = 6}, + [5313] = {.lex_state = 62, .external_lex_state = 6}, [5314] = {.lex_state = 64, .external_lex_state = 6}, [5315] = {.lex_state = 64, .external_lex_state = 6}, - [5316] = {.lex_state = 64, .external_lex_state = 6}, + [5316] = {.lex_state = 62, .external_lex_state = 6}, [5317] = {.lex_state = 62, .external_lex_state = 6}, - [5318] = {.lex_state = 62, .external_lex_state = 6}, - [5319] = {.lex_state = 62, .external_lex_state = 6}, + [5318] = {.lex_state = 102, .external_lex_state = 6}, + [5319] = {.lex_state = 64, .external_lex_state = 6}, [5320] = {.lex_state = 62, .external_lex_state = 6}, - [5321] = {.lex_state = 263, .external_lex_state = 6}, + [5321] = {.lex_state = 64, .external_lex_state = 6}, [5322] = {.lex_state = 62, .external_lex_state = 6}, [5323] = {.lex_state = 102, .external_lex_state = 6}, - [5324] = {.lex_state = 62, .external_lex_state = 6}, - [5325] = {.lex_state = 62, .external_lex_state = 6}, + [5324] = {.lex_state = 64, .external_lex_state = 6}, + [5325] = {.lex_state = 64, .external_lex_state = 6}, [5326] = {.lex_state = 62, .external_lex_state = 6}, - [5327] = {.lex_state = 62, .external_lex_state = 6}, - [5328] = {.lex_state = 62, .external_lex_state = 6}, + [5327] = {.lex_state = 102, .external_lex_state = 6}, + [5328] = {.lex_state = 102, .external_lex_state = 6}, [5329] = {.lex_state = 62, .external_lex_state = 6}, [5330] = {.lex_state = 62, .external_lex_state = 6}, - [5331] = {.lex_state = 62, .external_lex_state = 6}, + [5331] = {.lex_state = 64, .external_lex_state = 6}, [5332] = {.lex_state = 62, .external_lex_state = 6}, [5333] = {.lex_state = 62, .external_lex_state = 6}, [5334] = {.lex_state = 62, .external_lex_state = 6}, @@ -29006,99 +28991,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5336] = {.lex_state = 62, .external_lex_state = 6}, [5337] = {.lex_state = 62, .external_lex_state = 6}, [5338] = {.lex_state = 62, .external_lex_state = 6}, - [5339] = {.lex_state = 102, .external_lex_state = 6}, - [5340] = {.lex_state = 64, .external_lex_state = 6}, - [5341] = {.lex_state = 64, .external_lex_state = 6}, - [5342] = {.lex_state = 62, .external_lex_state = 6}, - [5343] = {.lex_state = 62, .external_lex_state = 6}, - [5344] = {.lex_state = 64, .external_lex_state = 6}, + [5339] = {.lex_state = 64, .external_lex_state = 6}, + [5340] = {.lex_state = 62, .external_lex_state = 6}, + [5341] = {.lex_state = 62, .external_lex_state = 6}, + [5342] = {.lex_state = 263, .external_lex_state = 6}, + [5343] = {.lex_state = 64, .external_lex_state = 6}, + [5344] = {.lex_state = 62, .external_lex_state = 6}, [5345] = {.lex_state = 64, .external_lex_state = 6}, - [5346] = {.lex_state = 64, .external_lex_state = 6}, + [5346] = {.lex_state = 62, .external_lex_state = 6}, [5347] = {.lex_state = 64, .external_lex_state = 6}, - [5348] = {.lex_state = 62, .external_lex_state = 6}, + [5348] = {.lex_state = 64, .external_lex_state = 6}, [5349] = {.lex_state = 62, .external_lex_state = 6}, [5350] = {.lex_state = 62, .external_lex_state = 6}, - [5351] = {.lex_state = 263, .external_lex_state = 6}, - [5352] = {.lex_state = 263, .external_lex_state = 6}, - [5353] = {.lex_state = 62, .external_lex_state = 6}, - [5354] = {.lex_state = 263, .external_lex_state = 6}, - [5355] = {.lex_state = 62, .external_lex_state = 6}, + [5351] = {.lex_state = 62, .external_lex_state = 6}, + [5352] = {.lex_state = 62, .external_lex_state = 6}, + [5353] = {.lex_state = 263, .external_lex_state = 6}, + [5354] = {.lex_state = 62, .external_lex_state = 6}, + [5355] = {.lex_state = 64, .external_lex_state = 6}, [5356] = {.lex_state = 62, .external_lex_state = 6}, - [5357] = {.lex_state = 62, .external_lex_state = 6}, + [5357] = {.lex_state = 64, .external_lex_state = 6}, [5358] = {.lex_state = 62, .external_lex_state = 6}, [5359] = {.lex_state = 62, .external_lex_state = 6}, - [5360] = {.lex_state = 62, .external_lex_state = 6}, - [5361] = {.lex_state = 64, .external_lex_state = 6}, - [5362] = {.lex_state = 62, .external_lex_state = 6}, - [5363] = {.lex_state = 62, .external_lex_state = 6}, - [5364] = {.lex_state = 62, .external_lex_state = 6}, - [5365] = {.lex_state = 64, .external_lex_state = 6}, + [5360] = {.lex_state = 64, .external_lex_state = 6}, + [5361] = {.lex_state = 62, .external_lex_state = 6}, + [5362] = {.lex_state = 263, .external_lex_state = 6}, + [5363] = {.lex_state = 263, .external_lex_state = 6}, + [5364] = {.lex_state = 263, .external_lex_state = 6}, + [5365] = {.lex_state = 62, .external_lex_state = 6}, [5366] = {.lex_state = 62, .external_lex_state = 6}, - [5367] = {.lex_state = 62, .external_lex_state = 6}, + [5367] = {.lex_state = 64, .external_lex_state = 6}, [5368] = {.lex_state = 64, .external_lex_state = 6}, - [5369] = {.lex_state = 64, .external_lex_state = 6}, - [5370] = {.lex_state = 64, .external_lex_state = 6}, + [5369] = {.lex_state = 102, .external_lex_state = 6}, + [5370] = {.lex_state = 102, .external_lex_state = 6}, [5371] = {.lex_state = 263, .external_lex_state = 6}, [5372] = {.lex_state = 62, .external_lex_state = 6}, - [5373] = {.lex_state = 64, .external_lex_state = 6}, + [5373] = {.lex_state = 62, .external_lex_state = 6}, [5374] = {.lex_state = 62, .external_lex_state = 6}, - [5375] = {.lex_state = 62, .external_lex_state = 6}, - [5376] = {.lex_state = 62, .external_lex_state = 6}, - [5377] = {.lex_state = 64, .external_lex_state = 6}, - [5378] = {.lex_state = 64, .external_lex_state = 6}, + [5375] = {.lex_state = 64, .external_lex_state = 6}, + [5376] = {.lex_state = 64, .external_lex_state = 6}, + [5377] = {.lex_state = 62, .external_lex_state = 6}, + [5378] = {.lex_state = 62, .external_lex_state = 6}, [5379] = {.lex_state = 64, .external_lex_state = 6}, [5380] = {.lex_state = 64, .external_lex_state = 6}, [5381] = {.lex_state = 62, .external_lex_state = 6}, - [5382] = {.lex_state = 62, .external_lex_state = 6}, - [5383] = {.lex_state = 62, .external_lex_state = 6}, - [5384] = {.lex_state = 102, .external_lex_state = 6}, - [5385] = {.lex_state = 62, .external_lex_state = 6}, - [5386] = {.lex_state = 102, .external_lex_state = 6}, + [5382] = {.lex_state = 263, .external_lex_state = 6}, + [5383] = {.lex_state = 263, .external_lex_state = 6}, + [5384] = {.lex_state = 64, .external_lex_state = 6}, + [5385] = {.lex_state = 64, .external_lex_state = 6}, + [5386] = {.lex_state = 64, .external_lex_state = 6}, [5387] = {.lex_state = 102, .external_lex_state = 6}, - [5388] = {.lex_state = 62, .external_lex_state = 6}, - [5389] = {.lex_state = 64, .external_lex_state = 6}, - [5390] = {.lex_state = 64, .external_lex_state = 6}, + [5388] = {.lex_state = 64, .external_lex_state = 6}, + [5389] = {.lex_state = 62, .external_lex_state = 6}, + [5390] = {.lex_state = 62, .external_lex_state = 6}, [5391] = {.lex_state = 62, .external_lex_state = 6}, - [5392] = {.lex_state = 62, .external_lex_state = 6}, + [5392] = {.lex_state = 64, .external_lex_state = 6}, [5393] = {.lex_state = 263, .external_lex_state = 6}, - [5394] = {.lex_state = 62, .external_lex_state = 6}, + [5394] = {.lex_state = 64, .external_lex_state = 6}, [5395] = {.lex_state = 263, .external_lex_state = 6}, [5396] = {.lex_state = 62, .external_lex_state = 6}, [5397] = {.lex_state = 263, .external_lex_state = 6}, [5398] = {.lex_state = 62, .external_lex_state = 6}, [5399] = {.lex_state = 62, .external_lex_state = 6}, - [5400] = {.lex_state = 62, .external_lex_state = 6}, - [5401] = {.lex_state = 64, .external_lex_state = 6}, + [5400] = {.lex_state = 64, .external_lex_state = 6}, + [5401] = {.lex_state = 62, .external_lex_state = 6}, [5402] = {.lex_state = 64, .external_lex_state = 6}, - [5403] = {.lex_state = 62, .external_lex_state = 6}, - [5404] = {.lex_state = 62, .external_lex_state = 6}, + [5403] = {.lex_state = 263, .external_lex_state = 6}, + [5404] = {.lex_state = 64, .external_lex_state = 6}, [5405] = {.lex_state = 62, .external_lex_state = 6}, [5406] = {.lex_state = 64, .external_lex_state = 6}, - [5407] = {.lex_state = 102, .external_lex_state = 6}, + [5407] = {.lex_state = 62, .external_lex_state = 6}, [5408] = {.lex_state = 64, .external_lex_state = 6}, - [5409] = {.lex_state = 62, .external_lex_state = 6}, + [5409] = {.lex_state = 64, .external_lex_state = 6}, [5410] = {.lex_state = 62, .external_lex_state = 6}, [5411] = {.lex_state = 62, .external_lex_state = 6}, - [5412] = {.lex_state = 62, .external_lex_state = 6}, - [5413] = {.lex_state = 62, .external_lex_state = 6}, + [5412] = {.lex_state = 64, .external_lex_state = 6}, + [5413] = {.lex_state = 64, .external_lex_state = 6}, [5414] = {.lex_state = 62, .external_lex_state = 6}, - [5415] = {.lex_state = 102, .external_lex_state = 6}, - [5416] = {.lex_state = 64, .external_lex_state = 6}, - [5417] = {.lex_state = 64, .external_lex_state = 6}, - [5418] = {.lex_state = 62, .external_lex_state = 6}, - [5419] = {.lex_state = 64, .external_lex_state = 6}, + [5415] = {.lex_state = 62, .external_lex_state = 6}, + [5416] = {.lex_state = 62, .external_lex_state = 6}, + [5417] = {.lex_state = 62, .external_lex_state = 6}, + [5418] = {.lex_state = 102, .external_lex_state = 6}, + [5419] = {.lex_state = 62, .external_lex_state = 6}, [5420] = {.lex_state = 64, .external_lex_state = 6}, - [5421] = {.lex_state = 62, .external_lex_state = 6}, + [5421] = {.lex_state = 102, .external_lex_state = 6}, [5422] = {.lex_state = 102, .external_lex_state = 6}, [5423] = {.lex_state = 102, .external_lex_state = 6}, [5424] = {.lex_state = 62, .external_lex_state = 6}, - [5425] = {.lex_state = 64, .external_lex_state = 6}, + [5425] = {.lex_state = 263, .external_lex_state = 6}, [5426] = {.lex_state = 64, .external_lex_state = 6}, - [5427] = {.lex_state = 64, .external_lex_state = 6}, - [5428] = {.lex_state = 64, .external_lex_state = 6}, + [5427] = {.lex_state = 62, .external_lex_state = 6}, + [5428] = {.lex_state = 62, .external_lex_state = 6}, [5429] = {.lex_state = 263, .external_lex_state = 6}, - [5430] = {.lex_state = 62, .external_lex_state = 6}, - [5431] = {.lex_state = 62, .external_lex_state = 6}, + [5430] = {.lex_state = 64, .external_lex_state = 6}, + [5431] = {.lex_state = 64, .external_lex_state = 6}, [5432] = {.lex_state = 263, .external_lex_state = 6}, [5433] = {.lex_state = 263, .external_lex_state = 6}, [5434] = {.lex_state = 62, .external_lex_state = 6}, @@ -29116,34 +29101,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5446] = {.lex_state = 62, .external_lex_state = 6}, [5447] = {.lex_state = 62, .external_lex_state = 6}, [5448] = {.lex_state = 64, .external_lex_state = 6}, - [5449] = {.lex_state = 64, .external_lex_state = 6}, + [5449] = {.lex_state = 62, .external_lex_state = 6}, [5450] = {.lex_state = 64, .external_lex_state = 6}, - [5451] = {.lex_state = 62, .external_lex_state = 6}, + [5451] = {.lex_state = 64, .external_lex_state = 6}, [5452] = {.lex_state = 62, .external_lex_state = 6}, [5453] = {.lex_state = 64, .external_lex_state = 6}, - [5454] = {.lex_state = 64, .external_lex_state = 6}, + [5454] = {.lex_state = 62, .external_lex_state = 6}, [5455] = {.lex_state = 64, .external_lex_state = 6}, [5456] = {.lex_state = 64, .external_lex_state = 6}, [5457] = {.lex_state = 62, .external_lex_state = 6}, [5458] = {.lex_state = 62, .external_lex_state = 6}, - [5459] = {.lex_state = 62, .external_lex_state = 6}, - [5460] = {.lex_state = 62, .external_lex_state = 6}, - [5461] = {.lex_state = 263, .external_lex_state = 6}, - [5462] = {.lex_state = 263, .external_lex_state = 6}, + [5459] = {.lex_state = 64, .external_lex_state = 6}, + [5460] = {.lex_state = 64, .external_lex_state = 6}, + [5461] = {.lex_state = 62, .external_lex_state = 6}, + [5462] = {.lex_state = 62, .external_lex_state = 6}, [5463] = {.lex_state = 62, .external_lex_state = 6}, [5464] = {.lex_state = 62, .external_lex_state = 6}, - [5465] = {.lex_state = 64, .external_lex_state = 6}, + [5465] = {.lex_state = 62, .external_lex_state = 6}, [5466] = {.lex_state = 64, .external_lex_state = 6}, [5467] = {.lex_state = 102, .external_lex_state = 6}, - [5468] = {.lex_state = 62, .external_lex_state = 6}, + [5468] = {.lex_state = 64, .external_lex_state = 6}, [5469] = {.lex_state = 62, .external_lex_state = 6}, - [5470] = {.lex_state = 64, .external_lex_state = 6}, + [5470] = {.lex_state = 62, .external_lex_state = 6}, [5471] = {.lex_state = 64, .external_lex_state = 6}, - [5472] = {.lex_state = 64, .external_lex_state = 6}, + [5472] = {.lex_state = 62, .external_lex_state = 6}, [5473] = {.lex_state = 64, .external_lex_state = 6}, - [5474] = {.lex_state = 62, .external_lex_state = 6}, - [5475] = {.lex_state = 64, .external_lex_state = 6}, - [5476] = {.lex_state = 64, .external_lex_state = 6}, + [5474] = {.lex_state = 64, .external_lex_state = 6}, + [5475] = {.lex_state = 62, .external_lex_state = 6}, + [5476] = {.lex_state = 62, .external_lex_state = 6}, [5477] = {.lex_state = 62, .external_lex_state = 6}, [5478] = {.lex_state = 62, .external_lex_state = 6}, [5479] = {.lex_state = 62, .external_lex_state = 6}, @@ -29151,98 +29136,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5481] = {.lex_state = 62, .external_lex_state = 6}, [5482] = {.lex_state = 62, .external_lex_state = 6}, [5483] = {.lex_state = 62, .external_lex_state = 6}, - [5484] = {.lex_state = 62, .external_lex_state = 6}, - [5485] = {.lex_state = 62, .external_lex_state = 6}, + [5484] = {.lex_state = 64, .external_lex_state = 6}, + [5485] = {.lex_state = 64, .external_lex_state = 6}, [5486] = {.lex_state = 62, .external_lex_state = 6}, [5487] = {.lex_state = 62, .external_lex_state = 6}, - [5488] = {.lex_state = 62, .external_lex_state = 6}, + [5488] = {.lex_state = 64, .external_lex_state = 6}, [5489] = {.lex_state = 62, .external_lex_state = 6}, - [5490] = {.lex_state = 64, .external_lex_state = 6}, + [5490] = {.lex_state = 62, .external_lex_state = 6}, [5491] = {.lex_state = 64, .external_lex_state = 6}, - [5492] = {.lex_state = 62, .external_lex_state = 6}, + [5492] = {.lex_state = 64, .external_lex_state = 6}, [5493] = {.lex_state = 62, .external_lex_state = 6}, [5494] = {.lex_state = 62, .external_lex_state = 6}, - [5495] = {.lex_state = 263, .external_lex_state = 6}, + [5495] = {.lex_state = 62, .external_lex_state = 6}, [5496] = {.lex_state = 62, .external_lex_state = 6}, - [5497] = {.lex_state = 263, .external_lex_state = 6}, + [5497] = {.lex_state = 62, .external_lex_state = 6}, [5498] = {.lex_state = 64, .external_lex_state = 6}, - [5499] = {.lex_state = 263, .external_lex_state = 6}, - [5500] = {.lex_state = 263, .external_lex_state = 6}, - [5501] = {.lex_state = 64, .external_lex_state = 6}, + [5499] = {.lex_state = 102, .external_lex_state = 6}, + [5500] = {.lex_state = 62, .external_lex_state = 6}, + [5501] = {.lex_state = 62, .external_lex_state = 6}, [5502] = {.lex_state = 62, .external_lex_state = 6}, [5503] = {.lex_state = 64, .external_lex_state = 6}, - [5504] = {.lex_state = 64, .external_lex_state = 6}, - [5505] = {.lex_state = 64, .external_lex_state = 6}, - [5506] = {.lex_state = 62, .external_lex_state = 6}, - [5507] = {.lex_state = 62, .external_lex_state = 6}, + [5504] = {.lex_state = 102, .external_lex_state = 6}, + [5505] = {.lex_state = 62, .external_lex_state = 6}, + [5506] = {.lex_state = 64, .external_lex_state = 6}, + [5507] = {.lex_state = 64, .external_lex_state = 6}, [5508] = {.lex_state = 62, .external_lex_state = 6}, [5509] = {.lex_state = 62, .external_lex_state = 6}, - [5510] = {.lex_state = 62, .external_lex_state = 6}, - [5511] = {.lex_state = 62, .external_lex_state = 6}, + [5510] = {.lex_state = 64, .external_lex_state = 6}, + [5511] = {.lex_state = 64, .external_lex_state = 6}, [5512] = {.lex_state = 62, .external_lex_state = 6}, - [5513] = {.lex_state = 102, .external_lex_state = 6}, - [5514] = {.lex_state = 263, .external_lex_state = 6}, + [5513] = {.lex_state = 62, .external_lex_state = 6}, + [5514] = {.lex_state = 62, .external_lex_state = 6}, [5515] = {.lex_state = 263, .external_lex_state = 6}, [5516] = {.lex_state = 62, .external_lex_state = 6}, - [5517] = {.lex_state = 102, .external_lex_state = 6}, + [5517] = {.lex_state = 62, .external_lex_state = 6}, [5518] = {.lex_state = 62, .external_lex_state = 6}, - [5519] = {.lex_state = 62, .external_lex_state = 6}, - [5520] = {.lex_state = 62, .external_lex_state = 6}, - [5521] = {.lex_state = 64, .external_lex_state = 6}, - [5522] = {.lex_state = 64, .external_lex_state = 6}, + [5519] = {.lex_state = 64, .external_lex_state = 6}, + [5520] = {.lex_state = 64, .external_lex_state = 6}, + [5521] = {.lex_state = 62, .external_lex_state = 6}, + [5522] = {.lex_state = 62, .external_lex_state = 6}, [5523] = {.lex_state = 64, .external_lex_state = 6}, [5524] = {.lex_state = 64, .external_lex_state = 6}, - [5525] = {.lex_state = 64, .external_lex_state = 6}, + [5525] = {.lex_state = 102, .external_lex_state = 6}, [5526] = {.lex_state = 64, .external_lex_state = 6}, [5527] = {.lex_state = 62, .external_lex_state = 6}, - [5528] = {.lex_state = 62, .external_lex_state = 6}, - [5529] = {.lex_state = 64, .external_lex_state = 6}, + [5528] = {.lex_state = 64, .external_lex_state = 6}, + [5529] = {.lex_state = 62, .external_lex_state = 6}, [5530] = {.lex_state = 64, .external_lex_state = 6}, [5531] = {.lex_state = 102, .external_lex_state = 6}, [5532] = {.lex_state = 64, .external_lex_state = 6}, - [5533] = {.lex_state = 64, .external_lex_state = 6}, - [5534] = {.lex_state = 64, .external_lex_state = 6}, + [5533] = {.lex_state = 62, .external_lex_state = 6}, + [5534] = {.lex_state = 62, .external_lex_state = 6}, [5535] = {.lex_state = 64, .external_lex_state = 6}, - [5536] = {.lex_state = 62, .external_lex_state = 6}, + [5536] = {.lex_state = 64, .external_lex_state = 6}, [5537] = {.lex_state = 263, .external_lex_state = 6}, [5538] = {.lex_state = 62, .external_lex_state = 6}, [5539] = {.lex_state = 263, .external_lex_state = 6}, - [5540] = {.lex_state = 64, .external_lex_state = 6}, + [5540] = {.lex_state = 62, .external_lex_state = 6}, [5541] = {.lex_state = 263, .external_lex_state = 6}, [5542] = {.lex_state = 62, .external_lex_state = 6}, - [5543] = {.lex_state = 62, .external_lex_state = 6}, - [5544] = {.lex_state = 62, .external_lex_state = 6}, - [5545] = {.lex_state = 64, .external_lex_state = 6}, + [5543] = {.lex_state = 102, .external_lex_state = 6}, + [5544] = {.lex_state = 64, .external_lex_state = 6}, + [5545] = {.lex_state = 62, .external_lex_state = 6}, [5546] = {.lex_state = 64, .external_lex_state = 6}, [5547] = {.lex_state = 64, .external_lex_state = 6}, [5548] = {.lex_state = 62, .external_lex_state = 6}, - [5549] = {.lex_state = 62, .external_lex_state = 6}, + [5549] = {.lex_state = 64, .external_lex_state = 6}, [5550] = {.lex_state = 62, .external_lex_state = 6}, [5551] = {.lex_state = 62, .external_lex_state = 6}, - [5552] = {.lex_state = 62, .external_lex_state = 6}, + [5552] = {.lex_state = 64, .external_lex_state = 6}, [5553] = {.lex_state = 62, .external_lex_state = 6}, [5554] = {.lex_state = 62, .external_lex_state = 6}, - [5555] = {.lex_state = 62, .external_lex_state = 6}, + [5555] = {.lex_state = 64, .external_lex_state = 6}, [5556] = {.lex_state = 62, .external_lex_state = 6}, - [5557] = {.lex_state = 62, .external_lex_state = 6}, - [5558] = {.lex_state = 62, .external_lex_state = 6}, - [5559] = {.lex_state = 62, .external_lex_state = 6}, - [5560] = {.lex_state = 64, .external_lex_state = 6}, - [5561] = {.lex_state = 263, .external_lex_state = 6}, - [5562] = {.lex_state = 263, .external_lex_state = 6}, - [5563] = {.lex_state = 62, .external_lex_state = 6}, + [5557] = {.lex_state = 64, .external_lex_state = 6}, + [5558] = {.lex_state = 102, .external_lex_state = 6}, + [5559] = {.lex_state = 64, .external_lex_state = 6}, + [5560] = {.lex_state = 62, .external_lex_state = 6}, + [5561] = {.lex_state = 102, .external_lex_state = 6}, + [5562] = {.lex_state = 62, .external_lex_state = 6}, + [5563] = {.lex_state = 64, .external_lex_state = 6}, [5564] = {.lex_state = 62, .external_lex_state = 6}, - [5565] = {.lex_state = 263, .external_lex_state = 6}, + [5565] = {.lex_state = 62, .external_lex_state = 6}, [5566] = {.lex_state = 102, .external_lex_state = 6}, [5567] = {.lex_state = 102, .external_lex_state = 6}, - [5568] = {.lex_state = 62, .external_lex_state = 6}, - [5569] = {.lex_state = 62, .external_lex_state = 6}, - [5570] = {.lex_state = 263, .external_lex_state = 6}, + [5568] = {.lex_state = 64, .external_lex_state = 6}, + [5569] = {.lex_state = 64, .external_lex_state = 6}, + [5570] = {.lex_state = 62, .external_lex_state = 6}, [5571] = {.lex_state = 62, .external_lex_state = 6}, [5572] = {.lex_state = 62, .external_lex_state = 6}, - [5573] = {.lex_state = 64, .external_lex_state = 6}, - [5574] = {.lex_state = 64, .external_lex_state = 6}, - [5575] = {.lex_state = 62, .external_lex_state = 6}, + [5573] = {.lex_state = 62, .external_lex_state = 6}, + [5574] = {.lex_state = 62, .external_lex_state = 6}, + [5575] = {.lex_state = 64, .external_lex_state = 6}, [5576] = {.lex_state = 263, .external_lex_state = 6}, [5577] = {.lex_state = 263, .external_lex_state = 6}, [5578] = {.lex_state = 62, .external_lex_state = 6}, @@ -29259,30 +29244,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5589] = {.lex_state = 62, .external_lex_state = 6}, [5590] = {.lex_state = 62, .external_lex_state = 6}, [5591] = {.lex_state = 64, .external_lex_state = 6}, - [5592] = {.lex_state = 64, .external_lex_state = 6}, + [5592] = {.lex_state = 62, .external_lex_state = 6}, [5593] = {.lex_state = 64, .external_lex_state = 6}, [5594] = {.lex_state = 64, .external_lex_state = 6}, [5595] = {.lex_state = 62, .external_lex_state = 6}, [5596] = {.lex_state = 62, .external_lex_state = 6}, - [5597] = {.lex_state = 62, .external_lex_state = 6}, - [5598] = {.lex_state = 62, .external_lex_state = 6}, - [5599] = {.lex_state = 64, .external_lex_state = 6}, - [5600] = {.lex_state = 64, .external_lex_state = 6}, - [5601] = {.lex_state = 62, .external_lex_state = 6}, - [5602] = {.lex_state = 62, .external_lex_state = 6}, + [5597] = {.lex_state = 64, .external_lex_state = 6}, + [5598] = {.lex_state = 64, .external_lex_state = 6}, + [5599] = {.lex_state = 62, .external_lex_state = 6}, + [5600] = {.lex_state = 62, .external_lex_state = 6}, + [5601] = {.lex_state = 102, .external_lex_state = 6}, + [5602] = {.lex_state = 263, .external_lex_state = 6}, [5603] = {.lex_state = 64, .external_lex_state = 6}, - [5604] = {.lex_state = 64, .external_lex_state = 6}, + [5604] = {.lex_state = 62, .external_lex_state = 6}, [5605] = {.lex_state = 64, .external_lex_state = 6}, - [5606] = {.lex_state = 64, .external_lex_state = 6}, - [5607] = {.lex_state = 62, .external_lex_state = 6}, - [5608] = {.lex_state = 62, .external_lex_state = 6}, + [5606] = {.lex_state = 62, .external_lex_state = 6}, + [5607] = {.lex_state = 64, .external_lex_state = 6}, + [5608] = {.lex_state = 64, .external_lex_state = 6}, [5609] = {.lex_state = 62, .external_lex_state = 6}, [5610] = {.lex_state = 62, .external_lex_state = 6}, [5611] = {.lex_state = 102, .external_lex_state = 6}, [5612] = {.lex_state = 64, .external_lex_state = 6}, - [5613] = {.lex_state = 64, .external_lex_state = 6}, - [5614] = {.lex_state = 263, .external_lex_state = 6}, - [5615] = {.lex_state = 62, .external_lex_state = 6}, + [5613] = {.lex_state = 62, .external_lex_state = 6}, + [5614] = {.lex_state = 62, .external_lex_state = 6}, + [5615] = {.lex_state = 64, .external_lex_state = 6}, [5616] = {.lex_state = 62, .external_lex_state = 6}, [5617] = {.lex_state = 62, .external_lex_state = 6}, [5618] = {.lex_state = 62, .external_lex_state = 6}, @@ -29294,51 +29279,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5624] = {.lex_state = 62, .external_lex_state = 6}, [5625] = {.lex_state = 62, .external_lex_state = 6}, [5626] = {.lex_state = 62, .external_lex_state = 6}, - [5627] = {.lex_state = 64, .external_lex_state = 6}, - [5628] = {.lex_state = 64, .external_lex_state = 6}, - [5629] = {.lex_state = 64, .external_lex_state = 6}, - [5630] = {.lex_state = 64, .external_lex_state = 6}, + [5627] = {.lex_state = 263, .external_lex_state = 6}, + [5628] = {.lex_state = 263, .external_lex_state = 6}, + [5629] = {.lex_state = 62, .external_lex_state = 6}, + [5630] = {.lex_state = 263, .external_lex_state = 6}, [5631] = {.lex_state = 62, .external_lex_state = 6}, - [5632] = {.lex_state = 62, .external_lex_state = 6}, + [5632] = {.lex_state = 64, .external_lex_state = 6}, [5633] = {.lex_state = 62, .external_lex_state = 6}, - [5634] = {.lex_state = 62, .external_lex_state = 6}, - [5635] = {.lex_state = 102, .external_lex_state = 6}, - [5636] = {.lex_state = 62, .external_lex_state = 6}, - [5637] = {.lex_state = 62, .external_lex_state = 6}, - [5638] = {.lex_state = 102, .external_lex_state = 6}, + [5634] = {.lex_state = 64, .external_lex_state = 6}, + [5635] = {.lex_state = 62, .external_lex_state = 6}, + [5636] = {.lex_state = 64, .external_lex_state = 6}, + [5637] = {.lex_state = 64, .external_lex_state = 6}, + [5638] = {.lex_state = 62, .external_lex_state = 6}, [5639] = {.lex_state = 62, .external_lex_state = 6}, [5640] = {.lex_state = 62, .external_lex_state = 6}, [5641] = {.lex_state = 62, .external_lex_state = 6}, - [5642] = {.lex_state = 62, .external_lex_state = 6}, - [5643] = {.lex_state = 62, .external_lex_state = 6}, + [5642] = {.lex_state = 263, .external_lex_state = 6}, + [5643] = {.lex_state = 263, .external_lex_state = 6}, [5644] = {.lex_state = 102, .external_lex_state = 6}, [5645] = {.lex_state = 62, .external_lex_state = 6}, - [5646] = {.lex_state = 64, .external_lex_state = 6}, + [5646] = {.lex_state = 62, .external_lex_state = 6}, [5647] = {.lex_state = 62, .external_lex_state = 6}, - [5648] = {.lex_state = 62, .external_lex_state = 6}, - [5649] = {.lex_state = 62, .external_lex_state = 6}, + [5648] = {.lex_state = 64, .external_lex_state = 6}, + [5649] = {.lex_state = 64, .external_lex_state = 6}, [5650] = {.lex_state = 62, .external_lex_state = 6}, [5651] = {.lex_state = 62, .external_lex_state = 6}, [5652] = {.lex_state = 62, .external_lex_state = 6}, [5653] = {.lex_state = 62, .external_lex_state = 6}, [5654] = {.lex_state = 62, .external_lex_state = 6}, [5655] = {.lex_state = 62, .external_lex_state = 6}, - [5656] = {.lex_state = 64, .external_lex_state = 6}, - [5657] = {.lex_state = 62, .external_lex_state = 6}, - [5658] = {.lex_state = 263, .external_lex_state = 6}, + [5656] = {.lex_state = 62, .external_lex_state = 6}, + [5657] = {.lex_state = 102, .external_lex_state = 6}, + [5658] = {.lex_state = 102, .external_lex_state = 6}, [5659] = {.lex_state = 263, .external_lex_state = 6}, [5660] = {.lex_state = 62, .external_lex_state = 6}, - [5661] = {.lex_state = 263, .external_lex_state = 6}, + [5661] = {.lex_state = 62, .external_lex_state = 6}, [5662] = {.lex_state = 62, .external_lex_state = 6}, - [5663] = {.lex_state = 62, .external_lex_state = 6}, - [5664] = {.lex_state = 62, .external_lex_state = 6}, - [5665] = {.lex_state = 64, .external_lex_state = 6}, - [5666] = {.lex_state = 64, .external_lex_state = 6}, + [5663] = {.lex_state = 64, .external_lex_state = 6}, + [5664] = {.lex_state = 64, .external_lex_state = 6}, + [5665] = {.lex_state = 62, .external_lex_state = 6}, + [5666] = {.lex_state = 62, .external_lex_state = 6}, [5667] = {.lex_state = 64, .external_lex_state = 6}, [5668] = {.lex_state = 64, .external_lex_state = 6}, [5669] = {.lex_state = 62, .external_lex_state = 6}, [5670] = {.lex_state = 62, .external_lex_state = 6}, - [5671] = {.lex_state = 102, .external_lex_state = 6}, + [5671] = {.lex_state = 62, .external_lex_state = 6}, [5672] = {.lex_state = 62, .external_lex_state = 6}, [5673] = {.lex_state = 62, .external_lex_state = 6}, [5674] = {.lex_state = 62, .external_lex_state = 6}, @@ -29346,47 +29331,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5676] = {.lex_state = 62, .external_lex_state = 6}, [5677] = {.lex_state = 62, .external_lex_state = 6}, [5678] = {.lex_state = 62, .external_lex_state = 6}, - [5679] = {.lex_state = 263, .external_lex_state = 6}, - [5680] = {.lex_state = 64, .external_lex_state = 6}, + [5679] = {.lex_state = 62, .external_lex_state = 6}, + [5680] = {.lex_state = 62, .external_lex_state = 6}, [5681] = {.lex_state = 263, .external_lex_state = 6}, - [5682] = {.lex_state = 64, .external_lex_state = 6}, + [5682] = {.lex_state = 62, .external_lex_state = 6}, [5683] = {.lex_state = 263, .external_lex_state = 6}, [5684] = {.lex_state = 62, .external_lex_state = 6}, [5685] = {.lex_state = 263, .external_lex_state = 6}, [5686] = {.lex_state = 62, .external_lex_state = 6}, [5687] = {.lex_state = 62, .external_lex_state = 6}, - [5688] = {.lex_state = 62, .external_lex_state = 6}, - [5689] = {.lex_state = 64, .external_lex_state = 6}, + [5688] = {.lex_state = 64, .external_lex_state = 6}, + [5689] = {.lex_state = 62, .external_lex_state = 6}, [5690] = {.lex_state = 64, .external_lex_state = 6}, [5691] = {.lex_state = 62, .external_lex_state = 6}, - [5692] = {.lex_state = 64, .external_lex_state = 6}, + [5692] = {.lex_state = 263, .external_lex_state = 6}, [5693] = {.lex_state = 64, .external_lex_state = 6}, [5694] = {.lex_state = 62, .external_lex_state = 6}, - [5695] = {.lex_state = 62, .external_lex_state = 6}, + [5695] = {.lex_state = 64, .external_lex_state = 6}, [5696] = {.lex_state = 62, .external_lex_state = 6}, [5697] = {.lex_state = 62, .external_lex_state = 6}, [5698] = {.lex_state = 62, .external_lex_state = 6}, [5699] = {.lex_state = 62, .external_lex_state = 6}, [5700] = {.lex_state = 62, .external_lex_state = 6}, - [5701] = {.lex_state = 263, .external_lex_state = 6}, - [5702] = {.lex_state = 102, .external_lex_state = 6}, + [5701] = {.lex_state = 62, .external_lex_state = 6}, + [5702] = {.lex_state = 62, .external_lex_state = 6}, [5703] = {.lex_state = 62, .external_lex_state = 6}, - [5704] = {.lex_state = 64, .external_lex_state = 6}, - [5705] = {.lex_state = 102, .external_lex_state = 6}, + [5704] = {.lex_state = 62, .external_lex_state = 6}, + [5705] = {.lex_state = 62, .external_lex_state = 6}, [5706] = {.lex_state = 62, .external_lex_state = 6}, [5707] = {.lex_state = 62, .external_lex_state = 6}, [5708] = {.lex_state = 62, .external_lex_state = 6}, - [5709] = {.lex_state = 64, .external_lex_state = 6}, + [5709] = {.lex_state = 62, .external_lex_state = 6}, [5710] = {.lex_state = 102, .external_lex_state = 6}, [5711] = {.lex_state = 102, .external_lex_state = 6}, [5712] = {.lex_state = 263, .external_lex_state = 6}, - [5713] = {.lex_state = 62, .external_lex_state = 6}, + [5713] = {.lex_state = 263, .external_lex_state = 6}, [5714] = {.lex_state = 62, .external_lex_state = 6}, [5715] = {.lex_state = 62, .external_lex_state = 6}, - [5716] = {.lex_state = 64, .external_lex_state = 6}, - [5717] = {.lex_state = 64, .external_lex_state = 6}, - [5718] = {.lex_state = 64, .external_lex_state = 6}, - [5719] = {.lex_state = 64, .external_lex_state = 6}, + [5716] = {.lex_state = 62, .external_lex_state = 6}, + [5717] = {.lex_state = 62, .external_lex_state = 6}, + [5718] = {.lex_state = 62, .external_lex_state = 6}, + [5719] = {.lex_state = 102, .external_lex_state = 6}, [5720] = {.lex_state = 263, .external_lex_state = 6}, [5721] = {.lex_state = 263, .external_lex_state = 6}, [5722] = {.lex_state = 62, .external_lex_state = 6}, @@ -29403,13 +29388,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5733] = {.lex_state = 62, .external_lex_state = 6}, [5734] = {.lex_state = 62, .external_lex_state = 6}, [5735] = {.lex_state = 62, .external_lex_state = 6}, - [5736] = {.lex_state = 102, .external_lex_state = 6}, - [5737] = {.lex_state = 102, .external_lex_state = 6}, - [5738] = {.lex_state = 263, .external_lex_state = 6}, - [5739] = {.lex_state = 64, .external_lex_state = 6}, - [5740] = {.lex_state = 64, .external_lex_state = 6}, - [5741] = {.lex_state = 64, .external_lex_state = 6}, - [5742] = {.lex_state = 64, .external_lex_state = 6}, + [5736] = {.lex_state = 62, .external_lex_state = 6}, + [5737] = {.lex_state = 62, .external_lex_state = 6}, + [5738] = {.lex_state = 62, .external_lex_state = 6}, + [5739] = {.lex_state = 62, .external_lex_state = 6}, + [5740] = {.lex_state = 263, .external_lex_state = 6}, + [5741] = {.lex_state = 263, .external_lex_state = 6}, + [5742] = {.lex_state = 263, .external_lex_state = 6}, [5743] = {.lex_state = 62, .external_lex_state = 6}, [5744] = {.lex_state = 62, .external_lex_state = 6}, [5745] = {.lex_state = 62, .external_lex_state = 6}, @@ -29421,15 +29406,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5751] = {.lex_state = 62, .external_lex_state = 6}, [5752] = {.lex_state = 62, .external_lex_state = 6}, [5753] = {.lex_state = 62, .external_lex_state = 6}, - [5754] = {.lex_state = 62, .external_lex_state = 6}, + [5754] = {.lex_state = 64, .external_lex_state = 6}, [5755] = {.lex_state = 102, .external_lex_state = 6}, - [5756] = {.lex_state = 64, .external_lex_state = 6}, - [5757] = {.lex_state = 62, .external_lex_state = 6}, + [5756] = {.lex_state = 62, .external_lex_state = 6}, + [5757] = {.lex_state = 64, .external_lex_state = 6}, [5758] = {.lex_state = 62, .external_lex_state = 6}, - [5759] = {.lex_state = 62, .external_lex_state = 6}, - [5760] = {.lex_state = 62, .external_lex_state = 6}, - [5761] = {.lex_state = 102, .external_lex_state = 6}, - [5762] = {.lex_state = 62, .external_lex_state = 6}, + [5759] = {.lex_state = 64, .external_lex_state = 6}, + [5760] = {.lex_state = 64, .external_lex_state = 6}, + [5761] = {.lex_state = 64, .external_lex_state = 6}, + [5762] = {.lex_state = 64, .external_lex_state = 6}, [5763] = {.lex_state = 62, .external_lex_state = 6}, [5764] = {.lex_state = 62, .external_lex_state = 6}, [5765] = {.lex_state = 62, .external_lex_state = 6}, @@ -29439,8 +29424,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5769] = {.lex_state = 62, .external_lex_state = 6}, [5770] = {.lex_state = 62, .external_lex_state = 6}, [5771] = {.lex_state = 62, .external_lex_state = 6}, - [5772] = {.lex_state = 62, .external_lex_state = 6}, - [5773] = {.lex_state = 62, .external_lex_state = 6}, + [5772] = {.lex_state = 64, .external_lex_state = 6}, + [5773] = {.lex_state = 64, .external_lex_state = 6}, [5774] = {.lex_state = 62, .external_lex_state = 6}, [5775] = {.lex_state = 62, .external_lex_state = 6}, [5776] = {.lex_state = 62, .external_lex_state = 6}, @@ -29450,41 +29435,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5780] = {.lex_state = 62, .external_lex_state = 6}, [5781] = {.lex_state = 263, .external_lex_state = 6}, [5782] = {.lex_state = 62, .external_lex_state = 6}, - [5783] = {.lex_state = 62, .external_lex_state = 6}, - [5784] = {.lex_state = 263, .external_lex_state = 6}, + [5783] = {.lex_state = 64, .external_lex_state = 6}, + [5784] = {.lex_state = 64, .external_lex_state = 6}, [5785] = {.lex_state = 62, .external_lex_state = 6}, [5786] = {.lex_state = 62, .external_lex_state = 6}, [5787] = {.lex_state = 62, .external_lex_state = 6}, [5788] = {.lex_state = 263, .external_lex_state = 6}, [5789] = {.lex_state = 62, .external_lex_state = 6}, - [5790] = {.lex_state = 62, .external_lex_state = 6}, + [5790] = {.lex_state = 102, .external_lex_state = 6}, [5791] = {.lex_state = 62, .external_lex_state = 6}, - [5792] = {.lex_state = 64, .external_lex_state = 6}, - [5793] = {.lex_state = 62, .external_lex_state = 6}, - [5794] = {.lex_state = 62, .external_lex_state = 6}, - [5795] = {.lex_state = 102, .external_lex_state = 6}, + [5792] = {.lex_state = 102, .external_lex_state = 6}, + [5793] = {.lex_state = 102, .external_lex_state = 6}, + [5794] = {.lex_state = 102, .external_lex_state = 6}, + [5795] = {.lex_state = 263, .external_lex_state = 6}, [5796] = {.lex_state = 64, .external_lex_state = 6}, [5797] = {.lex_state = 62, .external_lex_state = 6}, [5798] = {.lex_state = 62, .external_lex_state = 6}, [5799] = {.lex_state = 62, .external_lex_state = 6}, [5800] = {.lex_state = 64, .external_lex_state = 6}, [5801] = {.lex_state = 62, .external_lex_state = 6}, - [5802] = {.lex_state = 64, .external_lex_state = 6}, + [5802] = {.lex_state = 62, .external_lex_state = 6}, [5803] = {.lex_state = 263, .external_lex_state = 6}, [5804] = {.lex_state = 62, .external_lex_state = 6}, [5805] = {.lex_state = 62, .external_lex_state = 6}, - [5806] = {.lex_state = 62, .external_lex_state = 6}, - [5807] = {.lex_state = 62, .external_lex_state = 6}, - [5808] = {.lex_state = 64, .external_lex_state = 6}, - [5809] = {.lex_state = 64, .external_lex_state = 6}, + [5806] = {.lex_state = 64, .external_lex_state = 6}, + [5807] = {.lex_state = 64, .external_lex_state = 6}, + [5808] = {.lex_state = 62, .external_lex_state = 6}, + [5809] = {.lex_state = 62, .external_lex_state = 6}, [5810] = {.lex_state = 64, .external_lex_state = 6}, [5811] = {.lex_state = 64, .external_lex_state = 6}, [5812] = {.lex_state = 62, .external_lex_state = 6}, [5813] = {.lex_state = 62, .external_lex_state = 6}, - [5814] = {.lex_state = 64, .external_lex_state = 6}, + [5814] = {.lex_state = 62, .external_lex_state = 6}, [5815] = {.lex_state = 62, .external_lex_state = 6}, - [5816] = {.lex_state = 64, .external_lex_state = 6}, - [5817] = {.lex_state = 64, .external_lex_state = 6}, + [5816] = {.lex_state = 62, .external_lex_state = 6}, + [5817] = {.lex_state = 62, .external_lex_state = 6}, [5818] = {.lex_state = 102, .external_lex_state = 6}, [5819] = {.lex_state = 62, .external_lex_state = 6}, [5820] = {.lex_state = 62, .external_lex_state = 6}, @@ -29492,42 +29477,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5822] = {.lex_state = 62, .external_lex_state = 6}, [5823] = {.lex_state = 62, .external_lex_state = 6}, [5824] = {.lex_state = 263, .external_lex_state = 6}, - [5825] = {.lex_state = 64, .external_lex_state = 6}, + [5825] = {.lex_state = 62, .external_lex_state = 6}, [5826] = {.lex_state = 263, .external_lex_state = 6}, [5827] = {.lex_state = 62, .external_lex_state = 6}, [5828] = {.lex_state = 263, .external_lex_state = 6}, [5829] = {.lex_state = 62, .external_lex_state = 6}, - [5830] = {.lex_state = 62, .external_lex_state = 6}, - [5831] = {.lex_state = 64, .external_lex_state = 6}, + [5830] = {.lex_state = 64, .external_lex_state = 6}, + [5831] = {.lex_state = 62, .external_lex_state = 6}, [5832] = {.lex_state = 64, .external_lex_state = 6}, [5833] = {.lex_state = 62, .external_lex_state = 6}, [5834] = {.lex_state = 62, .external_lex_state = 6}, - [5835] = {.lex_state = 263, .external_lex_state = 6}, - [5836] = {.lex_state = 263, .external_lex_state = 6}, + [5835] = {.lex_state = 62, .external_lex_state = 6}, + [5836] = {.lex_state = 62, .external_lex_state = 6}, [5837] = {.lex_state = 62, .external_lex_state = 6}, [5838] = {.lex_state = 62, .external_lex_state = 6}, [5839] = {.lex_state = 62, .external_lex_state = 6}, - [5840] = {.lex_state = 62, .external_lex_state = 6}, - [5841] = {.lex_state = 64, .external_lex_state = 6}, - [5842] = {.lex_state = 102, .external_lex_state = 6}, - [5843] = {.lex_state = 102, .external_lex_state = 6}, - [5844] = {.lex_state = 102, .external_lex_state = 6}, + [5840] = {.lex_state = 64, .external_lex_state = 6}, + [5841] = {.lex_state = 62, .external_lex_state = 6}, + [5842] = {.lex_state = 64, .external_lex_state = 6}, + [5843] = {.lex_state = 62, .external_lex_state = 6}, + [5844] = {.lex_state = 263, .external_lex_state = 6}, [5845] = {.lex_state = 62, .external_lex_state = 6}, - [5846] = {.lex_state = 62, .external_lex_state = 6}, - [5847] = {.lex_state = 62, .external_lex_state = 6}, - [5848] = {.lex_state = 62, .external_lex_state = 6}, - [5849] = {.lex_state = 62, .external_lex_state = 6}, - [5850] = {.lex_state = 62, .external_lex_state = 6}, + [5846] = {.lex_state = 263, .external_lex_state = 6}, + [5847] = {.lex_state = 102, .external_lex_state = 6}, + [5848] = {.lex_state = 263, .external_lex_state = 6}, + [5849] = {.lex_state = 263, .external_lex_state = 6}, + [5850] = {.lex_state = 64, .external_lex_state = 6}, [5851] = {.lex_state = 62, .external_lex_state = 6}, [5852] = {.lex_state = 102, .external_lex_state = 6}, [5853] = {.lex_state = 102, .external_lex_state = 6}, - [5854] = {.lex_state = 102, .external_lex_state = 6}, - [5855] = {.lex_state = 263, .external_lex_state = 6}, - [5856] = {.lex_state = 263, .external_lex_state = 6}, - [5857] = {.lex_state = 263, .external_lex_state = 6}, - [5858] = {.lex_state = 62, .external_lex_state = 6}, - [5859] = {.lex_state = 64, .external_lex_state = 6}, - [5860] = {.lex_state = 64, .external_lex_state = 6}, + [5854] = {.lex_state = 62, .external_lex_state = 6}, + [5855] = {.lex_state = 62, .external_lex_state = 6}, + [5856] = {.lex_state = 62, .external_lex_state = 6}, + [5857] = {.lex_state = 62, .external_lex_state = 6}, + [5858] = {.lex_state = 102, .external_lex_state = 6}, + [5859] = {.lex_state = 263, .external_lex_state = 6}, + [5860] = {.lex_state = 62, .external_lex_state = 6}, [5861] = {.lex_state = 263, .external_lex_state = 6}, [5862] = {.lex_state = 263, .external_lex_state = 6}, [5863] = {.lex_state = 62, .external_lex_state = 6}, @@ -29543,20 +29528,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5873] = {.lex_state = 62, .external_lex_state = 6}, [5874] = {.lex_state = 62, .external_lex_state = 6}, [5875] = {.lex_state = 64, .external_lex_state = 6}, - [5876] = {.lex_state = 64, .external_lex_state = 6}, - [5877] = {.lex_state = 62, .external_lex_state = 6}, + [5876] = {.lex_state = 62, .external_lex_state = 6}, + [5877] = {.lex_state = 64, .external_lex_state = 6}, [5878] = {.lex_state = 62, .external_lex_state = 6}, - [5879] = {.lex_state = 62, .external_lex_state = 6}, - [5880] = {.lex_state = 62, .external_lex_state = 6}, - [5881] = {.lex_state = 263, .external_lex_state = 6}, + [5879] = {.lex_state = 64, .external_lex_state = 6}, + [5880] = {.lex_state = 64, .external_lex_state = 6}, + [5881] = {.lex_state = 62, .external_lex_state = 6}, [5882] = {.lex_state = 62, .external_lex_state = 6}, - [5883] = {.lex_state = 62, .external_lex_state = 6}, - [5884] = {.lex_state = 62, .external_lex_state = 6}, + [5883] = {.lex_state = 64, .external_lex_state = 6}, + [5884] = {.lex_state = 64, .external_lex_state = 6}, [5885] = {.lex_state = 62, .external_lex_state = 6}, [5886] = {.lex_state = 62, .external_lex_state = 6}, [5887] = {.lex_state = 62, .external_lex_state = 6}, - [5888] = {.lex_state = 62, .external_lex_state = 6}, - [5889] = {.lex_state = 62, .external_lex_state = 6}, + [5888] = {.lex_state = 102, .external_lex_state = 6}, + [5889] = {.lex_state = 102, .external_lex_state = 6}, [5890] = {.lex_state = 62, .external_lex_state = 6}, [5891] = {.lex_state = 62, .external_lex_state = 6}, [5892] = {.lex_state = 62, .external_lex_state = 6}, @@ -29564,12 +29549,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5894] = {.lex_state = 62, .external_lex_state = 6}, [5895] = {.lex_state = 62, .external_lex_state = 6}, [5896] = {.lex_state = 102, .external_lex_state = 6}, - [5897] = {.lex_state = 64, .external_lex_state = 6}, - [5898] = {.lex_state = 64, .external_lex_state = 6}, + [5897] = {.lex_state = 62, .external_lex_state = 6}, + [5898] = {.lex_state = 62, .external_lex_state = 6}, [5899] = {.lex_state = 62, .external_lex_state = 6}, - [5900] = {.lex_state = 62, .external_lex_state = 6}, + [5900] = {.lex_state = 64, .external_lex_state = 6}, [5901] = {.lex_state = 62, .external_lex_state = 6}, - [5902] = {.lex_state = 263, .external_lex_state = 6}, + [5902] = {.lex_state = 62, .external_lex_state = 6}, [5903] = {.lex_state = 62, .external_lex_state = 6}, [5904] = {.lex_state = 62, .external_lex_state = 6}, [5905] = {.lex_state = 62, .external_lex_state = 6}, @@ -29584,263 +29569,263 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5914] = {.lex_state = 62, .external_lex_state = 6}, [5915] = {.lex_state = 62, .external_lex_state = 6}, [5916] = {.lex_state = 62, .external_lex_state = 6}, - [5917] = {.lex_state = 263, .external_lex_state = 6}, - [5918] = {.lex_state = 102, .external_lex_state = 6}, - [5919] = {.lex_state = 263, .external_lex_state = 6}, - [5920] = {.lex_state = 64, .external_lex_state = 6}, - [5921] = {.lex_state = 64, .external_lex_state = 6}, + [5917] = {.lex_state = 62, .external_lex_state = 6}, + [5918] = {.lex_state = 62, .external_lex_state = 6}, + [5919] = {.lex_state = 102, .external_lex_state = 6}, + [5920] = {.lex_state = 62, .external_lex_state = 6}, + [5921] = {.lex_state = 62, .external_lex_state = 6}, [5922] = {.lex_state = 64, .external_lex_state = 6}, - [5923] = {.lex_state = 263, .external_lex_state = 6}, - [5924] = {.lex_state = 64, .external_lex_state = 6}, - [5925] = {.lex_state = 102, .external_lex_state = 6}, - [5926] = {.lex_state = 62, .external_lex_state = 6}, - [5927] = {.lex_state = 62, .external_lex_state = 6}, + [5923] = {.lex_state = 64, .external_lex_state = 6}, + [5924] = {.lex_state = 62, .external_lex_state = 6}, + [5925] = {.lex_state = 62, .external_lex_state = 6}, + [5926] = {.lex_state = 64, .external_lex_state = 6}, + [5927] = {.lex_state = 64, .external_lex_state = 6}, [5928] = {.lex_state = 62, .external_lex_state = 6}, [5929] = {.lex_state = 62, .external_lex_state = 6}, [5930] = {.lex_state = 62, .external_lex_state = 6}, - [5931] = {.lex_state = 62, .external_lex_state = 6}, - [5932] = {.lex_state = 64, .external_lex_state = 6}, - [5933] = {.lex_state = 64, .external_lex_state = 6}, + [5931] = {.lex_state = 64, .external_lex_state = 6}, + [5932] = {.lex_state = 62, .external_lex_state = 6}, + [5933] = {.lex_state = 62, .external_lex_state = 6}, [5934] = {.lex_state = 62, .external_lex_state = 6}, - [5935] = {.lex_state = 64, .external_lex_state = 6}, + [5935] = {.lex_state = 62, .external_lex_state = 6}, [5936] = {.lex_state = 64, .external_lex_state = 6}, - [5937] = {.lex_state = 64, .external_lex_state = 6}, + [5937] = {.lex_state = 62, .external_lex_state = 6}, [5938] = {.lex_state = 64, .external_lex_state = 6}, - [5939] = {.lex_state = 64, .external_lex_state = 6}, + [5939] = {.lex_state = 62, .external_lex_state = 6}, [5940] = {.lex_state = 64, .external_lex_state = 6}, - [5941] = {.lex_state = 62, .external_lex_state = 6}, + [5941] = {.lex_state = 64, .external_lex_state = 6}, [5942] = {.lex_state = 263, .external_lex_state = 6}, [5943] = {.lex_state = 62, .external_lex_state = 6}, [5944] = {.lex_state = 62, .external_lex_state = 6}, - [5945] = {.lex_state = 62, .external_lex_state = 6}, + [5945] = {.lex_state = 64, .external_lex_state = 6}, [5946] = {.lex_state = 65, .external_lex_state = 17}, - [5947] = {.lex_state = 65, .external_lex_state = 18}, - [5948] = {.lex_state = 63, .external_lex_state = 19}, - [5949] = {.lex_state = 63, .external_lex_state = 20}, + [5947] = {.lex_state = 65, .external_lex_state = 17}, + [5948] = {.lex_state = 65, .external_lex_state = 18}, + [5949] = {.lex_state = 63, .external_lex_state = 19}, [5950] = {.lex_state = 65, .external_lex_state = 17}, - [5951] = {.lex_state = 65, .external_lex_state = 21}, - [5952] = {.lex_state = 100, .external_lex_state = 6}, + [5951] = {.lex_state = 65, .external_lex_state = 20}, + [5952] = {.lex_state = 65, .external_lex_state = 21}, [5953] = {.lex_state = 65, .external_lex_state = 22}, - [5954] = {.lex_state = 65, .external_lex_state = 22}, - [5955] = {.lex_state = 65, .external_lex_state = 23}, - [5956] = {.lex_state = 65, .external_lex_state = 24}, + [5954] = {.lex_state = 65, .external_lex_state = 23}, + [5955] = {.lex_state = 62, .external_lex_state = 9}, + [5956] = {.lex_state = 63, .external_lex_state = 24}, [5957] = {.lex_state = 65, .external_lex_state = 25}, - [5958] = {.lex_state = 65, .external_lex_state = 24}, - [5959] = {.lex_state = 65, .external_lex_state = 18}, - [5960] = {.lex_state = 65, .external_lex_state = 17}, - [5961] = {.lex_state = 62, .external_lex_state = 9}, - [5962] = {.lex_state = 65, .external_lex_state = 25}, - [5963] = {.lex_state = 65, .external_lex_state = 23}, + [5958] = {.lex_state = 65, .external_lex_state = 18}, + [5959] = {.lex_state = 63, .external_lex_state = 24}, + [5960] = {.lex_state = 63, .external_lex_state = 19}, + [5961] = {.lex_state = 64, .external_lex_state = 8}, + [5962] = {.lex_state = 65, .external_lex_state = 17}, + [5963] = {.lex_state = 65, .external_lex_state = 25}, [5964] = {.lex_state = 65, .external_lex_state = 26}, - [5965] = {.lex_state = 65, .external_lex_state = 22}, - [5966] = {.lex_state = 62, .external_lex_state = 11}, - [5967] = {.lex_state = 63, .external_lex_state = 20}, - [5968] = {.lex_state = 63, .external_lex_state = 19}, - [5969] = {.lex_state = 65, .external_lex_state = 21}, - [5970] = {.lex_state = 63, .external_lex_state = 20}, - [5971] = {.lex_state = 65, .external_lex_state = 17}, + [5965] = {.lex_state = 65, .external_lex_state = 23}, + [5966] = {.lex_state = 65, .external_lex_state = 22}, + [5967] = {.lex_state = 65, .external_lex_state = 21}, + [5968] = {.lex_state = 65, .external_lex_state = 20}, + [5969] = {.lex_state = 65, .external_lex_state = 17}, + [5970] = {.lex_state = 63, .external_lex_state = 19}, + [5971] = {.lex_state = 63, .external_lex_state = 24}, [5972] = {.lex_state = 65, .external_lex_state = 18}, - [5973] = {.lex_state = 65, .external_lex_state = 24}, - [5974] = {.lex_state = 64, .external_lex_state = 8}, - [5975] = {.lex_state = 100, .external_lex_state = 6}, - [5976] = {.lex_state = 62, .external_lex_state = 7}, - [5977] = {.lex_state = 65, .external_lex_state = 22}, - [5978] = {.lex_state = 65, .external_lex_state = 21}, - [5979] = {.lex_state = 63, .external_lex_state = 19}, - [5980] = {.lex_state = 63, .external_lex_state = 20}, + [5973] = {.lex_state = 65, .external_lex_state = 20}, + [5974] = {.lex_state = 65, .external_lex_state = 21}, + [5975] = {.lex_state = 65, .external_lex_state = 22}, + [5976] = {.lex_state = 65, .external_lex_state = 23}, + [5977] = {.lex_state = 65, .external_lex_state = 26}, + [5978] = {.lex_state = 65, .external_lex_state = 18}, + [5979] = {.lex_state = 63, .external_lex_state = 24}, + [5980] = {.lex_state = 63, .external_lex_state = 19}, [5981] = {.lex_state = 65, .external_lex_state = 17}, - [5982] = {.lex_state = 65, .external_lex_state = 18}, - [5983] = {.lex_state = 65, .external_lex_state = 24}, - [5984] = {.lex_state = 65, .external_lex_state = 25}, + [5982] = {.lex_state = 65, .external_lex_state = 20}, + [5983] = {.lex_state = 65, .external_lex_state = 21}, + [5984] = {.lex_state = 65, .external_lex_state = 22}, [5985] = {.lex_state = 65, .external_lex_state = 23}, [5986] = {.lex_state = 65, .external_lex_state = 26}, - [5987] = {.lex_state = 65, .external_lex_state = 22}, - [5988] = {.lex_state = 65, .external_lex_state = 26}, - [5989] = {.lex_state = 65, .external_lex_state = 23}, - [5990] = {.lex_state = 65, .external_lex_state = 25}, - [5991] = {.lex_state = 65, .external_lex_state = 24}, - [5992] = {.lex_state = 65, .external_lex_state = 18}, - [5993] = {.lex_state = 65, .external_lex_state = 25}, - [5994] = {.lex_state = 65, .external_lex_state = 17}, - [5995] = {.lex_state = 63, .external_lex_state = 20}, - [5996] = {.lex_state = 63, .external_lex_state = 19}, - [5997] = {.lex_state = 65, .external_lex_state = 21}, - [5998] = {.lex_state = 65, .external_lex_state = 25}, - [5999] = {.lex_state = 65, .external_lex_state = 23}, - [6000] = {.lex_state = 65, .external_lex_state = 26}, - [6001] = {.lex_state = 65, .external_lex_state = 22}, - [6002] = {.lex_state = 62, .external_lex_state = 16}, - [6003] = {.lex_state = 64, .external_lex_state = 8}, - [6004] = {.lex_state = 64, .external_lex_state = 8}, - [6005] = {.lex_state = 63, .external_lex_state = 19}, - [6006] = {.lex_state = 62, .external_lex_state = 14}, - [6007] = {.lex_state = 65, .external_lex_state = 23}, - [6008] = {.lex_state = 65, .external_lex_state = 26}, - [6009] = {.lex_state = 64, .external_lex_state = 10}, - [6010] = {.lex_state = 62, .external_lex_state = 13}, - [6011] = {.lex_state = 62, .external_lex_state = 11}, - [6012] = {.lex_state = 100, .external_lex_state = 6}, - [6013] = {.lex_state = 65, .external_lex_state = 21}, - [6014] = {.lex_state = 63, .external_lex_state = 19}, - [6015] = {.lex_state = 63, .external_lex_state = 20}, + [5987] = {.lex_state = 65, .external_lex_state = 25}, + [5988] = {.lex_state = 65, .external_lex_state = 25}, + [5989] = {.lex_state = 62, .external_lex_state = 7}, + [5990] = {.lex_state = 64, .external_lex_state = 11}, + [5991] = {.lex_state = 100, .external_lex_state = 6}, + [5992] = {.lex_state = 100, .external_lex_state = 6}, + [5993] = {.lex_state = 65, .external_lex_state = 18}, + [5994] = {.lex_state = 63, .external_lex_state = 24}, + [5995] = {.lex_state = 63, .external_lex_state = 19}, + [5996] = {.lex_state = 65, .external_lex_state = 17}, + [5997] = {.lex_state = 65, .external_lex_state = 20}, + [5998] = {.lex_state = 65, .external_lex_state = 21}, + [5999] = {.lex_state = 65, .external_lex_state = 22}, + [6000] = {.lex_state = 65, .external_lex_state = 23}, + [6001] = {.lex_state = 65, .external_lex_state = 26}, + [6002] = {.lex_state = 65, .external_lex_state = 25}, + [6003] = {.lex_state = 65, .external_lex_state = 18}, + [6004] = {.lex_state = 65, .external_lex_state = 25}, + [6005] = {.lex_state = 65, .external_lex_state = 26}, + [6006] = {.lex_state = 65, .external_lex_state = 23}, + [6007] = {.lex_state = 65, .external_lex_state = 22}, + [6008] = {.lex_state = 65, .external_lex_state = 21}, + [6009] = {.lex_state = 65, .external_lex_state = 20}, + [6010] = {.lex_state = 65, .external_lex_state = 17}, + [6011] = {.lex_state = 63, .external_lex_state = 19}, + [6012] = {.lex_state = 63, .external_lex_state = 24}, + [6013] = {.lex_state = 65, .external_lex_state = 18}, + [6014] = {.lex_state = 63, .external_lex_state = 24}, + [6015] = {.lex_state = 63, .external_lex_state = 19}, [6016] = {.lex_state = 65, .external_lex_state = 17}, - [6017] = {.lex_state = 65, .external_lex_state = 18}, - [6018] = {.lex_state = 65, .external_lex_state = 24}, - [6019] = {.lex_state = 65, .external_lex_state = 25}, + [6017] = {.lex_state = 65, .external_lex_state = 20}, + [6018] = {.lex_state = 65, .external_lex_state = 21}, + [6019] = {.lex_state = 65, .external_lex_state = 22}, [6020] = {.lex_state = 65, .external_lex_state = 23}, [6021] = {.lex_state = 65, .external_lex_state = 26}, - [6022] = {.lex_state = 65, .external_lex_state = 22}, - [6023] = {.lex_state = 65, .external_lex_state = 22}, - [6024] = {.lex_state = 62, .external_lex_state = 11}, - [6025] = {.lex_state = 65, .external_lex_state = 21}, - [6026] = {.lex_state = 63, .external_lex_state = 19}, - [6027] = {.lex_state = 65, .external_lex_state = 22}, - [6028] = {.lex_state = 65, .external_lex_state = 22}, - [6029] = {.lex_state = 65, .external_lex_state = 26}, - [6030] = {.lex_state = 65, .external_lex_state = 23}, - [6031] = {.lex_state = 65, .external_lex_state = 25}, - [6032] = {.lex_state = 65, .external_lex_state = 24}, - [6033] = {.lex_state = 65, .external_lex_state = 18}, - [6034] = {.lex_state = 65, .external_lex_state = 17}, + [6022] = {.lex_state = 65, .external_lex_state = 25}, + [6023] = {.lex_state = 100, .external_lex_state = 6}, + [6024] = {.lex_state = 65, .external_lex_state = 18}, + [6025] = {.lex_state = 65, .external_lex_state = 25}, + [6026] = {.lex_state = 65, .external_lex_state = 25}, + [6027] = {.lex_state = 65, .external_lex_state = 26}, + [6028] = {.lex_state = 65, .external_lex_state = 23}, + [6029] = {.lex_state = 65, .external_lex_state = 22}, + [6030] = {.lex_state = 65, .external_lex_state = 21}, + [6031] = {.lex_state = 65, .external_lex_state = 20}, + [6032] = {.lex_state = 65, .external_lex_state = 17}, + [6033] = {.lex_state = 63, .external_lex_state = 19}, + [6034] = {.lex_state = 63, .external_lex_state = 24}, [6035] = {.lex_state = 65, .external_lex_state = 26}, - [6036] = {.lex_state = 62, .external_lex_state = 7}, - [6037] = {.lex_state = 63, .external_lex_state = 20}, - [6038] = {.lex_state = 63, .external_lex_state = 19}, + [6036] = {.lex_state = 65, .external_lex_state = 23}, + [6037] = {.lex_state = 65, .external_lex_state = 22}, + [6038] = {.lex_state = 65, .external_lex_state = 18}, [6039] = {.lex_state = 65, .external_lex_state = 21}, - [6040] = {.lex_state = 65, .external_lex_state = 23}, - [6041] = {.lex_state = 65, .external_lex_state = 25}, - [6042] = {.lex_state = 65, .external_lex_state = 24}, - [6043] = {.lex_state = 65, .external_lex_state = 18}, - [6044] = {.lex_state = 65, .external_lex_state = 17}, - [6045] = {.lex_state = 63, .external_lex_state = 20}, - [6046] = {.lex_state = 63, .external_lex_state = 19}, - [6047] = {.lex_state = 65, .external_lex_state = 21}, - [6048] = {.lex_state = 63, .external_lex_state = 20}, - [6049] = {.lex_state = 65, .external_lex_state = 17}, - [6050] = {.lex_state = 65, .external_lex_state = 24}, - [6051] = {.lex_state = 65, .external_lex_state = 18}, - [6052] = {.lex_state = 65, .external_lex_state = 18}, - [6053] = {.lex_state = 100, .external_lex_state = 6}, - [6054] = {.lex_state = 65, .external_lex_state = 24}, - [6055] = {.lex_state = 65, .external_lex_state = 25}, - [6056] = {.lex_state = 65, .external_lex_state = 23}, - [6057] = {.lex_state = 65, .external_lex_state = 26}, - [6058] = {.lex_state = 100, .external_lex_state = 6}, - [6059] = {.lex_state = 65, .external_lex_state = 21}, - [6060] = {.lex_state = 62, .external_lex_state = 16}, - [6061] = {.lex_state = 65, .external_lex_state = 26}, - [6062] = {.lex_state = 100, .external_lex_state = 6}, - [6063] = {.lex_state = 65, .external_lex_state = 22}, - [6064] = {.lex_state = 65, .external_lex_state = 26}, - [6065] = {.lex_state = 65, .external_lex_state = 23}, - [6066] = {.lex_state = 65, .external_lex_state = 25}, - [6067] = {.lex_state = 65, .external_lex_state = 24}, - [6068] = {.lex_state = 65, .external_lex_state = 18}, - [6069] = {.lex_state = 65, .external_lex_state = 17}, - [6070] = {.lex_state = 63, .external_lex_state = 20}, - [6071] = {.lex_state = 63, .external_lex_state = 19}, - [6072] = {.lex_state = 62, .external_lex_state = 7}, - [6073] = {.lex_state = 65, .external_lex_state = 21}, - [6074] = {.lex_state = 62, .external_lex_state = 16}, - [6075] = {.lex_state = 64, .external_lex_state = 10}, - [6076] = {.lex_state = 100, .external_lex_state = 6}, - [6077] = {.lex_state = 102, .external_lex_state = 6}, - [6078] = {.lex_state = 63, .external_lex_state = 19}, - [6079] = {.lex_state = 63, .external_lex_state = 20}, - [6080] = {.lex_state = 65, .external_lex_state = 17}, - [6081] = {.lex_state = 65, .external_lex_state = 18}, - [6082] = {.lex_state = 63, .external_lex_state = 19}, - [6083] = {.lex_state = 62, .external_lex_state = 14}, - [6084] = {.lex_state = 65, .external_lex_state = 24}, - [6085] = {.lex_state = 65, .external_lex_state = 25}, - [6086] = {.lex_state = 65, .external_lex_state = 22}, - [6087] = {.lex_state = 65, .external_lex_state = 26}, - [6088] = {.lex_state = 65, .external_lex_state = 23}, - [6089] = {.lex_state = 65, .external_lex_state = 25}, - [6090] = {.lex_state = 63, .external_lex_state = 20}, - [6091] = {.lex_state = 65, .external_lex_state = 24}, - [6092] = {.lex_state = 62, .external_lex_state = 14}, - [6093] = {.lex_state = 65, .external_lex_state = 18}, + [6040] = {.lex_state = 64, .external_lex_state = 8}, + [6041] = {.lex_state = 65, .external_lex_state = 20}, + [6042] = {.lex_state = 65, .external_lex_state = 17}, + [6043] = {.lex_state = 63, .external_lex_state = 19}, + [6044] = {.lex_state = 63, .external_lex_state = 24}, + [6045] = {.lex_state = 65, .external_lex_state = 18}, + [6046] = {.lex_state = 263, .external_lex_state = 6}, + [6047] = {.lex_state = 65, .external_lex_state = 25}, + [6048] = {.lex_state = 65, .external_lex_state = 26}, + [6049] = {.lex_state = 100, .external_lex_state = 6}, + [6050] = {.lex_state = 65, .external_lex_state = 25}, + [6051] = {.lex_state = 65, .external_lex_state = 26}, + [6052] = {.lex_state = 100, .external_lex_state = 6}, + [6053] = {.lex_state = 65, .external_lex_state = 23}, + [6054] = {.lex_state = 65, .external_lex_state = 23}, + [6055] = {.lex_state = 65, .external_lex_state = 22}, + [6056] = {.lex_state = 65, .external_lex_state = 21}, + [6057] = {.lex_state = 65, .external_lex_state = 20}, + [6058] = {.lex_state = 63, .external_lex_state = 24}, + [6059] = {.lex_state = 100, .external_lex_state = 6}, + [6060] = {.lex_state = 65, .external_lex_state = 26}, + [6061] = {.lex_state = 65, .external_lex_state = 18}, + [6062] = {.lex_state = 65, .external_lex_state = 22}, + [6063] = {.lex_state = 65, .external_lex_state = 21}, + [6064] = {.lex_state = 65, .external_lex_state = 20}, + [6065] = {.lex_state = 65, .external_lex_state = 25}, + [6066] = {.lex_state = 65, .external_lex_state = 26}, + [6067] = {.lex_state = 65, .external_lex_state = 25}, + [6068] = {.lex_state = 65, .external_lex_state = 26}, + [6069] = {.lex_state = 65, .external_lex_state = 23}, + [6070] = {.lex_state = 65, .external_lex_state = 22}, + [6071] = {.lex_state = 65, .external_lex_state = 21}, + [6072] = {.lex_state = 65, .external_lex_state = 23}, + [6073] = {.lex_state = 65, .external_lex_state = 22}, + [6074] = {.lex_state = 65, .external_lex_state = 21}, + [6075] = {.lex_state = 65, .external_lex_state = 20}, + [6076] = {.lex_state = 65, .external_lex_state = 17}, + [6077] = {.lex_state = 63, .external_lex_state = 19}, + [6078] = {.lex_state = 63, .external_lex_state = 24}, + [6079] = {.lex_state = 65, .external_lex_state = 18}, + [6080] = {.lex_state = 100, .external_lex_state = 6}, + [6081] = {.lex_state = 65, .external_lex_state = 20}, + [6082] = {.lex_state = 65, .external_lex_state = 17}, + [6083] = {.lex_state = 63, .external_lex_state = 19}, + [6084] = {.lex_state = 63, .external_lex_state = 24}, + [6085] = {.lex_state = 65, .external_lex_state = 17}, + [6086] = {.lex_state = 63, .external_lex_state = 19}, + [6087] = {.lex_state = 63, .external_lex_state = 24}, + [6088] = {.lex_state = 100, .external_lex_state = 6}, + [6089] = {.lex_state = 65, .external_lex_state = 18}, + [6090] = {.lex_state = 100, .external_lex_state = 6}, + [6091] = {.lex_state = 65, .external_lex_state = 18}, + [6092] = {.lex_state = 63, .external_lex_state = 24}, + [6093] = {.lex_state = 63, .external_lex_state = 19}, [6094] = {.lex_state = 65, .external_lex_state = 17}, - [6095] = {.lex_state = 65, .external_lex_state = 21}, - [6096] = {.lex_state = 63, .external_lex_state = 19}, - [6097] = {.lex_state = 63, .external_lex_state = 20}, + [6095] = {.lex_state = 65, .external_lex_state = 18}, + [6096] = {.lex_state = 63, .external_lex_state = 24}, + [6097] = {.lex_state = 63, .external_lex_state = 19}, [6098] = {.lex_state = 65, .external_lex_state = 17}, - [6099] = {.lex_state = 65, .external_lex_state = 18}, - [6100] = {.lex_state = 65, .external_lex_state = 24}, - [6101] = {.lex_state = 65, .external_lex_state = 25}, + [6099] = {.lex_state = 65, .external_lex_state = 20}, + [6100] = {.lex_state = 65, .external_lex_state = 21}, + [6101] = {.lex_state = 65, .external_lex_state = 22}, [6102] = {.lex_state = 65, .external_lex_state = 23}, [6103] = {.lex_state = 65, .external_lex_state = 26}, - [6104] = {.lex_state = 65, .external_lex_state = 22}, - [6105] = {.lex_state = 63, .external_lex_state = 20}, - [6106] = {.lex_state = 63, .external_lex_state = 19}, - [6107] = {.lex_state = 65, .external_lex_state = 21}, + [6104] = {.lex_state = 65, .external_lex_state = 25}, + [6105] = {.lex_state = 65, .external_lex_state = 20}, + [6106] = {.lex_state = 65, .external_lex_state = 21}, + [6107] = {.lex_state = 65, .external_lex_state = 22}, [6108] = {.lex_state = 65, .external_lex_state = 23}, [6109] = {.lex_state = 65, .external_lex_state = 26}, - [6110] = {.lex_state = 65, .external_lex_state = 22}, - [6111] = {.lex_state = 64, .external_lex_state = 10}, - [6112] = {.lex_state = 62, .external_lex_state = 13}, - [6113] = {.lex_state = 100, .external_lex_state = 6}, - [6114] = {.lex_state = 65, .external_lex_state = 21}, - [6115] = {.lex_state = 62, .external_lex_state = 13}, - [6116] = {.lex_state = 62, .external_lex_state = 12}, - [6117] = {.lex_state = 65, .external_lex_state = 22}, - [6118] = {.lex_state = 65, .external_lex_state = 22}, - [6119] = {.lex_state = 65, .external_lex_state = 26}, - [6120] = {.lex_state = 65, .external_lex_state = 23}, - [6121] = {.lex_state = 65, .external_lex_state = 25}, - [6122] = {.lex_state = 65, .external_lex_state = 24}, - [6123] = {.lex_state = 65, .external_lex_state = 18}, - [6124] = {.lex_state = 65, .external_lex_state = 17}, - [6125] = {.lex_state = 63, .external_lex_state = 20}, - [6126] = {.lex_state = 62, .external_lex_state = 15}, - [6127] = {.lex_state = 63, .external_lex_state = 19}, - [6128] = {.lex_state = 65, .external_lex_state = 21}, - [6129] = {.lex_state = 62, .external_lex_state = 15}, - [6130] = {.lex_state = 65, .external_lex_state = 21}, - [6131] = {.lex_state = 63, .external_lex_state = 19}, - [6132] = {.lex_state = 63, .external_lex_state = 20}, - [6133] = {.lex_state = 65, .external_lex_state = 17}, - [6134] = {.lex_state = 65, .external_lex_state = 18}, - [6135] = {.lex_state = 65, .external_lex_state = 24}, - [6136] = {.lex_state = 65, .external_lex_state = 25}, - [6137] = {.lex_state = 65, .external_lex_state = 26}, - [6138] = {.lex_state = 65, .external_lex_state = 23}, - [6139] = {.lex_state = 102, .external_lex_state = 6}, - [6140] = {.lex_state = 65, .external_lex_state = 25}, - [6141] = {.lex_state = 65, .external_lex_state = 24}, - [6142] = {.lex_state = 65, .external_lex_state = 18}, - [6143] = {.lex_state = 65, .external_lex_state = 23}, - [6144] = {.lex_state = 65, .external_lex_state = 26}, - [6145] = {.lex_state = 65, .external_lex_state = 22}, - [6146] = {.lex_state = 65, .external_lex_state = 17}, - [6147] = {.lex_state = 100, .external_lex_state = 6}, - [6148] = {.lex_state = 62, .external_lex_state = 15}, - [6149] = {.lex_state = 100, .external_lex_state = 6}, - [6150] = {.lex_state = 100, .external_lex_state = 6}, - [6151] = {.lex_state = 63, .external_lex_state = 20}, - [6152] = {.lex_state = 62, .external_lex_state = 9}, - [6153] = {.lex_state = 63, .external_lex_state = 19}, - [6154] = {.lex_state = 62, .external_lex_state = 9}, - [6155] = {.lex_state = 65, .external_lex_state = 21}, - [6156] = {.lex_state = 62, .external_lex_state = 12}, - [6157] = {.lex_state = 65, .external_lex_state = 21}, - [6158] = {.lex_state = 62, .external_lex_state = 12}, - [6159] = {.lex_state = 65, .external_lex_state = 22}, - [6160] = {.lex_state = 65, .external_lex_state = 26}, - [6161] = {.lex_state = 65, .external_lex_state = 23}, - [6162] = {.lex_state = 65, .external_lex_state = 25}, - [6163] = {.lex_state = 65, .external_lex_state = 24}, - [6164] = {.lex_state = 65, .external_lex_state = 18}, - [6165] = {.lex_state = 65, .external_lex_state = 17}, - [6166] = {.lex_state = 63, .external_lex_state = 20}, - [6167] = {.lex_state = 63, .external_lex_state = 19}, - [6168] = {.lex_state = 65, .external_lex_state = 21}, - [6169] = {.lex_state = 100, .external_lex_state = 6}, - [6170] = {.lex_state = 263, .external_lex_state = 6}, + [6110] = {.lex_state = 65, .external_lex_state = 25}, + [6111] = {.lex_state = 65, .external_lex_state = 25}, + [6112] = {.lex_state = 65, .external_lex_state = 26}, + [6113] = {.lex_state = 65, .external_lex_state = 23}, + [6114] = {.lex_state = 65, .external_lex_state = 22}, + [6115] = {.lex_state = 65, .external_lex_state = 21}, + [6116] = {.lex_state = 65, .external_lex_state = 20}, + [6117] = {.lex_state = 65, .external_lex_state = 17}, + [6118] = {.lex_state = 63, .external_lex_state = 19}, + [6119] = {.lex_state = 63, .external_lex_state = 24}, + [6120] = {.lex_state = 65, .external_lex_state = 18}, + [6121] = {.lex_state = 102, .external_lex_state = 6}, + [6122] = {.lex_state = 100, .external_lex_state = 6}, + [6123] = {.lex_state = 62, .external_lex_state = 9}, + [6124] = {.lex_state = 64, .external_lex_state = 8}, + [6125] = {.lex_state = 62, .external_lex_state = 7}, + [6126] = {.lex_state = 62, .external_lex_state = 7}, + [6127] = {.lex_state = 102, .external_lex_state = 6}, + [6128] = {.lex_state = 62, .external_lex_state = 9}, + [6129] = {.lex_state = 64, .external_lex_state = 11}, + [6130] = {.lex_state = 64, .external_lex_state = 11}, + [6131] = {.lex_state = 65, .external_lex_state = 18}, + [6132] = {.lex_state = 63, .external_lex_state = 24}, + [6133] = {.lex_state = 63, .external_lex_state = 19}, + [6134] = {.lex_state = 65, .external_lex_state = 17}, + [6135] = {.lex_state = 65, .external_lex_state = 20}, + [6136] = {.lex_state = 65, .external_lex_state = 21}, + [6137] = {.lex_state = 62, .external_lex_state = 10}, + [6138] = {.lex_state = 62, .external_lex_state = 12}, + [6139] = {.lex_state = 62, .external_lex_state = 13}, + [6140] = {.lex_state = 62, .external_lex_state = 13}, + [6141] = {.lex_state = 62, .external_lex_state = 15}, + [6142] = {.lex_state = 62, .external_lex_state = 10}, + [6143] = {.lex_state = 65, .external_lex_state = 22}, + [6144] = {.lex_state = 65, .external_lex_state = 23}, + [6145] = {.lex_state = 65, .external_lex_state = 26}, + [6146] = {.lex_state = 65, .external_lex_state = 25}, + [6147] = {.lex_state = 62, .external_lex_state = 16}, + [6148] = {.lex_state = 62, .external_lex_state = 14}, + [6149] = {.lex_state = 65, .external_lex_state = 25}, + [6150] = {.lex_state = 65, .external_lex_state = 26}, + [6151] = {.lex_state = 65, .external_lex_state = 23}, + [6152] = {.lex_state = 65, .external_lex_state = 22}, + [6153] = {.lex_state = 65, .external_lex_state = 21}, + [6154] = {.lex_state = 65, .external_lex_state = 20}, + [6155] = {.lex_state = 63, .external_lex_state = 19}, + [6156] = {.lex_state = 63, .external_lex_state = 19}, + [6157] = {.lex_state = 63, .external_lex_state = 24}, + [6158] = {.lex_state = 65, .external_lex_state = 18}, + [6159] = {.lex_state = 62, .external_lex_state = 14}, + [6160] = {.lex_state = 62, .external_lex_state = 10}, + [6161] = {.lex_state = 100, .external_lex_state = 6}, + [6162] = {.lex_state = 62, .external_lex_state = 14}, + [6163] = {.lex_state = 62, .external_lex_state = 13}, + [6164] = {.lex_state = 62, .external_lex_state = 15}, + [6165] = {.lex_state = 62, .external_lex_state = 15}, + [6166] = {.lex_state = 100, .external_lex_state = 6}, + [6167] = {.lex_state = 62, .external_lex_state = 16}, + [6168] = {.lex_state = 62, .external_lex_state = 16}, + [6169] = {.lex_state = 62, .external_lex_state = 12}, + [6170] = {.lex_state = 62, .external_lex_state = 12}, [6171] = {.lex_state = 63, .external_lex_state = 6}, [6172] = {.lex_state = 65, .external_lex_state = 6}, - [6173] = {.lex_state = 63, .external_lex_state = 6}, + [6173] = {.lex_state = 65, .external_lex_state = 6}, [6174] = {.lex_state = 65, .external_lex_state = 6}, [6175] = {.lex_state = 65, .external_lex_state = 6}, [6176] = {.lex_state = 65, .external_lex_state = 6}, @@ -29855,27 +29840,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6185] = {.lex_state = 65, .external_lex_state = 6}, [6186] = {.lex_state = 65, .external_lex_state = 6}, [6187] = {.lex_state = 65, .external_lex_state = 6}, - [6188] = {.lex_state = 65, .external_lex_state = 6}, + [6188] = {.lex_state = 63, .external_lex_state = 6}, [6189] = {.lex_state = 63, .external_lex_state = 6}, - [6190] = {.lex_state = 63, .external_lex_state = 6}, + [6190] = {.lex_state = 65, .external_lex_state = 6}, [6191] = {.lex_state = 65, .external_lex_state = 6}, [6192] = {.lex_state = 65, .external_lex_state = 6}, [6193] = {.lex_state = 65, .external_lex_state = 6}, [6194] = {.lex_state = 65, .external_lex_state = 6}, [6195] = {.lex_state = 65, .external_lex_state = 6}, [6196] = {.lex_state = 65, .external_lex_state = 6}, - [6197] = {.lex_state = 65, .external_lex_state = 6}, + [6197] = {.lex_state = 62, .external_lex_state = 6}, [6198] = {.lex_state = 65, .external_lex_state = 6}, [6199] = {.lex_state = 65, .external_lex_state = 6}, - [6200] = {.lex_state = 65, .external_lex_state = 6}, - [6201] = {.lex_state = 65, .external_lex_state = 6}, - [6202] = {.lex_state = 65, .external_lex_state = 6}, - [6203] = {.lex_state = 63, .external_lex_state = 6}, - [6204] = {.lex_state = 63, .external_lex_state = 6}, + [6200] = {.lex_state = 63, .external_lex_state = 6}, + [6201] = {.lex_state = 63, .external_lex_state = 6}, + [6202] = {.lex_state = 65, .external_lex_state = 18}, + [6203] = {.lex_state = 65, .external_lex_state = 6}, + [6204] = {.lex_state = 65, .external_lex_state = 6}, [6205] = {.lex_state = 63, .external_lex_state = 6}, - [6206] = {.lex_state = 63, .external_lex_state = 6}, - [6207] = {.lex_state = 65, .external_lex_state = 6}, - [6208] = {.lex_state = 65, .external_lex_state = 6}, + [6206] = {.lex_state = 62, .external_lex_state = 6}, + [6207] = {.lex_state = 63, .external_lex_state = 6}, + [6208] = {.lex_state = 63, .external_lex_state = 6}, [6209] = {.lex_state = 65, .external_lex_state = 6}, [6210] = {.lex_state = 65, .external_lex_state = 6}, [6211] = {.lex_state = 65, .external_lex_state = 6}, @@ -29889,55 +29874,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6219] = {.lex_state = 65, .external_lex_state = 6}, [6220] = {.lex_state = 65, .external_lex_state = 6}, [6221] = {.lex_state = 65, .external_lex_state = 6}, - [6222] = {.lex_state = 63, .external_lex_state = 6}, - [6223] = {.lex_state = 63, .external_lex_state = 6}, - [6224] = {.lex_state = 65, .external_lex_state = 6}, + [6222] = {.lex_state = 65, .external_lex_state = 6}, + [6223] = {.lex_state = 65, .external_lex_state = 6}, + [6224] = {.lex_state = 63, .external_lex_state = 6}, [6225] = {.lex_state = 63, .external_lex_state = 6}, - [6226] = {.lex_state = 65, .external_lex_state = 6}, - [6227] = {.lex_state = 63, .external_lex_state = 6}, - [6228] = {.lex_state = 63, .external_lex_state = 6}, + [6226] = {.lex_state = 63, .external_lex_state = 6}, + [6227] = {.lex_state = 65, .external_lex_state = 6}, + [6228] = {.lex_state = 65, .external_lex_state = 6}, [6229] = {.lex_state = 65, .external_lex_state = 6}, - [6230] = {.lex_state = 65, .external_lex_state = 6}, - [6231] = {.lex_state = 65, .external_lex_state = 6}, + [6230] = {.lex_state = 63, .external_lex_state = 6}, + [6231] = {.lex_state = 63, .external_lex_state = 6}, [6232] = {.lex_state = 65, .external_lex_state = 6}, [6233] = {.lex_state = 65, .external_lex_state = 6}, [6234] = {.lex_state = 65, .external_lex_state = 6}, [6235] = {.lex_state = 65, .external_lex_state = 6}, - [6236] = {.lex_state = 64, .external_lex_state = 6}, + [6236] = {.lex_state = 65, .external_lex_state = 6}, [6237] = {.lex_state = 65, .external_lex_state = 6}, [6238] = {.lex_state = 65, .external_lex_state = 6}, - [6239] = {.lex_state = 263, .external_lex_state = 6}, + [6239] = {.lex_state = 65, .external_lex_state = 6}, [6240] = {.lex_state = 65, .external_lex_state = 6}, - [6241] = {.lex_state = 102, .external_lex_state = 6}, - [6242] = {.lex_state = 65, .external_lex_state = 22}, - [6243] = {.lex_state = 65, .external_lex_state = 6}, - [6244] = {.lex_state = 65, .external_lex_state = 6}, + [6241] = {.lex_state = 263, .external_lex_state = 6}, + [6242] = {.lex_state = 65, .external_lex_state = 6}, + [6243] = {.lex_state = 50, .external_lex_state = 6}, + [6244] = {.lex_state = 50, .external_lex_state = 6}, [6245] = {.lex_state = 65, .external_lex_state = 6}, - [6246] = {.lex_state = 63, .external_lex_state = 6}, - [6247] = {.lex_state = 263, .external_lex_state = 6}, - [6248] = {.lex_state = 65, .external_lex_state = 21}, + [6246] = {.lex_state = 65, .external_lex_state = 6}, + [6247] = {.lex_state = 65, .external_lex_state = 6}, + [6248] = {.lex_state = 65, .external_lex_state = 6}, [6249] = {.lex_state = 65, .external_lex_state = 6}, [6250] = {.lex_state = 65, .external_lex_state = 6}, [6251] = {.lex_state = 65, .external_lex_state = 6}, - [6252] = {.lex_state = 50, .external_lex_state = 6}, - [6253] = {.lex_state = 63, .external_lex_state = 6}, - [6254] = {.lex_state = 63, .external_lex_state = 6}, - [6255] = {.lex_state = 65, .external_lex_state = 6}, + [6252] = {.lex_state = 65, .external_lex_state = 6}, + [6253] = {.lex_state = 65, .external_lex_state = 6}, + [6254] = {.lex_state = 65, .external_lex_state = 6}, + [6255] = {.lex_state = 63, .external_lex_state = 6}, [6256] = {.lex_state = 65, .external_lex_state = 6}, - [6257] = {.lex_state = 65, .external_lex_state = 6}, + [6257] = {.lex_state = 63, .external_lex_state = 6}, [6258] = {.lex_state = 65, .external_lex_state = 6}, - [6259] = {.lex_state = 65, .external_lex_state = 6}, - [6260] = {.lex_state = 65, .external_lex_state = 6}, - [6261] = {.lex_state = 65, .external_lex_state = 6}, - [6262] = {.lex_state = 65, .external_lex_state = 6}, - [6263] = {.lex_state = 63, .external_lex_state = 6}, - [6264] = {.lex_state = 63, .external_lex_state = 6}, - [6265] = {.lex_state = 65, .external_lex_state = 6}, - [6266] = {.lex_state = 62, .external_lex_state = 6}, - [6267] = {.lex_state = 50, .external_lex_state = 6}, + [6259] = {.lex_state = 62, .external_lex_state = 6}, + [6260] = {.lex_state = 63, .external_lex_state = 6}, + [6261] = {.lex_state = 63, .external_lex_state = 6}, + [6262] = {.lex_state = 63, .external_lex_state = 6}, + [6263] = {.lex_state = 65, .external_lex_state = 25}, + [6264] = {.lex_state = 65, .external_lex_state = 6}, + [6265] = {.lex_state = 64, .external_lex_state = 6}, + [6266] = {.lex_state = 65, .external_lex_state = 6}, + [6267] = {.lex_state = 65, .external_lex_state = 6}, [6268] = {.lex_state = 65, .external_lex_state = 6}, - [6269] = {.lex_state = 50, .external_lex_state = 6}, - [6270] = {.lex_state = 64, .external_lex_state = 6}, + [6269] = {.lex_state = 63, .external_lex_state = 6}, + [6270] = {.lex_state = 65, .external_lex_state = 6}, [6271] = {.lex_state = 65, .external_lex_state = 6}, [6272] = {.lex_state = 65, .external_lex_state = 6}, [6273] = {.lex_state = 65, .external_lex_state = 6}, @@ -29951,11 +29936,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6281] = {.lex_state = 65, .external_lex_state = 6}, [6282] = {.lex_state = 65, .external_lex_state = 6}, [6283] = {.lex_state = 65, .external_lex_state = 6}, - [6284] = {.lex_state = 65, .external_lex_state = 6}, - [6285] = {.lex_state = 65, .external_lex_state = 6}, + [6284] = {.lex_state = 63, .external_lex_state = 6}, + [6285] = {.lex_state = 63, .external_lex_state = 6}, [6286] = {.lex_state = 63, .external_lex_state = 6}, [6287] = {.lex_state = 63, .external_lex_state = 6}, - [6288] = {.lex_state = 63, .external_lex_state = 6}, + [6288] = {.lex_state = 65, .external_lex_state = 6}, [6289] = {.lex_state = 65, .external_lex_state = 6}, [6290] = {.lex_state = 65, .external_lex_state = 6}, [6291] = {.lex_state = 63, .external_lex_state = 6}, @@ -29976,11 +29961,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6306] = {.lex_state = 65, .external_lex_state = 6}, [6307] = {.lex_state = 65, .external_lex_state = 6}, [6308] = {.lex_state = 65, .external_lex_state = 6}, - [6309] = {.lex_state = 63, .external_lex_state = 6}, - [6310] = {.lex_state = 65, .external_lex_state = 6}, + [6309] = {.lex_state = 65, .external_lex_state = 6}, + [6310] = {.lex_state = 63, .external_lex_state = 6}, [6311] = {.lex_state = 65, .external_lex_state = 6}, - [6312] = {.lex_state = 62, .external_lex_state = 6}, - [6313] = {.lex_state = 65, .external_lex_state = 6}, + [6312] = {.lex_state = 63, .external_lex_state = 6}, + [6313] = {.lex_state = 63, .external_lex_state = 6}, [6314] = {.lex_state = 65, .external_lex_state = 6}, [6315] = {.lex_state = 65, .external_lex_state = 6}, [6316] = {.lex_state = 63, .external_lex_state = 6}, @@ -29992,39 +29977,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6322] = {.lex_state = 65, .external_lex_state = 6}, [6323] = {.lex_state = 65, .external_lex_state = 6}, [6324] = {.lex_state = 65, .external_lex_state = 6}, - [6325] = {.lex_state = 62, .external_lex_state = 6}, - [6326] = {.lex_state = 63, .external_lex_state = 6}, - [6327] = {.lex_state = 65, .external_lex_state = 26}, + [6325] = {.lex_state = 65, .external_lex_state = 6}, + [6326] = {.lex_state = 65, .external_lex_state = 6}, + [6327] = {.lex_state = 65, .external_lex_state = 6}, [6328] = {.lex_state = 65, .external_lex_state = 6}, [6329] = {.lex_state = 65, .external_lex_state = 6}, - [6330] = {.lex_state = 63, .external_lex_state = 6}, + [6330] = {.lex_state = 65, .external_lex_state = 6}, [6331] = {.lex_state = 65, .external_lex_state = 6}, - [6332] = {.lex_state = 65, .external_lex_state = 6}, - [6333] = {.lex_state = 65, .external_lex_state = 6}, - [6334] = {.lex_state = 62, .external_lex_state = 6}, - [6335] = {.lex_state = 65, .external_lex_state = 6}, - [6336] = {.lex_state = 65, .external_lex_state = 25}, - [6337] = {.lex_state = 65, .external_lex_state = 23}, - [6338] = {.lex_state = 62, .external_lex_state = 6}, + [6332] = {.lex_state = 63, .external_lex_state = 6}, + [6333] = {.lex_state = 63, .external_lex_state = 6}, + [6334] = {.lex_state = 65, .external_lex_state = 6}, + [6335] = {.lex_state = 63, .external_lex_state = 6}, + [6336] = {.lex_state = 65, .external_lex_state = 6}, + [6337] = {.lex_state = 63, .external_lex_state = 24}, + [6338] = {.lex_state = 63, .external_lex_state = 6}, [6339] = {.lex_state = 65, .external_lex_state = 6}, [6340] = {.lex_state = 65, .external_lex_state = 6}, [6341] = {.lex_state = 62, .external_lex_state = 6}, - [6342] = {.lex_state = 65, .external_lex_state = 6}, - [6343] = {.lex_state = 62, .external_lex_state = 6}, - [6344] = {.lex_state = 65, .external_lex_state = 6}, - [6345] = {.lex_state = 65, .external_lex_state = 6}, + [6342] = {.lex_state = 63, .external_lex_state = 6}, + [6343] = {.lex_state = 63, .external_lex_state = 6}, + [6344] = {.lex_state = 63, .external_lex_state = 19}, + [6345] = {.lex_state = 102, .external_lex_state = 6}, [6346] = {.lex_state = 65, .external_lex_state = 6}, [6347] = {.lex_state = 65, .external_lex_state = 6}, [6348] = {.lex_state = 65, .external_lex_state = 6}, - [6349] = {.lex_state = 65, .external_lex_state = 6}, + [6349] = {.lex_state = 63, .external_lex_state = 6}, [6350] = {.lex_state = 65, .external_lex_state = 6}, - [6351] = {.lex_state = 65, .external_lex_state = 6}, + [6351] = {.lex_state = 63, .external_lex_state = 6}, [6352] = {.lex_state = 63, .external_lex_state = 6}, [6353] = {.lex_state = 65, .external_lex_state = 6}, - [6354] = {.lex_state = 63, .external_lex_state = 6}, - [6355] = {.lex_state = 63, .external_lex_state = 6}, - [6356] = {.lex_state = 63, .external_lex_state = 6}, - [6357] = {.lex_state = 63, .external_lex_state = 6}, + [6354] = {.lex_state = 65, .external_lex_state = 6}, + [6355] = {.lex_state = 65, .external_lex_state = 6}, + [6356] = {.lex_state = 65, .external_lex_state = 6}, + [6357] = {.lex_state = 65, .external_lex_state = 6}, [6358] = {.lex_state = 65, .external_lex_state = 6}, [6359] = {.lex_state = 65, .external_lex_state = 6}, [6360] = {.lex_state = 65, .external_lex_state = 6}, @@ -30034,12 +30019,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6364] = {.lex_state = 65, .external_lex_state = 6}, [6365] = {.lex_state = 65, .external_lex_state = 6}, [6366] = {.lex_state = 65, .external_lex_state = 6}, - [6367] = {.lex_state = 63, .external_lex_state = 6}, - [6368] = {.lex_state = 63, .external_lex_state = 6}, - [6369] = {.lex_state = 65, .external_lex_state = 6}, - [6370] = {.lex_state = 65, .external_lex_state = 6}, - [6371] = {.lex_state = 63, .external_lex_state = 6}, - [6372] = {.lex_state = 65, .external_lex_state = 6}, + [6367] = {.lex_state = 65, .external_lex_state = 6}, + [6368] = {.lex_state = 65, .external_lex_state = 6}, + [6369] = {.lex_state = 63, .external_lex_state = 6}, + [6370] = {.lex_state = 63, .external_lex_state = 6}, + [6371] = {.lex_state = 65, .external_lex_state = 6}, + [6372] = {.lex_state = 63, .external_lex_state = 6}, [6373] = {.lex_state = 65, .external_lex_state = 6}, [6374] = {.lex_state = 65, .external_lex_state = 6}, [6375] = {.lex_state = 65, .external_lex_state = 6}, @@ -30065,7 +30050,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6395] = {.lex_state = 65, .external_lex_state = 6}, [6396] = {.lex_state = 65, .external_lex_state = 6}, [6397] = {.lex_state = 65, .external_lex_state = 6}, - [6398] = {.lex_state = 65, .external_lex_state = 6}, + [6398] = {.lex_state = 50, .external_lex_state = 6}, [6399] = {.lex_state = 65, .external_lex_state = 6}, [6400] = {.lex_state = 65, .external_lex_state = 6}, [6401] = {.lex_state = 65, .external_lex_state = 6}, @@ -30078,54 +30063,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6408] = {.lex_state = 65, .external_lex_state = 6}, [6409] = {.lex_state = 65, .external_lex_state = 6}, [6410] = {.lex_state = 65, .external_lex_state = 6}, - [6411] = {.lex_state = 63, .external_lex_state = 6}, + [6411] = {.lex_state = 65, .external_lex_state = 6}, [6412] = {.lex_state = 65, .external_lex_state = 6}, [6413] = {.lex_state = 65, .external_lex_state = 6}, [6414] = {.lex_state = 65, .external_lex_state = 6}, [6415] = {.lex_state = 65, .external_lex_state = 6}, [6416] = {.lex_state = 65, .external_lex_state = 6}, [6417] = {.lex_state = 65, .external_lex_state = 6}, - [6418] = {.lex_state = 63, .external_lex_state = 6}, - [6419] = {.lex_state = 63, .external_lex_state = 6}, - [6420] = {.lex_state = 63, .external_lex_state = 6}, - [6421] = {.lex_state = 63, .external_lex_state = 6}, + [6418] = {.lex_state = 65, .external_lex_state = 6}, + [6419] = {.lex_state = 65, .external_lex_state = 6}, + [6420] = {.lex_state = 65, .external_lex_state = 6}, + [6421] = {.lex_state = 65, .external_lex_state = 6}, [6422] = {.lex_state = 65, .external_lex_state = 6}, [6423] = {.lex_state = 65, .external_lex_state = 6}, - [6424] = {.lex_state = 65, .external_lex_state = 24}, + [6424] = {.lex_state = 63, .external_lex_state = 6}, [6425] = {.lex_state = 65, .external_lex_state = 6}, [6426] = {.lex_state = 65, .external_lex_state = 6}, [6427] = {.lex_state = 65, .external_lex_state = 6}, [6428] = {.lex_state = 65, .external_lex_state = 6}, [6429] = {.lex_state = 63, .external_lex_state = 6}, - [6430] = {.lex_state = 65, .external_lex_state = 6}, - [6431] = {.lex_state = 65, .external_lex_state = 6}, + [6430] = {.lex_state = 63, .external_lex_state = 6}, + [6431] = {.lex_state = 63, .external_lex_state = 6}, [6432] = {.lex_state = 65, .external_lex_state = 6}, [6433] = {.lex_state = 65, .external_lex_state = 6}, - [6434] = {.lex_state = 50, .external_lex_state = 6}, + [6434] = {.lex_state = 65, .external_lex_state = 6}, [6435] = {.lex_state = 65, .external_lex_state = 6}, [6436] = {.lex_state = 65, .external_lex_state = 6}, [6437] = {.lex_state = 65, .external_lex_state = 6}, - [6438] = {.lex_state = 65, .external_lex_state = 18}, - [6439] = {.lex_state = 63, .external_lex_state = 19}, + [6438] = {.lex_state = 65, .external_lex_state = 6}, + [6439] = {.lex_state = 65, .external_lex_state = 6}, [6440] = {.lex_state = 65, .external_lex_state = 6}, - [6441] = {.lex_state = 263, .external_lex_state = 6}, - [6442] = {.lex_state = 50, .external_lex_state = 6}, - [6443] = {.lex_state = 63, .external_lex_state = 6}, - [6444] = {.lex_state = 63, .external_lex_state = 6}, - [6445] = {.lex_state = 65, .external_lex_state = 6}, + [6441] = {.lex_state = 65, .external_lex_state = 6}, + [6442] = {.lex_state = 65, .external_lex_state = 6}, + [6443] = {.lex_state = 65, .external_lex_state = 6}, + [6444] = {.lex_state = 65, .external_lex_state = 6}, + [6445] = {.lex_state = 63, .external_lex_state = 6}, [6446] = {.lex_state = 65, .external_lex_state = 6}, [6447] = {.lex_state = 65, .external_lex_state = 6}, [6448] = {.lex_state = 65, .external_lex_state = 6}, [6449] = {.lex_state = 65, .external_lex_state = 6}, - [6450] = {.lex_state = 65, .external_lex_state = 6}, + [6450] = {.lex_state = 263, .external_lex_state = 6}, [6451] = {.lex_state = 65, .external_lex_state = 6}, - [6452] = {.lex_state = 63, .external_lex_state = 6}, - [6453] = {.lex_state = 63, .external_lex_state = 6}, + [6452] = {.lex_state = 65, .external_lex_state = 6}, + [6453] = {.lex_state = 65, .external_lex_state = 6}, [6454] = {.lex_state = 65, .external_lex_state = 6}, - [6455] = {.lex_state = 63, .external_lex_state = 6}, - [6456] = {.lex_state = 65, .external_lex_state = 6}, - [6457] = {.lex_state = 50, .external_lex_state = 6}, - [6458] = {.lex_state = 63, .external_lex_state = 20}, + [6455] = {.lex_state = 65, .external_lex_state = 20}, + [6456] = {.lex_state = 50, .external_lex_state = 6}, + [6457] = {.lex_state = 63, .external_lex_state = 6}, + [6458] = {.lex_state = 65, .external_lex_state = 6}, [6459] = {.lex_state = 65, .external_lex_state = 6}, [6460] = {.lex_state = 65, .external_lex_state = 6}, [6461] = {.lex_state = 65, .external_lex_state = 6}, @@ -30149,8 +30134,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6479] = {.lex_state = 65, .external_lex_state = 6}, [6480] = {.lex_state = 65, .external_lex_state = 6}, [6481] = {.lex_state = 65, .external_lex_state = 6}, - [6482] = {.lex_state = 65, .external_lex_state = 6}, - [6483] = {.lex_state = 65, .external_lex_state = 6}, + [6482] = {.lex_state = 263, .external_lex_state = 6}, + [6483] = {.lex_state = 50, .external_lex_state = 6}, [6484] = {.lex_state = 65, .external_lex_state = 6}, [6485] = {.lex_state = 65, .external_lex_state = 6}, [6486] = {.lex_state = 65, .external_lex_state = 6}, @@ -30168,52 +30153,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6498] = {.lex_state = 65, .external_lex_state = 6}, [6499] = {.lex_state = 65, .external_lex_state = 6}, [6500] = {.lex_state = 65, .external_lex_state = 6}, - [6501] = {.lex_state = 65, .external_lex_state = 6}, - [6502] = {.lex_state = 65, .external_lex_state = 6}, + [6501] = {.lex_state = 63, .external_lex_state = 6}, + [6502] = {.lex_state = 63, .external_lex_state = 6}, [6503] = {.lex_state = 65, .external_lex_state = 6}, [6504] = {.lex_state = 65, .external_lex_state = 6}, [6505] = {.lex_state = 65, .external_lex_state = 6}, - [6506] = {.lex_state = 65, .external_lex_state = 6}, - [6507] = {.lex_state = 65, .external_lex_state = 6}, + [6506] = {.lex_state = 63, .external_lex_state = 6}, + [6507] = {.lex_state = 63, .external_lex_state = 6}, [6508] = {.lex_state = 65, .external_lex_state = 6}, [6509] = {.lex_state = 65, .external_lex_state = 6}, [6510] = {.lex_state = 65, .external_lex_state = 6}, [6511] = {.lex_state = 63, .external_lex_state = 6}, [6512] = {.lex_state = 63, .external_lex_state = 6}, - [6513] = {.lex_state = 65, .external_lex_state = 6}, - [6514] = {.lex_state = 63, .external_lex_state = 6}, - [6515] = {.lex_state = 63, .external_lex_state = 6}, - [6516] = {.lex_state = 65, .external_lex_state = 6}, + [6513] = {.lex_state = 62, .external_lex_state = 6}, + [6514] = {.lex_state = 65, .external_lex_state = 6}, + [6515] = {.lex_state = 65, .external_lex_state = 6}, + [6516] = {.lex_state = 50, .external_lex_state = 6}, [6517] = {.lex_state = 65, .external_lex_state = 6}, [6518] = {.lex_state = 65, .external_lex_state = 6}, [6519] = {.lex_state = 65, .external_lex_state = 6}, - [6520] = {.lex_state = 65, .external_lex_state = 6}, + [6520] = {.lex_state = 65, .external_lex_state = 17}, [6521] = {.lex_state = 65, .external_lex_state = 6}, [6522] = {.lex_state = 65, .external_lex_state = 6}, [6523] = {.lex_state = 65, .external_lex_state = 6}, [6524] = {.lex_state = 65, .external_lex_state = 6}, - [6525] = {.lex_state = 65, .external_lex_state = 17}, - [6526] = {.lex_state = 63, .external_lex_state = 6}, - [6527] = {.lex_state = 63, .external_lex_state = 6}, - [6528] = {.lex_state = 63, .external_lex_state = 6}, - [6529] = {.lex_state = 63, .external_lex_state = 6}, + [6525] = {.lex_state = 65, .external_lex_state = 6}, + [6526] = {.lex_state = 65, .external_lex_state = 6}, + [6527] = {.lex_state = 65, .external_lex_state = 6}, + [6528] = {.lex_state = 65, .external_lex_state = 6}, + [6529] = {.lex_state = 65, .external_lex_state = 6}, [6530] = {.lex_state = 65, .external_lex_state = 6}, [6531] = {.lex_state = 65, .external_lex_state = 6}, [6532] = {.lex_state = 65, .external_lex_state = 6}, [6533] = {.lex_state = 65, .external_lex_state = 6}, [6534] = {.lex_state = 65, .external_lex_state = 6}, - [6535] = {.lex_state = 65, .external_lex_state = 6}, - [6536] = {.lex_state = 65, .external_lex_state = 6}, - [6537] = {.lex_state = 65, .external_lex_state = 6}, - [6538] = {.lex_state = 65, .external_lex_state = 6}, + [6535] = {.lex_state = 63, .external_lex_state = 6}, + [6536] = {.lex_state = 63, .external_lex_state = 6}, + [6537] = {.lex_state = 63, .external_lex_state = 6}, + [6538] = {.lex_state = 63, .external_lex_state = 6}, [6539] = {.lex_state = 65, .external_lex_state = 6}, [6540] = {.lex_state = 65, .external_lex_state = 6}, [6541] = {.lex_state = 65, .external_lex_state = 6}, - [6542] = {.lex_state = 50, .external_lex_state = 6}, + [6542] = {.lex_state = 64, .external_lex_state = 6}, [6543] = {.lex_state = 65, .external_lex_state = 6}, - [6544] = {.lex_state = 65, .external_lex_state = 6}, - [6545] = {.lex_state = 65, .external_lex_state = 6}, - [6546] = {.lex_state = 65, .external_lex_state = 6}, + [6544] = {.lex_state = 63, .external_lex_state = 6}, + [6545] = {.lex_state = 63, .external_lex_state = 6}, + [6546] = {.lex_state = 62, .external_lex_state = 6}, [6547] = {.lex_state = 65, .external_lex_state = 6}, [6548] = {.lex_state = 65, .external_lex_state = 6}, [6549] = {.lex_state = 63, .external_lex_state = 6}, @@ -30234,7 +30219,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6564] = {.lex_state = 65, .external_lex_state = 6}, [6565] = {.lex_state = 65, .external_lex_state = 6}, [6566] = {.lex_state = 65, .external_lex_state = 6}, - [6567] = {.lex_state = 263, .external_lex_state = 6}, + [6567] = {.lex_state = 62, .external_lex_state = 6}, [6568] = {.lex_state = 65, .external_lex_state = 6}, [6569] = {.lex_state = 65, .external_lex_state = 6}, [6570] = {.lex_state = 65, .external_lex_state = 6}, @@ -30250,20 +30235,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6580] = {.lex_state = 65, .external_lex_state = 6}, [6581] = {.lex_state = 65, .external_lex_state = 6}, [6582] = {.lex_state = 65, .external_lex_state = 6}, - [6583] = {.lex_state = 65, .external_lex_state = 6}, + [6583] = {.lex_state = 65, .external_lex_state = 23}, [6584] = {.lex_state = 65, .external_lex_state = 6}, [6585] = {.lex_state = 65, .external_lex_state = 6}, [6586] = {.lex_state = 65, .external_lex_state = 6}, - [6587] = {.lex_state = 65, .external_lex_state = 6}, - [6588] = {.lex_state = 65, .external_lex_state = 6}, - [6589] = {.lex_state = 65, .external_lex_state = 6}, + [6587] = {.lex_state = 65, .external_lex_state = 22}, + [6588] = {.lex_state = 65, .external_lex_state = 21}, + [6589] = {.lex_state = 50, .external_lex_state = 6}, [6590] = {.lex_state = 65, .external_lex_state = 6}, [6591] = {.lex_state = 65, .external_lex_state = 6}, - [6592] = {.lex_state = 65, .external_lex_state = 6}, - [6593] = {.lex_state = 65, .external_lex_state = 6}, - [6594] = {.lex_state = 65, .external_lex_state = 6}, + [6592] = {.lex_state = 62, .external_lex_state = 6}, + [6593] = {.lex_state = 63, .external_lex_state = 6}, + [6594] = {.lex_state = 263, .external_lex_state = 6}, [6595] = {.lex_state = 63, .external_lex_state = 6}, - [6596] = {.lex_state = 63, .external_lex_state = 6}, + [6596] = {.lex_state = 65, .external_lex_state = 6}, [6597] = {.lex_state = 65, .external_lex_state = 6}, [6598] = {.lex_state = 65, .external_lex_state = 6}, [6599] = {.lex_state = 65, .external_lex_state = 6}, @@ -30271,10 +30256,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6601] = {.lex_state = 65, .external_lex_state = 6}, [6602] = {.lex_state = 65, .external_lex_state = 6}, [6603] = {.lex_state = 65, .external_lex_state = 6}, - [6604] = {.lex_state = 65, .external_lex_state = 6}, + [6604] = {.lex_state = 63, .external_lex_state = 6}, [6605] = {.lex_state = 63, .external_lex_state = 6}, [6606] = {.lex_state = 65, .external_lex_state = 6}, - [6607] = {.lex_state = 63, .external_lex_state = 6}, + [6607] = {.lex_state = 65, .external_lex_state = 6}, [6608] = {.lex_state = 65, .external_lex_state = 6}, [6609] = {.lex_state = 65, .external_lex_state = 6}, [6610] = {.lex_state = 65, .external_lex_state = 6}, @@ -30285,43 +30270,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6615] = {.lex_state = 65, .external_lex_state = 6}, [6616] = {.lex_state = 65, .external_lex_state = 6}, [6617] = {.lex_state = 65, .external_lex_state = 6}, - [6618] = {.lex_state = 63, .external_lex_state = 6}, - [6619] = {.lex_state = 63, .external_lex_state = 6}, - [6620] = {.lex_state = 63, .external_lex_state = 6}, + [6618] = {.lex_state = 65, .external_lex_state = 6}, + [6619] = {.lex_state = 65, .external_lex_state = 6}, + [6620] = {.lex_state = 65, .external_lex_state = 6}, [6621] = {.lex_state = 65, .external_lex_state = 6}, [6622] = {.lex_state = 65, .external_lex_state = 6}, [6623] = {.lex_state = 65, .external_lex_state = 6}, [6624] = {.lex_state = 65, .external_lex_state = 6}, [6625] = {.lex_state = 65, .external_lex_state = 6}, - [6626] = {.lex_state = 63, .external_lex_state = 6}, - [6627] = {.lex_state = 63, .external_lex_state = 6}, + [6626] = {.lex_state = 65, .external_lex_state = 6}, + [6627] = {.lex_state = 65, .external_lex_state = 6}, [6628] = {.lex_state = 63, .external_lex_state = 6}, [6629] = {.lex_state = 63, .external_lex_state = 6}, - [6630] = {.lex_state = 65, .external_lex_state = 6}, - [6631] = {.lex_state = 65, .external_lex_state = 6}, - [6632] = {.lex_state = 62, .external_lex_state = 6}, - [6633] = {.lex_state = 50, .external_lex_state = 6}, + [6630] = {.lex_state = 63, .external_lex_state = 6}, + [6631] = {.lex_state = 63, .external_lex_state = 6}, + [6632] = {.lex_state = 65, .external_lex_state = 6}, + [6633] = {.lex_state = 65, .external_lex_state = 6}, [6634] = {.lex_state = 65, .external_lex_state = 6}, [6635] = {.lex_state = 65, .external_lex_state = 6}, - [6636] = {.lex_state = 63, .external_lex_state = 6}, - [6637] = {.lex_state = 63, .external_lex_state = 6}, + [6636] = {.lex_state = 65, .external_lex_state = 26}, + [6637] = {.lex_state = 65, .external_lex_state = 6}, [6638] = {.lex_state = 65, .external_lex_state = 6}, [6639] = {.lex_state = 65, .external_lex_state = 6}, [6640] = {.lex_state = 65, .external_lex_state = 6}, - [6641] = {.lex_state = 63, .external_lex_state = 6}, - [6642] = {.lex_state = 63, .external_lex_state = 6}, + [6641] = {.lex_state = 65, .external_lex_state = 6}, + [6642] = {.lex_state = 65, .external_lex_state = 6}, [6643] = {.lex_state = 65, .external_lex_state = 6}, - [6644] = {.lex_state = 65, .external_lex_state = 6}, + [6644] = {.lex_state = 63, .external_lex_state = 6}, [6645] = {.lex_state = 65, .external_lex_state = 6}, - [6646] = {.lex_state = 65, .external_lex_state = 6}, - [6647] = {.lex_state = 65, .external_lex_state = 6}, + [6646] = {.lex_state = 63, .external_lex_state = 6}, + [6647] = {.lex_state = 63, .external_lex_state = 6}, [6648] = {.lex_state = 65, .external_lex_state = 6}, [6649] = {.lex_state = 65, .external_lex_state = 6}, [6650] = {.lex_state = 65, .external_lex_state = 6}, [6651] = {.lex_state = 65, .external_lex_state = 6}, [6652] = {.lex_state = 65, .external_lex_state = 6}, [6653] = {.lex_state = 65, .external_lex_state = 6}, - [6654] = {.lex_state = 263, .external_lex_state = 6}, + [6654] = {.lex_state = 65, .external_lex_state = 6}, [6655] = {.lex_state = 65, .external_lex_state = 6}, [6656] = {.lex_state = 65, .external_lex_state = 6}, [6657] = {.lex_state = 65, .external_lex_state = 6}, @@ -30334,19 +30319,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6664] = {.lex_state = 65, .external_lex_state = 6}, [6665] = {.lex_state = 65, .external_lex_state = 6}, [6666] = {.lex_state = 65, .external_lex_state = 6}, - [6667] = {.lex_state = 65, .external_lex_state = 6}, - [6668] = {.lex_state = 65, .external_lex_state = 6}, + [6667] = {.lex_state = 63, .external_lex_state = 6}, + [6668] = {.lex_state = 63, .external_lex_state = 6}, [6669] = {.lex_state = 65, .external_lex_state = 6}, [6670] = {.lex_state = 65, .external_lex_state = 6}, - [6671] = {.lex_state = 63, .external_lex_state = 6}, + [6671] = {.lex_state = 65, .external_lex_state = 6}, [6672] = {.lex_state = 63, .external_lex_state = 6}, - [6673] = {.lex_state = 65, .external_lex_state = 6}, + [6673] = {.lex_state = 63, .external_lex_state = 6}, [6674] = {.lex_state = 65, .external_lex_state = 6}, [6675] = {.lex_state = 65, .external_lex_state = 6}, [6676] = {.lex_state = 65, .external_lex_state = 6}, [6677] = {.lex_state = 65, .external_lex_state = 6}, [6678] = {.lex_state = 65, .external_lex_state = 6}, - [6679] = {.lex_state = 63, .external_lex_state = 6}, + [6679] = {.lex_state = 65, .external_lex_state = 6}, [6680] = {.lex_state = 65, .external_lex_state = 6}, [6681] = {.lex_state = 65, .external_lex_state = 6}, [6682] = {.lex_state = 65, .external_lex_state = 6}, @@ -30356,53 +30341,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6686] = {.lex_state = 65, .external_lex_state = 6}, [6687] = {.lex_state = 65, .external_lex_state = 6}, [6688] = {.lex_state = 65, .external_lex_state = 6}, - [6689] = {.lex_state = 65, .external_lex_state = 6}, - [6690] = {.lex_state = 65, .external_lex_state = 6}, + [6689] = {.lex_state = 63, .external_lex_state = 6}, + [6690] = {.lex_state = 63, .external_lex_state = 6}, [6691] = {.lex_state = 65, .external_lex_state = 6}, [6692] = {.lex_state = 65, .external_lex_state = 6}, - [6693] = {.lex_state = 65, .external_lex_state = 6}, - [6694] = {.lex_state = 65, .external_lex_state = 6}, + [6693] = {.lex_state = 63, .external_lex_state = 6}, + [6694] = {.lex_state = 63, .external_lex_state = 6}, [6695] = {.lex_state = 65, .external_lex_state = 6}, - [6696] = {.lex_state = 63, .external_lex_state = 6}, - [6697] = {.lex_state = 63, .external_lex_state = 6}, - [6698] = {.lex_state = 63, .external_lex_state = 6}, + [6696] = {.lex_state = 65, .external_lex_state = 6}, + [6697] = {.lex_state = 65, .external_lex_state = 6}, + [6698] = {.lex_state = 65, .external_lex_state = 6}, [6699] = {.lex_state = 65, .external_lex_state = 6}, [6700] = {.lex_state = 65, .external_lex_state = 6}, [6701] = {.lex_state = 65, .external_lex_state = 6}, - [6702] = {.lex_state = 63, .external_lex_state = 6}, + [6702] = {.lex_state = 65, .external_lex_state = 6}, [6703] = {.lex_state = 65, .external_lex_state = 6}, [6704] = {.lex_state = 65, .external_lex_state = 6}, [6705] = {.lex_state = 65, .external_lex_state = 6}, - [6706] = {.lex_state = 65, .external_lex_state = 6}, + [6706] = {.lex_state = 63, .external_lex_state = 6}, [6707] = {.lex_state = 65, .external_lex_state = 6}, [6708] = {.lex_state = 65, .external_lex_state = 6}, - [6709] = {.lex_state = 63, .external_lex_state = 6}, - [6710] = {.lex_state = 63, .external_lex_state = 6}, + [6709] = {.lex_state = 65, .external_lex_state = 6}, + [6710] = {.lex_state = 65, .external_lex_state = 6}, [6711] = {.lex_state = 65, .external_lex_state = 6}, [6712] = {.lex_state = 65, .external_lex_state = 6}, [6713] = {.lex_state = 65, .external_lex_state = 6}, - [6714] = {.lex_state = 65, .external_lex_state = 6}, - [6715] = {.lex_state = 65, .external_lex_state = 6}, - [6716] = {.lex_state = 65, .external_lex_state = 6}, + [6714] = {.lex_state = 50, .external_lex_state = 6}, + [6715] = {.lex_state = 63, .external_lex_state = 6}, + [6716] = {.lex_state = 63, .external_lex_state = 6}, [6717] = {.lex_state = 63, .external_lex_state = 6}, [6718] = {.lex_state = 63, .external_lex_state = 6}, - [6719] = {.lex_state = 63, .external_lex_state = 6}, + [6719] = {.lex_state = 65, .external_lex_state = 6}, [6720] = {.lex_state = 65, .external_lex_state = 6}, - [6721] = {.lex_state = 65, .external_lex_state = 6}, - [6722] = {.lex_state = 65, .external_lex_state = 6}, + [6721] = {.lex_state = 63, .external_lex_state = 6}, + [6722] = {.lex_state = 63, .external_lex_state = 6}, [6723] = {.lex_state = 65, .external_lex_state = 6}, - [6724] = {.lex_state = 63, .external_lex_state = 6}, - [6725] = {.lex_state = 63, .external_lex_state = 6}, + [6724] = {.lex_state = 65, .external_lex_state = 6}, + [6725] = {.lex_state = 65, .external_lex_state = 6}, [6726] = {.lex_state = 63, .external_lex_state = 6}, - [6727] = {.lex_state = 63, .external_lex_state = 6}, + [6727] = {.lex_state = 65, .external_lex_state = 6}, [6728] = {.lex_state = 65, .external_lex_state = 6}, [6729] = {.lex_state = 65, .external_lex_state = 6}, - [6730] = {.lex_state = 65, .external_lex_state = 6}, + [6730] = {.lex_state = 102, .external_lex_state = 6}, [6731] = {.lex_state = 65, .external_lex_state = 6}, - [6732] = {.lex_state = 65, .external_lex_state = 6}, + [6732] = {.lex_state = 263, .external_lex_state = 6}, [6733] = {.lex_state = 65, .external_lex_state = 6}, [6734] = {.lex_state = 65, .external_lex_state = 6}, - [6735] = {.lex_state = 63, .external_lex_state = 6}, + [6735] = {.lex_state = 65, .external_lex_state = 6}, [6736] = {.lex_state = 65, .external_lex_state = 6}, [6737] = {.lex_state = 65, .external_lex_state = 6}, [6738] = {.lex_state = 65, .external_lex_state = 6}, @@ -30412,115 +30397,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6742] = {.lex_state = 65, .external_lex_state = 6}, [6743] = {.lex_state = 65, .external_lex_state = 6}, [6744] = {.lex_state = 65, .external_lex_state = 6}, - [6745] = {.lex_state = 63, .external_lex_state = 6}, - [6746] = {.lex_state = 63, .external_lex_state = 6}, + [6745] = {.lex_state = 65, .external_lex_state = 6}, + [6746] = {.lex_state = 65, .external_lex_state = 6}, [6747] = {.lex_state = 65, .external_lex_state = 6}, - [6748] = {.lex_state = 102, .external_lex_state = 6}, + [6748] = {.lex_state = 65, .external_lex_state = 6}, [6749] = {.lex_state = 65, .external_lex_state = 6}, [6750] = {.lex_state = 65, .external_lex_state = 6}, - [6751] = {.lex_state = 65, .external_lex_state = 6}, - [6752] = {.lex_state = 65, .external_lex_state = 6}, + [6751] = {.lex_state = 63, .external_lex_state = 6}, + [6752] = {.lex_state = 63, .external_lex_state = 6}, [6753] = {.lex_state = 65, .external_lex_state = 6}, [6754] = {.lex_state = 65, .external_lex_state = 6}, [6755] = {.lex_state = 65, .external_lex_state = 6}, [6756] = {.lex_state = 102, .external_lex_state = 6}, [6757] = {.lex_state = 102, .external_lex_state = 6}, [6758] = {.lex_state = 102, .external_lex_state = 6}, - [6759] = {.lex_state = 102, .external_lex_state = 6}, + [6759] = {.lex_state = 263, .external_lex_state = 6}, [6760] = {.lex_state = 102, .external_lex_state = 6}, - [6761] = {.lex_state = 102, .external_lex_state = 6}, + [6761] = {.lex_state = 263, .external_lex_state = 6}, [6762] = {.lex_state = 102, .external_lex_state = 6}, - [6763] = {.lex_state = 102, .external_lex_state = 6}, - [6764] = {.lex_state = 263, .external_lex_state = 6}, - [6765] = {.lex_state = 263, .external_lex_state = 6}, + [6763] = {.lex_state = 53, .external_lex_state = 6}, + [6764] = {.lex_state = 53, .external_lex_state = 6}, + [6765] = {.lex_state = 53, .external_lex_state = 6}, [6766] = {.lex_state = 102, .external_lex_state = 6}, [6767] = {.lex_state = 102, .external_lex_state = 6}, - [6768] = {.lex_state = 102, .external_lex_state = 6}, - [6769] = {.lex_state = 102, .external_lex_state = 6}, - [6770] = {.lex_state = 102, .external_lex_state = 6}, - [6771] = {.lex_state = 102, .external_lex_state = 6}, + [6768] = {.lex_state = 263, .external_lex_state = 6}, + [6769] = {.lex_state = 53, .external_lex_state = 6}, + [6770] = {.lex_state = 53, .external_lex_state = 6}, + [6771] = {.lex_state = 53, .external_lex_state = 6}, [6772] = {.lex_state = 102, .external_lex_state = 6}, [6773] = {.lex_state = 102, .external_lex_state = 6}, - [6774] = {.lex_state = 102, .external_lex_state = 6}, - [6775] = {.lex_state = 102, .external_lex_state = 6}, + [6774] = {.lex_state = 53, .external_lex_state = 6}, + [6775] = {.lex_state = 263, .external_lex_state = 6}, [6776] = {.lex_state = 102, .external_lex_state = 6}, [6777] = {.lex_state = 102, .external_lex_state = 6}, - [6778] = {.lex_state = 102, .external_lex_state = 6}, + [6778] = {.lex_state = 53, .external_lex_state = 6}, [6779] = {.lex_state = 102, .external_lex_state = 6}, [6780] = {.lex_state = 102, .external_lex_state = 6}, - [6781] = {.lex_state = 102, .external_lex_state = 6}, - [6782] = {.lex_state = 53, .external_lex_state = 6}, - [6783] = {.lex_state = 102, .external_lex_state = 6}, - [6784] = {.lex_state = 53, .external_lex_state = 6}, - [6785] = {.lex_state = 53, .external_lex_state = 6}, + [6781] = {.lex_state = 53, .external_lex_state = 6}, + [6782] = {.lex_state = 65, .external_lex_state = 6}, + [6783] = {.lex_state = 53, .external_lex_state = 6}, + [6784] = {.lex_state = 102, .external_lex_state = 6}, + [6785] = {.lex_state = 102, .external_lex_state = 6}, [6786] = {.lex_state = 102, .external_lex_state = 6}, [6787] = {.lex_state = 102, .external_lex_state = 6}, - [6788] = {.lex_state = 53, .external_lex_state = 6}, - [6789] = {.lex_state = 53, .external_lex_state = 6}, - [6790] = {.lex_state = 53, .external_lex_state = 6}, - [6791] = {.lex_state = 53, .external_lex_state = 6}, + [6788] = {.lex_state = 102, .external_lex_state = 6}, + [6789] = {.lex_state = 102, .external_lex_state = 6}, + [6790] = {.lex_state = 102, .external_lex_state = 6}, + [6791] = {.lex_state = 102, .external_lex_state = 6}, [6792] = {.lex_state = 102, .external_lex_state = 6}, [6793] = {.lex_state = 102, .external_lex_state = 6}, [6794] = {.lex_state = 102, .external_lex_state = 6}, [6795] = {.lex_state = 102, .external_lex_state = 6}, - [6796] = {.lex_state = 53, .external_lex_state = 6}, + [6796] = {.lex_state = 102, .external_lex_state = 6}, [6797] = {.lex_state = 102, .external_lex_state = 6}, [6798] = {.lex_state = 102, .external_lex_state = 6}, [6799] = {.lex_state = 53, .external_lex_state = 6}, [6800] = {.lex_state = 102, .external_lex_state = 6}, - [6801] = {.lex_state = 102, .external_lex_state = 6}, + [6801] = {.lex_state = 65, .external_lex_state = 6}, [6802] = {.lex_state = 53, .external_lex_state = 6}, [6803] = {.lex_state = 102, .external_lex_state = 6}, - [6804] = {.lex_state = 53, .external_lex_state = 6}, + [6804] = {.lex_state = 102, .external_lex_state = 6}, [6805] = {.lex_state = 53, .external_lex_state = 6}, - [6806] = {.lex_state = 102, .external_lex_state = 6}, - [6807] = {.lex_state = 263, .external_lex_state = 6}, - [6808] = {.lex_state = 53, .external_lex_state = 6}, + [6806] = {.lex_state = 263, .external_lex_state = 6}, + [6807] = {.lex_state = 65, .external_lex_state = 6}, + [6808] = {.lex_state = 63, .external_lex_state = 6}, [6809] = {.lex_state = 263, .external_lex_state = 6}, - [6810] = {.lex_state = 102, .external_lex_state = 6}, - [6811] = {.lex_state = 65, .external_lex_state = 6}, + [6810] = {.lex_state = 53, .external_lex_state = 6}, + [6811] = {.lex_state = 263, .external_lex_state = 6}, [6812] = {.lex_state = 53, .external_lex_state = 6}, - [6813] = {.lex_state = 263, .external_lex_state = 6}, - [6814] = {.lex_state = 63, .external_lex_state = 6}, - [6815] = {.lex_state = 102, .external_lex_state = 6}, - [6816] = {.lex_state = 53, .external_lex_state = 6}, - [6817] = {.lex_state = 63, .external_lex_state = 6}, + [6813] = {.lex_state = 102, .external_lex_state = 6}, + [6814] = {.lex_state = 65, .external_lex_state = 6}, + [6815] = {.lex_state = 53, .external_lex_state = 6}, + [6816] = {.lex_state = 65, .external_lex_state = 6}, + [6817] = {.lex_state = 102, .external_lex_state = 6}, [6818] = {.lex_state = 102, .external_lex_state = 6}, [6819] = {.lex_state = 102, .external_lex_state = 6}, - [6820] = {.lex_state = 65, .external_lex_state = 6}, - [6821] = {.lex_state = 53, .external_lex_state = 6}, - [6822] = {.lex_state = 102, .external_lex_state = 6}, + [6820] = {.lex_state = 63, .external_lex_state = 6}, + [6821] = {.lex_state = 102, .external_lex_state = 6}, + [6822] = {.lex_state = 65, .external_lex_state = 6}, [6823] = {.lex_state = 102, .external_lex_state = 6}, - [6824] = {.lex_state = 65, .external_lex_state = 6}, - [6825] = {.lex_state = 263, .external_lex_state = 6}, - [6826] = {.lex_state = 65, .external_lex_state = 6}, + [6824] = {.lex_state = 263, .external_lex_state = 6}, + [6825] = {.lex_state = 102, .external_lex_state = 6}, + [6826] = {.lex_state = 263, .external_lex_state = 6}, [6827] = {.lex_state = 102, .external_lex_state = 6}, - [6828] = {.lex_state = 65, .external_lex_state = 6}, - [6829] = {.lex_state = 65, .external_lex_state = 6}, - [6830] = {.lex_state = 263, .external_lex_state = 6}, - [6831] = {.lex_state = 263, .external_lex_state = 6}, + [6828] = {.lex_state = 102, .external_lex_state = 6}, + [6829] = {.lex_state = 102, .external_lex_state = 6}, + [6830] = {.lex_state = 102, .external_lex_state = 6}, + [6831] = {.lex_state = 102, .external_lex_state = 6}, [6832] = {.lex_state = 102, .external_lex_state = 6}, - [6833] = {.lex_state = 102, .external_lex_state = 6}, + [6833] = {.lex_state = 65, .external_lex_state = 6}, [6834] = {.lex_state = 53, .external_lex_state = 6}, - [6835] = {.lex_state = 102, .external_lex_state = 6}, - [6836] = {.lex_state = 263, .external_lex_state = 6}, - [6837] = {.lex_state = 53, .external_lex_state = 6}, + [6835] = {.lex_state = 65, .external_lex_state = 6}, + [6836] = {.lex_state = 102, .external_lex_state = 6}, + [6837] = {.lex_state = 263, .external_lex_state = 6}, [6838] = {.lex_state = 102, .external_lex_state = 6}, - [6839] = {.lex_state = 65, .external_lex_state = 6}, + [6839] = {.lex_state = 263, .external_lex_state = 6}, [6840] = {.lex_state = 102, .external_lex_state = 6}, [6841] = {.lex_state = 102, .external_lex_state = 6}, - [6842] = {.lex_state = 263, .external_lex_state = 6}, - [6843] = {.lex_state = 102, .external_lex_state = 6}, + [6842] = {.lex_state = 102, .external_lex_state = 6}, + [6843] = {.lex_state = 53, .external_lex_state = 6}, [6844] = {.lex_state = 102, .external_lex_state = 6}, - [6845] = {.lex_state = 263, .external_lex_state = 6}, + [6845] = {.lex_state = 102, .external_lex_state = 6}, [6846] = {.lex_state = 102, .external_lex_state = 6}, - [6847] = {.lex_state = 263, .external_lex_state = 6}, + [6847] = {.lex_state = 102, .external_lex_state = 6}, [6848] = {.lex_state = 102, .external_lex_state = 6}, - [6849] = {.lex_state = 102, .external_lex_state = 6}, + [6849] = {.lex_state = 263, .external_lex_state = 6}, [6850] = {.lex_state = 102, .external_lex_state = 6}, [6851] = {.lex_state = 102, .external_lex_state = 6}, [6852] = {.lex_state = 102, .external_lex_state = 6}, - [6853] = {.lex_state = 65, .external_lex_state = 6}, + [6853] = {.lex_state = 102, .external_lex_state = 6}, [6854] = {.lex_state = 263, .external_lex_state = 6}, [6855] = {.lex_state = 263, .external_lex_state = 6}, [6856] = {.lex_state = 263, .external_lex_state = 6}, @@ -30533,19 +30518,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6863] = {.lex_state = 263, .external_lex_state = 6}, [6864] = {.lex_state = 263, .external_lex_state = 6}, [6865] = {.lex_state = 50, .external_lex_state = 6}, - [6866] = {.lex_state = 263, .external_lex_state = 6}, - [6867] = {.lex_state = 50, .external_lex_state = 6}, + [6866] = {.lex_state = 100, .external_lex_state = 6}, + [6867] = {.lex_state = 263, .external_lex_state = 6}, [6868] = {.lex_state = 263, .external_lex_state = 6}, - [6869] = {.lex_state = 50, .external_lex_state = 6}, + [6869] = {.lex_state = 263, .external_lex_state = 6}, [6870] = {.lex_state = 263, .external_lex_state = 6}, [6871] = {.lex_state = 263, .external_lex_state = 6}, [6872] = {.lex_state = 263, .external_lex_state = 6}, [6873] = {.lex_state = 263, .external_lex_state = 6}, [6874] = {.lex_state = 263, .external_lex_state = 6}, - [6875] = {.lex_state = 263, .external_lex_state = 6}, + [6875] = {.lex_state = 50, .external_lex_state = 6}, [6876] = {.lex_state = 263, .external_lex_state = 6}, [6877] = {.lex_state = 263, .external_lex_state = 6}, - [6878] = {.lex_state = 100, .external_lex_state = 6}, + [6878] = {.lex_state = 263, .external_lex_state = 6}, [6879] = {.lex_state = 263, .external_lex_state = 6}, [6880] = {.lex_state = 263, .external_lex_state = 6}, [6881] = {.lex_state = 263, .external_lex_state = 6}, @@ -30558,12 +30543,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6888] = {.lex_state = 263, .external_lex_state = 6}, [6889] = {.lex_state = 263, .external_lex_state = 6}, [6890] = {.lex_state = 263, .external_lex_state = 6}, - [6891] = {.lex_state = 50, .external_lex_state = 6}, + [6891] = {.lex_state = 263, .external_lex_state = 6}, [6892] = {.lex_state = 263, .external_lex_state = 6}, - [6893] = {.lex_state = 263, .external_lex_state = 6}, - [6894] = {.lex_state = 100, .external_lex_state = 6}, + [6893] = {.lex_state = 50, .external_lex_state = 6}, + [6894] = {.lex_state = 263, .external_lex_state = 6}, [6895] = {.lex_state = 263, .external_lex_state = 6}, - [6896] = {.lex_state = 263, .external_lex_state = 6}, + [6896] = {.lex_state = 100, .external_lex_state = 6}, [6897] = {.lex_state = 263, .external_lex_state = 6}, [6898] = {.lex_state = 263, .external_lex_state = 6}, [6899] = {.lex_state = 263, .external_lex_state = 6}, @@ -30588,292 +30573,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6918] = {.lex_state = 263, .external_lex_state = 6}, [6919] = {.lex_state = 263, .external_lex_state = 6}, [6920] = {.lex_state = 263, .external_lex_state = 6}, - [6921] = {.lex_state = 50, .external_lex_state = 6}, - [6922] = {.lex_state = 263, .external_lex_state = 6}, + [6921] = {.lex_state = 263, .external_lex_state = 6}, + [6922] = {.lex_state = 50, .external_lex_state = 6}, [6923] = {.lex_state = 263, .external_lex_state = 6}, [6924] = {.lex_state = 263, .external_lex_state = 6}, [6925] = {.lex_state = 263, .external_lex_state = 6}, - [6926] = {.lex_state = 50, .external_lex_state = 6}, + [6926] = {.lex_state = 100, .external_lex_state = 6}, [6927] = {.lex_state = 263, .external_lex_state = 6}, - [6928] = {.lex_state = 100, .external_lex_state = 6}, + [6928] = {.lex_state = 263, .external_lex_state = 6}, [6929] = {.lex_state = 263, .external_lex_state = 6}, [6930] = {.lex_state = 263, .external_lex_state = 6}, [6931] = {.lex_state = 263, .external_lex_state = 6}, [6932] = {.lex_state = 263, .external_lex_state = 6}, - [6933] = {.lex_state = 100, .external_lex_state = 6}, + [6933] = {.lex_state = 263, .external_lex_state = 6}, [6934] = {.lex_state = 263, .external_lex_state = 6}, - [6935] = {.lex_state = 263, .external_lex_state = 6}, - [6936] = {.lex_state = 263, .external_lex_state = 6}, + [6935] = {.lex_state = 50, .external_lex_state = 6}, + [6936] = {.lex_state = 100, .external_lex_state = 6}, [6937] = {.lex_state = 263, .external_lex_state = 6}, [6938] = {.lex_state = 263, .external_lex_state = 6}, [6939] = {.lex_state = 263, .external_lex_state = 6}, [6940] = {.lex_state = 263, .external_lex_state = 6}, [6941] = {.lex_state = 263, .external_lex_state = 6}, [6942] = {.lex_state = 263, .external_lex_state = 6}, - [6943] = {.lex_state = 50, .external_lex_state = 6}, + [6943] = {.lex_state = 263, .external_lex_state = 6}, [6944] = {.lex_state = 263, .external_lex_state = 6}, [6945] = {.lex_state = 263, .external_lex_state = 6}, [6946] = {.lex_state = 263, .external_lex_state = 6}, - [6947] = {.lex_state = 100, .external_lex_state = 6}, - [6948] = {.lex_state = 263, .external_lex_state = 6}, + [6947] = {.lex_state = 263, .external_lex_state = 6}, + [6948] = {.lex_state = 50, .external_lex_state = 6}, [6949] = {.lex_state = 100, .external_lex_state = 6}, - [6950] = {.lex_state = 100, .external_lex_state = 6}, + [6950] = {.lex_state = 263, .external_lex_state = 6}, [6951] = {.lex_state = 263, .external_lex_state = 6}, [6952] = {.lex_state = 263, .external_lex_state = 6}, [6953] = {.lex_state = 263, .external_lex_state = 6}, [6954] = {.lex_state = 263, .external_lex_state = 6}, [6955] = {.lex_state = 263, .external_lex_state = 6}, [6956] = {.lex_state = 263, .external_lex_state = 6}, - [6957] = {.lex_state = 263, .external_lex_state = 6}, + [6957] = {.lex_state = 100, .external_lex_state = 6}, [6958] = {.lex_state = 263, .external_lex_state = 6}, [6959] = {.lex_state = 263, .external_lex_state = 6}, [6960] = {.lex_state = 263, .external_lex_state = 6}, [6961] = {.lex_state = 263, .external_lex_state = 6}, - [6962] = {.lex_state = 100, .external_lex_state = 6}, + [6962] = {.lex_state = 263, .external_lex_state = 6}, [6963] = {.lex_state = 263, .external_lex_state = 6}, [6964] = {.lex_state = 263, .external_lex_state = 6}, - [6965] = {.lex_state = 263, .external_lex_state = 6}, + [6965] = {.lex_state = 50, .external_lex_state = 6}, [6966] = {.lex_state = 100, .external_lex_state = 6}, [6967] = {.lex_state = 263, .external_lex_state = 6}, [6968] = {.lex_state = 263, .external_lex_state = 6}, - [6969] = {.lex_state = 263, .external_lex_state = 6}, - [6970] = {.lex_state = 263, .external_lex_state = 6}, - [6971] = {.lex_state = 50, .external_lex_state = 6}, + [6969] = {.lex_state = 50, .external_lex_state = 6}, + [6970] = {.lex_state = 100, .external_lex_state = 6}, + [6971] = {.lex_state = 263, .external_lex_state = 6}, [6972] = {.lex_state = 263, .external_lex_state = 6}, [6973] = {.lex_state = 263, .external_lex_state = 6}, [6974] = {.lex_state = 263, .external_lex_state = 6}, [6975] = {.lex_state = 263, .external_lex_state = 6}, - [6976] = {.lex_state = 100, .external_lex_state = 6}, - [6977] = {.lex_state = 263, .external_lex_state = 6}, + [6976] = {.lex_state = 263, .external_lex_state = 6}, + [6977] = {.lex_state = 100, .external_lex_state = 6}, [6978] = {.lex_state = 263, .external_lex_state = 6}, [6979] = {.lex_state = 50, .external_lex_state = 6}, [6980] = {.lex_state = 50, .external_lex_state = 6}, [6981] = {.lex_state = 263, .external_lex_state = 6}, - [6982] = {.lex_state = 263, .external_lex_state = 6}, + [6982] = {.lex_state = 100, .external_lex_state = 6}, [6983] = {.lex_state = 263, .external_lex_state = 6}, [6984] = {.lex_state = 263, .external_lex_state = 6}, [6985] = {.lex_state = 263, .external_lex_state = 6}, }; -enum { - ts_external_token__quoted_content_i_single = 0, - ts_external_token__quoted_content_i_double = 1, - ts_external_token__quoted_content_i_heredoc_single = 2, - ts_external_token__quoted_content_i_heredoc_double = 3, - ts_external_token__quoted_content_i_parenthesis = 4, - ts_external_token__quoted_content_i_curly = 5, - ts_external_token__quoted_content_i_square = 6, - ts_external_token__quoted_content_i_angle = 7, - ts_external_token__quoted_content_i_bar = 8, - ts_external_token__quoted_content_i_slash = 9, - ts_external_token__quoted_content_single = 10, - ts_external_token__quoted_content_double = 11, - ts_external_token__quoted_content_heredoc_single = 12, - ts_external_token__quoted_content_heredoc_double = 13, - ts_external_token__quoted_content_parenthesis = 14, - ts_external_token__quoted_content_curly = 15, - ts_external_token__quoted_content_square = 16, - ts_external_token__quoted_content_angle = 17, - ts_external_token__quoted_content_bar = 18, - ts_external_token__quoted_content_slash = 19, - ts_external_token__newline_before_do = 20, - ts_external_token__newline_before_binary_operator = 21, - ts_external_token__newline_before_comment = 22, - ts_external_token__before_unary_op = 23, - ts_external_token__not_in = 24, - ts_external_token__quoted_atom_start = 25, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__quoted_content_i_single] = sym__quoted_content_i_single, - [ts_external_token__quoted_content_i_double] = sym__quoted_content_i_double, - [ts_external_token__quoted_content_i_heredoc_single] = sym__quoted_content_i_heredoc_single, - [ts_external_token__quoted_content_i_heredoc_double] = sym__quoted_content_i_heredoc_double, - [ts_external_token__quoted_content_i_parenthesis] = sym__quoted_content_i_parenthesis, - [ts_external_token__quoted_content_i_curly] = sym__quoted_content_i_curly, - [ts_external_token__quoted_content_i_square] = sym__quoted_content_i_square, - [ts_external_token__quoted_content_i_angle] = sym__quoted_content_i_angle, - [ts_external_token__quoted_content_i_bar] = sym__quoted_content_i_bar, - [ts_external_token__quoted_content_i_slash] = sym__quoted_content_i_slash, - [ts_external_token__quoted_content_single] = sym__quoted_content_single, - [ts_external_token__quoted_content_double] = sym__quoted_content_double, - [ts_external_token__quoted_content_heredoc_single] = sym__quoted_content_heredoc_single, - [ts_external_token__quoted_content_heredoc_double] = sym__quoted_content_heredoc_double, - [ts_external_token__quoted_content_parenthesis] = sym__quoted_content_parenthesis, - [ts_external_token__quoted_content_curly] = sym__quoted_content_curly, - [ts_external_token__quoted_content_square] = sym__quoted_content_square, - [ts_external_token__quoted_content_angle] = sym__quoted_content_angle, - [ts_external_token__quoted_content_bar] = sym__quoted_content_bar, - [ts_external_token__quoted_content_slash] = sym__quoted_content_slash, - [ts_external_token__newline_before_do] = sym__newline_before_do, - [ts_external_token__newline_before_binary_operator] = sym__newline_before_binary_operator, - [ts_external_token__newline_before_comment] = sym__newline_before_comment, - [ts_external_token__before_unary_op] = sym__before_unary_op, - [ts_external_token__not_in] = sym__not_in, - [ts_external_token__quoted_atom_start] = sym__quoted_atom_start, -}; - -static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__quoted_content_i_single] = true, - [ts_external_token__quoted_content_i_double] = true, - [ts_external_token__quoted_content_i_heredoc_single] = true, - [ts_external_token__quoted_content_i_heredoc_double] = true, - [ts_external_token__quoted_content_i_parenthesis] = true, - [ts_external_token__quoted_content_i_curly] = true, - [ts_external_token__quoted_content_i_square] = true, - [ts_external_token__quoted_content_i_angle] = true, - [ts_external_token__quoted_content_i_bar] = true, - [ts_external_token__quoted_content_i_slash] = true, - [ts_external_token__quoted_content_single] = true, - [ts_external_token__quoted_content_double] = true, - [ts_external_token__quoted_content_heredoc_single] = true, - [ts_external_token__quoted_content_heredoc_double] = true, - [ts_external_token__quoted_content_parenthesis] = true, - [ts_external_token__quoted_content_curly] = true, - [ts_external_token__quoted_content_square] = true, - [ts_external_token__quoted_content_angle] = true, - [ts_external_token__quoted_content_bar] = true, - [ts_external_token__quoted_content_slash] = true, - [ts_external_token__newline_before_do] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - [ts_external_token__before_unary_op] = true, - [ts_external_token__not_in] = true, - [ts_external_token__quoted_atom_start] = true, - }, - [2] = { - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - [ts_external_token__before_unary_op] = true, - [ts_external_token__not_in] = true, - [ts_external_token__quoted_atom_start] = true, - }, - [3] = { - [ts_external_token__newline_before_do] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - [ts_external_token__before_unary_op] = true, - [ts_external_token__not_in] = true, - [ts_external_token__quoted_atom_start] = true, - }, - [4] = { - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - [ts_external_token__not_in] = true, - }, - [5] = { - [ts_external_token__newline_before_do] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - [ts_external_token__not_in] = true, - }, - [6] = { - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [7] = { - [ts_external_token__quoted_content_i_single] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [8] = { - [ts_external_token__quoted_content_i_heredoc_single] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [9] = { - [ts_external_token__quoted_content_i_double] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [10] = { - [ts_external_token__quoted_content_i_heredoc_double] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [11] = { - [ts_external_token__quoted_content_i_slash] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [12] = { - [ts_external_token__quoted_content_i_bar] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [13] = { - [ts_external_token__quoted_content_i_angle] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [14] = { - [ts_external_token__quoted_content_i_square] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [15] = { - [ts_external_token__quoted_content_i_curly] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [16] = { - [ts_external_token__quoted_content_i_parenthesis] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [17] = { - [ts_external_token__quoted_content_heredoc_single] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [18] = { - [ts_external_token__quoted_content_heredoc_double] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [19] = { - [ts_external_token__quoted_content_double] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [20] = { - [ts_external_token__quoted_content_single] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [21] = { - [ts_external_token__quoted_content_parenthesis] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [22] = { - [ts_external_token__quoted_content_slash] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [23] = { - [ts_external_token__quoted_content_angle] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [24] = { - [ts_external_token__quoted_content_curly] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [25] = { - [ts_external_token__quoted_content_square] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, - [26] = { - [ts_external_token__quoted_content_bar] = true, - [ts_external_token__newline_before_binary_operator] = true, - [ts_external_token__newline_before_comment] = true, - }, -}; - static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), @@ -31001,44 +30767,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [1] = { [sym_source] = STATE(6930), [sym__terminator] = STATE(425), - [sym__expression] = STATE(2961), - [sym_block] = STATE(2961), + [sym__expression] = STATE(2950), + [sym_block] = STATE(2950), [sym_identifier] = STATE(60), - [sym_boolean] = STATE(2961), - [sym_nil] = STATE(2961), - [sym__atom] = STATE(2961), - [sym_quoted_atom] = STATE(2961), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(2961), - [sym_charlist] = STATE(2961), - [sym_sigil] = STATE(2961), - [sym_list] = STATE(2961), - [sym_tuple] = STATE(2961), - [sym_bitstring] = STATE(2961), - [sym_map] = STATE(2961), - [sym__nullary_operator] = STATE(2961), - [sym_unary_operator] = STATE(2961), - [sym_binary_operator] = STATE(2961), + [sym_boolean] = STATE(2950), + [sym_nil] = STATE(2950), + [sym__atom] = STATE(2950), + [sym_quoted_atom] = STATE(2950), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(2950), + [sym_charlist] = STATE(2950), + [sym_sigil] = STATE(2950), + [sym_list] = STATE(2950), + [sym_tuple] = STATE(2950), + [sym_bitstring] = STATE(2950), + [sym_map] = STATE(2950), + [sym__nullary_operator] = STATE(2950), + [sym_unary_operator] = STATE(2950), + [sym_binary_operator] = STATE(2950), [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(2961), - [sym_call] = STATE(2961), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym_dot] = STATE(2950), + [sym_call] = STATE(2950), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(2961), - [sym_anonymous_function] = STATE(2961), - [aux_sym__terminator_repeat1] = STATE(1033), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(2950), + [sym_anonymous_function] = STATE(2950), + [aux_sym__terminator_repeat1] = STATE(1031), [ts_builtin_sym_end] = ACTIONS(7), [aux_sym__terminator_token1] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -31122,59 +30888,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2] = { [sym__terminator] = STATE(27), - [sym__expression] = STATE(1083), - [sym_block] = STATE(1083), + [sym__expression] = STATE(1062), + [sym_block] = STATE(1062), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1083), - [sym_nil] = STATE(1083), - [sym__atom] = STATE(1083), - [sym_quoted_atom] = STATE(1083), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1083), - [sym_charlist] = STATE(1083), - [sym_sigil] = STATE(1083), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1083), - [sym_tuple] = STATE(1083), - [sym_bitstring] = STATE(1083), - [sym_map] = STATE(1083), - [sym__nullary_operator] = STATE(1083), - [sym_unary_operator] = STATE(1083), - [sym_binary_operator] = STATE(1083), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1083), - [sym_call] = STATE(1083), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1062), + [sym_nil] = STATE(1062), + [sym__atom] = STATE(1062), + [sym_quoted_atom] = STATE(1062), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1062), + [sym_charlist] = STATE(1062), + [sym_sigil] = STATE(1062), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1062), + [sym_tuple] = STATE(1062), + [sym_bitstring] = STATE(1062), + [sym_map] = STATE(1062), + [sym__nullary_operator] = STATE(1062), + [sym_unary_operator] = STATE(1062), + [sym_binary_operator] = STATE(1062), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1062), + [sym_call] = STATE(1062), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4691), - [sym_rescue_block] = STATE(4691), - [sym_catch_block] = STATE(4691), - [sym_else_block] = STATE(4691), - [sym_access_call] = STATE(1083), - [sym_stab_clause] = STATE(4616), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1083), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4691), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4695), + [sym_rescue_block] = STATE(4695), + [sym_catch_block] = STATE(4695), + [sym_else_block] = STATE(4695), + [sym_access_call] = STATE(1062), + [sym_stab_clause] = STATE(4662), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1062), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4695), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(61), [anon_sym_LPAREN] = ACTIONS(63), @@ -31263,59 +31029,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [3] = { [sym__terminator] = STATE(33), - [sym__expression] = STATE(1064), - [sym_block] = STATE(1064), + [sym__expression] = STATE(1080), + [sym_block] = STATE(1080), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1064), - [sym_nil] = STATE(1064), - [sym__atom] = STATE(1064), - [sym_quoted_atom] = STATE(1064), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1064), - [sym_charlist] = STATE(1064), - [sym_sigil] = STATE(1064), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1064), - [sym_tuple] = STATE(1064), - [sym_bitstring] = STATE(1064), - [sym_map] = STATE(1064), - [sym__nullary_operator] = STATE(1064), - [sym_unary_operator] = STATE(1064), - [sym_binary_operator] = STATE(1064), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1064), - [sym_call] = STATE(1064), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1080), + [sym_nil] = STATE(1080), + [sym__atom] = STATE(1080), + [sym_quoted_atom] = STATE(1080), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1080), + [sym_charlist] = STATE(1080), + [sym_sigil] = STATE(1080), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1080), + [sym_tuple] = STATE(1080), + [sym_bitstring] = STATE(1080), + [sym_map] = STATE(1080), + [sym__nullary_operator] = STATE(1080), + [sym_unary_operator] = STATE(1080), + [sym_binary_operator] = STATE(1080), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1080), + [sym_call] = STATE(1080), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4692), - [sym_rescue_block] = STATE(4692), - [sym_catch_block] = STATE(4692), - [sym_else_block] = STATE(4692), - [sym_access_call] = STATE(1064), - [sym_stab_clause] = STATE(4685), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1064), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4692), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4708), + [sym_rescue_block] = STATE(4708), + [sym_catch_block] = STATE(4708), + [sym_else_block] = STATE(4708), + [sym_access_call] = STATE(1080), + [sym_stab_clause] = STATE(4679), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1080), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4708), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(63), @@ -31404,59 +31170,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [4] = { [sym__terminator] = STATE(25), - [sym__expression] = STATE(1080), - [sym_block] = STATE(1080), + [sym__expression] = STATE(1065), + [sym_block] = STATE(1065), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1080), - [sym_nil] = STATE(1080), - [sym__atom] = STATE(1080), - [sym_quoted_atom] = STATE(1080), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1080), - [sym_charlist] = STATE(1080), - [sym_sigil] = STATE(1080), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1080), - [sym_tuple] = STATE(1080), - [sym_bitstring] = STATE(1080), - [sym_map] = STATE(1080), - [sym__nullary_operator] = STATE(1080), - [sym_unary_operator] = STATE(1080), - [sym_binary_operator] = STATE(1080), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1080), - [sym_call] = STATE(1080), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1065), + [sym_nil] = STATE(1065), + [sym__atom] = STATE(1065), + [sym_quoted_atom] = STATE(1065), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1065), + [sym_charlist] = STATE(1065), + [sym_sigil] = STATE(1065), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1065), + [sym_tuple] = STATE(1065), + [sym_bitstring] = STATE(1065), + [sym_map] = STATE(1065), + [sym__nullary_operator] = STATE(1065), + [sym_unary_operator] = STATE(1065), + [sym_binary_operator] = STATE(1065), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1065), + [sym_call] = STATE(1065), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4735), - [sym_rescue_block] = STATE(4735), - [sym_catch_block] = STATE(4735), - [sym_else_block] = STATE(4735), - [sym_access_call] = STATE(1080), - [sym_stab_clause] = STATE(4617), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1080), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4735), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4710), + [sym_rescue_block] = STATE(4710), + [sym_catch_block] = STATE(4710), + [sym_else_block] = STATE(4710), + [sym_access_call] = STATE(1065), + [sym_stab_clause] = STATE(4620), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1065), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4710), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(125), [anon_sym_LPAREN] = ACTIONS(63), @@ -31545,59 +31311,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5] = { [sym__terminator] = STATE(30), - [sym__expression] = STATE(1082), - [sym_block] = STATE(1082), + [sym__expression] = STATE(1083), + [sym_block] = STATE(1083), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1082), - [sym_nil] = STATE(1082), - [sym__atom] = STATE(1082), - [sym_quoted_atom] = STATE(1082), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1082), - [sym_charlist] = STATE(1082), - [sym_sigil] = STATE(1082), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1082), - [sym_tuple] = STATE(1082), - [sym_bitstring] = STATE(1082), - [sym_map] = STATE(1082), - [sym__nullary_operator] = STATE(1082), - [sym_unary_operator] = STATE(1082), - [sym_binary_operator] = STATE(1082), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1082), - [sym_call] = STATE(1082), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1083), + [sym_nil] = STATE(1083), + [sym__atom] = STATE(1083), + [sym_quoted_atom] = STATE(1083), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1083), + [sym_charlist] = STATE(1083), + [sym_sigil] = STATE(1083), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1083), + [sym_tuple] = STATE(1083), + [sym_bitstring] = STATE(1083), + [sym_map] = STATE(1083), + [sym__nullary_operator] = STATE(1083), + [sym_unary_operator] = STATE(1083), + [sym_binary_operator] = STATE(1083), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1083), + [sym_call] = STATE(1083), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4716), - [sym_rescue_block] = STATE(4716), - [sym_catch_block] = STATE(4716), - [sym_else_block] = STATE(4716), - [sym_access_call] = STATE(1082), - [sym_stab_clause] = STATE(4634), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1082), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4716), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4701), + [sym_rescue_block] = STATE(4701), + [sym_catch_block] = STATE(4701), + [sym_else_block] = STATE(4701), + [sym_access_call] = STATE(1083), + [sym_stab_clause] = STATE(4676), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1083), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4701), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(63), @@ -31686,59 +31452,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [sym__terminator] = STATE(21), - [sym__expression] = STATE(1077), - [sym_block] = STATE(1077), + [sym__expression] = STATE(1064), + [sym_block] = STATE(1064), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1077), - [sym_nil] = STATE(1077), - [sym__atom] = STATE(1077), - [sym_quoted_atom] = STATE(1077), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1077), - [sym_charlist] = STATE(1077), - [sym_sigil] = STATE(1077), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1077), - [sym_tuple] = STATE(1077), - [sym_bitstring] = STATE(1077), - [sym_map] = STATE(1077), - [sym__nullary_operator] = STATE(1077), - [sym_unary_operator] = STATE(1077), - [sym_binary_operator] = STATE(1077), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1077), - [sym_call] = STATE(1077), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1064), + [sym_nil] = STATE(1064), + [sym__atom] = STATE(1064), + [sym_quoted_atom] = STATE(1064), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1064), + [sym_charlist] = STATE(1064), + [sym_sigil] = STATE(1064), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1064), + [sym_tuple] = STATE(1064), + [sym_bitstring] = STATE(1064), + [sym_map] = STATE(1064), + [sym__nullary_operator] = STATE(1064), + [sym_unary_operator] = STATE(1064), + [sym_binary_operator] = STATE(1064), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1064), + [sym_call] = STATE(1064), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4731), - [sym_rescue_block] = STATE(4731), - [sym_catch_block] = STATE(4731), - [sym_else_block] = STATE(4731), - [sym_access_call] = STATE(1077), - [sym_stab_clause] = STATE(4647), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1077), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4731), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4711), + [sym_rescue_block] = STATE(4711), + [sym_catch_block] = STATE(4711), + [sym_else_block] = STATE(4711), + [sym_access_call] = STATE(1064), + [sym_stab_clause] = STATE(4625), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1064), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4711), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(137), [anon_sym_LPAREN] = ACTIONS(63), @@ -31827,59 +31593,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [7] = { [sym__terminator] = STATE(26), - [sym__expression] = STATE(1063), - [sym_block] = STATE(1063), + [sym__expression] = STATE(1073), + [sym_block] = STATE(1073), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1063), - [sym_nil] = STATE(1063), - [sym__atom] = STATE(1063), - [sym_quoted_atom] = STATE(1063), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1063), - [sym_charlist] = STATE(1063), - [sym_sigil] = STATE(1063), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1063), - [sym_tuple] = STATE(1063), - [sym_bitstring] = STATE(1063), - [sym_map] = STATE(1063), - [sym__nullary_operator] = STATE(1063), - [sym_unary_operator] = STATE(1063), - [sym_binary_operator] = STATE(1063), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1063), - [sym_call] = STATE(1063), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1073), + [sym_nil] = STATE(1073), + [sym__atom] = STATE(1073), + [sym_quoted_atom] = STATE(1073), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1073), + [sym_charlist] = STATE(1073), + [sym_sigil] = STATE(1073), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1073), + [sym_tuple] = STATE(1073), + [sym_bitstring] = STATE(1073), + [sym_map] = STATE(1073), + [sym__nullary_operator] = STATE(1073), + [sym_unary_operator] = STATE(1073), + [sym_binary_operator] = STATE(1073), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1073), + [sym_call] = STATE(1073), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4695), - [sym_rescue_block] = STATE(4695), - [sym_catch_block] = STATE(4695), - [sym_else_block] = STATE(4695), - [sym_access_call] = STATE(1063), - [sym_stab_clause] = STATE(4619), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1063), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4695), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4744), + [sym_rescue_block] = STATE(4744), + [sym_catch_block] = STATE(4744), + [sym_else_block] = STATE(4744), + [sym_access_call] = STATE(1073), + [sym_stab_clause] = STATE(4626), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1073), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4744), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(143), [anon_sym_LPAREN] = ACTIONS(63), @@ -31968,59 +31734,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [8] = { [sym__terminator] = STATE(31), - [sym__expression] = STATE(1076), - [sym_block] = STATE(1076), + [sym__expression] = STATE(1068), + [sym_block] = STATE(1068), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1076), - [sym_nil] = STATE(1076), - [sym__atom] = STATE(1076), - [sym_quoted_atom] = STATE(1076), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1076), - [sym_charlist] = STATE(1076), - [sym_sigil] = STATE(1076), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1076), - [sym_tuple] = STATE(1076), - [sym_bitstring] = STATE(1076), - [sym_map] = STATE(1076), - [sym__nullary_operator] = STATE(1076), - [sym_unary_operator] = STATE(1076), - [sym_binary_operator] = STATE(1076), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1076), - [sym_call] = STATE(1076), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1068), + [sym_nil] = STATE(1068), + [sym__atom] = STATE(1068), + [sym_quoted_atom] = STATE(1068), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1068), + [sym_charlist] = STATE(1068), + [sym_sigil] = STATE(1068), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1068), + [sym_tuple] = STATE(1068), + [sym_bitstring] = STATE(1068), + [sym_map] = STATE(1068), + [sym__nullary_operator] = STATE(1068), + [sym_unary_operator] = STATE(1068), + [sym_binary_operator] = STATE(1068), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1068), + [sym_call] = STATE(1068), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4746), - [sym_rescue_block] = STATE(4746), - [sym_catch_block] = STATE(4746), - [sym_else_block] = STATE(4746), - [sym_access_call] = STATE(1076), - [sym_stab_clause] = STATE(4658), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1076), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4746), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4726), + [sym_rescue_block] = STATE(4726), + [sym_catch_block] = STATE(4726), + [sym_else_block] = STATE(4726), + [sym_access_call] = STATE(1068), + [sym_stab_clause] = STATE(4674), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1068), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4726), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(149), [anon_sym_LPAREN] = ACTIONS(63), @@ -32109,59 +31875,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [9] = { [sym__terminator] = STATE(32), - [sym__expression] = STATE(1061), - [sym_block] = STATE(1061), + [sym__expression] = STATE(1077), + [sym_block] = STATE(1077), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1061), - [sym_nil] = STATE(1061), - [sym__atom] = STATE(1061), - [sym_quoted_atom] = STATE(1061), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1061), - [sym_charlist] = STATE(1061), - [sym_sigil] = STATE(1061), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1061), - [sym_tuple] = STATE(1061), - [sym_bitstring] = STATE(1061), - [sym_map] = STATE(1061), - [sym__nullary_operator] = STATE(1061), - [sym_unary_operator] = STATE(1061), - [sym_binary_operator] = STATE(1061), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1061), - [sym_call] = STATE(1061), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1077), + [sym_nil] = STATE(1077), + [sym__atom] = STATE(1077), + [sym_quoted_atom] = STATE(1077), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1077), + [sym_charlist] = STATE(1077), + [sym_sigil] = STATE(1077), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_bitstring] = STATE(1077), + [sym_map] = STATE(1077), + [sym__nullary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_binary_operator] = STATE(1077), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1077), + [sym_call] = STATE(1077), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4696), - [sym_rescue_block] = STATE(4696), - [sym_catch_block] = STATE(4696), - [sym_else_block] = STATE(4696), - [sym_access_call] = STATE(1061), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4749), + [sym_rescue_block] = STATE(4749), + [sym_catch_block] = STATE(4749), + [sym_else_block] = STATE(4749), + [sym_access_call] = STATE(1077), [sym_stab_clause] = STATE(4621), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1061), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4696), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1077), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4749), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(63), @@ -32250,59 +32016,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [10] = { [sym__terminator] = STATE(28), - [sym__expression] = STATE(1075), - [sym_block] = STATE(1075), + [sym__expression] = STATE(1070), + [sym_block] = STATE(1070), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1075), - [sym_nil] = STATE(1075), - [sym__atom] = STATE(1075), - [sym_quoted_atom] = STATE(1075), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1075), - [sym_charlist] = STATE(1075), - [sym_sigil] = STATE(1075), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1075), - [sym_tuple] = STATE(1075), - [sym_bitstring] = STATE(1075), - [sym_map] = STATE(1075), - [sym__nullary_operator] = STATE(1075), - [sym_unary_operator] = STATE(1075), - [sym_binary_operator] = STATE(1075), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1075), - [sym_call] = STATE(1075), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1070), + [sym_nil] = STATE(1070), + [sym__atom] = STATE(1070), + [sym_quoted_atom] = STATE(1070), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1070), + [sym_charlist] = STATE(1070), + [sym_sigil] = STATE(1070), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1070), + [sym_tuple] = STATE(1070), + [sym_bitstring] = STATE(1070), + [sym_map] = STATE(1070), + [sym__nullary_operator] = STATE(1070), + [sym_unary_operator] = STATE(1070), + [sym_binary_operator] = STATE(1070), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1070), + [sym_call] = STATE(1070), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4733), - [sym_rescue_block] = STATE(4733), - [sym_catch_block] = STATE(4733), - [sym_else_block] = STATE(4733), - [sym_access_call] = STATE(1075), - [sym_stab_clause] = STATE(4664), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1075), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4733), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4732), + [sym_rescue_block] = STATE(4732), + [sym_catch_block] = STATE(4732), + [sym_else_block] = STATE(4732), + [sym_access_call] = STATE(1070), + [sym_stab_clause] = STATE(4659), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1070), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4732), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_LPAREN] = ACTIONS(63), @@ -32391,59 +32157,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [11] = { [sym__terminator] = STATE(24), - [sym__expression] = STATE(1079), - [sym_block] = STATE(1079), + [sym__expression] = STATE(1081), + [sym_block] = STATE(1081), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1079), - [sym_nil] = STATE(1079), - [sym__atom] = STATE(1079), - [sym_quoted_atom] = STATE(1079), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1079), - [sym_charlist] = STATE(1079), - [sym_sigil] = STATE(1079), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1079), - [sym_tuple] = STATE(1079), - [sym_bitstring] = STATE(1079), - [sym_map] = STATE(1079), - [sym__nullary_operator] = STATE(1079), - [sym_unary_operator] = STATE(1079), - [sym_binary_operator] = STATE(1079), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1079), - [sym_call] = STATE(1079), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1081), + [sym_nil] = STATE(1081), + [sym__atom] = STATE(1081), + [sym_quoted_atom] = STATE(1081), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1081), + [sym_charlist] = STATE(1081), + [sym_sigil] = STATE(1081), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1081), + [sym_tuple] = STATE(1081), + [sym_bitstring] = STATE(1081), + [sym_map] = STATE(1081), + [sym__nullary_operator] = STATE(1081), + [sym_unary_operator] = STATE(1081), + [sym_binary_operator] = STATE(1081), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1081), + [sym_call] = STATE(1081), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4693), - [sym_rescue_block] = STATE(4693), - [sym_catch_block] = STATE(4693), - [sym_else_block] = STATE(4693), - [sym_access_call] = STATE(1079), - [sym_stab_clause] = STATE(4631), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1079), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4693), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4746), + [sym_rescue_block] = STATE(4746), + [sym_catch_block] = STATE(4746), + [sym_else_block] = STATE(4746), + [sym_access_call] = STATE(1081), + [sym_stab_clause] = STATE(4660), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1081), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4746), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(167), [anon_sym_LPAREN] = ACTIONS(63), @@ -32532,59 +32298,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [12] = { [sym__terminator] = STATE(23), - [sym__expression] = STATE(1060), - [sym_block] = STATE(1060), + [sym__expression] = STATE(1075), + [sym_block] = STATE(1075), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1060), - [sym_nil] = STATE(1060), - [sym__atom] = STATE(1060), - [sym_quoted_atom] = STATE(1060), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1060), - [sym_charlist] = STATE(1060), - [sym_sigil] = STATE(1060), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1060), - [sym_tuple] = STATE(1060), - [sym_bitstring] = STATE(1060), - [sym_map] = STATE(1060), - [sym__nullary_operator] = STATE(1060), - [sym_unary_operator] = STATE(1060), - [sym_binary_operator] = STATE(1060), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1060), - [sym_call] = STATE(1060), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1075), + [sym_nil] = STATE(1075), + [sym__atom] = STATE(1075), + [sym_quoted_atom] = STATE(1075), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1075), + [sym_charlist] = STATE(1075), + [sym_sigil] = STATE(1075), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1075), + [sym_tuple] = STATE(1075), + [sym_bitstring] = STATE(1075), + [sym_map] = STATE(1075), + [sym__nullary_operator] = STATE(1075), + [sym_unary_operator] = STATE(1075), + [sym_binary_operator] = STATE(1075), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1075), + [sym_call] = STATE(1075), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4697), - [sym_rescue_block] = STATE(4697), - [sym_catch_block] = STATE(4697), - [sym_else_block] = STATE(4697), - [sym_access_call] = STATE(1060), - [sym_stab_clause] = STATE(4625), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1060), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4697), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4735), + [sym_rescue_block] = STATE(4735), + [sym_catch_block] = STATE(4735), + [sym_else_block] = STATE(4735), + [sym_access_call] = STATE(1075), + [sym_stab_clause] = STATE(4657), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1075), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4735), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(63), @@ -32673,59 +32439,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [13] = { [sym__terminator] = STATE(22), - [sym__expression] = STATE(1078), - [sym_block] = STATE(1078), + [sym__expression] = STATE(1071), + [sym_block] = STATE(1071), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1078), - [sym_nil] = STATE(1078), - [sym__atom] = STATE(1078), - [sym_quoted_atom] = STATE(1078), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1078), - [sym_charlist] = STATE(1078), - [sym_sigil] = STATE(1078), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1078), - [sym_tuple] = STATE(1078), - [sym_bitstring] = STATE(1078), - [sym_map] = STATE(1078), - [sym__nullary_operator] = STATE(1078), - [sym_unary_operator] = STATE(1078), - [sym_binary_operator] = STATE(1078), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1078), - [sym_call] = STATE(1078), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1071), + [sym_nil] = STATE(1071), + [sym__atom] = STATE(1071), + [sym_quoted_atom] = STATE(1071), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1071), + [sym_charlist] = STATE(1071), + [sym_sigil] = STATE(1071), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1071), + [sym_tuple] = STATE(1071), + [sym_bitstring] = STATE(1071), + [sym_map] = STATE(1071), + [sym__nullary_operator] = STATE(1071), + [sym_unary_operator] = STATE(1071), + [sym_binary_operator] = STATE(1071), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1071), + [sym_call] = STATE(1071), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4709), - [sym_rescue_block] = STATE(4709), - [sym_catch_block] = STATE(4709), - [sym_else_block] = STATE(4709), - [sym_access_call] = STATE(1078), - [sym_stab_clause] = STATE(4632), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1078), - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym_do_block_repeat1] = STATE(4709), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4721), + [sym_rescue_block] = STATE(4721), + [sym_catch_block] = STATE(4721), + [sym_else_block] = STATE(4721), + [sym_access_call] = STATE(1071), + [sym_stab_clause] = STATE(4658), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1071), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(4721), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(63), @@ -32813,50 +32579,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [14] = { - [sym__expression] = STATE(1286), - [sym_block] = STATE(1286), + [sym__expression] = STATE(1204), + [sym_block] = STATE(1204), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1286), - [sym_nil] = STATE(1286), - [sym__atom] = STATE(1286), - [sym_quoted_atom] = STATE(1286), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1286), - [sym_charlist] = STATE(1286), - [sym_sigil] = STATE(1286), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1286), - [sym_tuple] = STATE(1286), - [sym_bitstring] = STATE(1286), - [sym_map] = STATE(1286), - [sym__nullary_operator] = STATE(1286), - [sym_unary_operator] = STATE(1286), - [sym_binary_operator] = STATE(1286), + [sym_boolean] = STATE(1204), + [sym_nil] = STATE(1204), + [sym__atom] = STATE(1204), + [sym_quoted_atom] = STATE(1204), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1204), + [sym_charlist] = STATE(1204), + [sym_sigil] = STATE(1204), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1204), + [sym_tuple] = STATE(1204), + [sym_bitstring] = STATE(1204), + [sym_map] = STATE(1204), + [sym__nullary_operator] = STATE(1204), + [sym_unary_operator] = STATE(1204), + [sym_binary_operator] = STATE(1204), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1286), - [sym_call] = STATE(1286), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1204), + [sym_call] = STATE(1204), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym__call_arguments_with_parentheses_immediate] = STATE(1090), - [sym__call_arguments_without_parentheses] = STATE(1123), - [sym_do_block] = STATE(1222), - [sym_access_call] = STATE(1286), - [sym_anonymous_function] = STATE(1286), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym__call_arguments_with_parentheses_immediate] = STATE(1089), + [sym__call_arguments_without_parentheses] = STATE(1130), + [sym_do_block] = STATE(1235), + [sym_access_call] = STATE(1204), + [sym_anonymous_function] = STATE(1204), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(189), @@ -32952,50 +32718,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [15] = { - [sym__expression] = STATE(1286), - [sym_block] = STATE(1286), + [sym__expression] = STATE(1204), + [sym_block] = STATE(1204), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1286), - [sym_nil] = STATE(1286), - [sym__atom] = STATE(1286), - [sym_quoted_atom] = STATE(1286), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1286), - [sym_charlist] = STATE(1286), - [sym_sigil] = STATE(1286), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1286), - [sym_tuple] = STATE(1286), - [sym_bitstring] = STATE(1286), - [sym_map] = STATE(1286), - [sym__nullary_operator] = STATE(1286), - [sym_unary_operator] = STATE(1286), - [sym_binary_operator] = STATE(1286), + [sym_boolean] = STATE(1204), + [sym_nil] = STATE(1204), + [sym__atom] = STATE(1204), + [sym_quoted_atom] = STATE(1204), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1204), + [sym_charlist] = STATE(1204), + [sym_sigil] = STATE(1204), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1204), + [sym_tuple] = STATE(1204), + [sym_bitstring] = STATE(1204), + [sym_map] = STATE(1204), + [sym__nullary_operator] = STATE(1204), + [sym_unary_operator] = STATE(1204), + [sym_binary_operator] = STATE(1204), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1286), - [sym_call] = STATE(1286), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1204), + [sym_call] = STATE(1204), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), [sym__call_arguments_with_parentheses_immediate] = STATE(1085), - [sym__call_arguments_without_parentheses] = STATE(1112), - [sym_do_block] = STATE(1757), - [sym_access_call] = STATE(1286), - [sym_anonymous_function] = STATE(1286), + [sym__call_arguments_without_parentheses] = STATE(1128), + [sym_do_block] = STATE(1736), + [sym_access_call] = STATE(1204), + [sym_anonymous_function] = STATE(1204), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(189), @@ -33091,50 +32857,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [16] = { - [sym__expression] = STATE(1430), - [sym_block] = STATE(1430), + [sym__expression] = STATE(1423), + [sym_block] = STATE(1423), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1430), - [sym_nil] = STATE(1430), - [sym__atom] = STATE(1430), - [sym_quoted_atom] = STATE(1430), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(1423), + [sym_nil] = STATE(1423), + [sym__atom] = STATE(1423), + [sym_quoted_atom] = STATE(1423), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1430), - [sym_charlist] = STATE(1430), - [sym_sigil] = STATE(1430), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1430), - [sym_tuple] = STATE(1430), - [sym_bitstring] = STATE(1430), - [sym_map] = STATE(1430), - [sym__nullary_operator] = STATE(1430), - [sym_unary_operator] = STATE(1430), - [sym_binary_operator] = STATE(1430), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1423), + [sym_charlist] = STATE(1423), + [sym_sigil] = STATE(1423), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1423), + [sym_tuple] = STATE(1423), + [sym_bitstring] = STATE(1423), + [sym_map] = STATE(1423), + [sym__nullary_operator] = STATE(1423), + [sym_unary_operator] = STATE(1423), + [sym_binary_operator] = STATE(1423), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1430), - [sym_call] = STATE(1430), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1423), + [sym_call] = STATE(1423), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1097), - [sym__call_arguments_without_parentheses] = STATE(1205), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1132), + [sym__call_arguments_without_parentheses] = STATE(1210), [sym_do_block] = STATE(2025), - [sym_access_call] = STATE(1430), - [sym_anonymous_function] = STATE(1430), + [sym_access_call] = STATE(1423), + [sym_anonymous_function] = STATE(1423), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(237), @@ -33230,50 +32996,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [17] = { - [sym__expression] = STATE(1286), - [sym_block] = STATE(1286), + [sym__expression] = STATE(1204), + [sym_block] = STATE(1204), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1286), - [sym_nil] = STATE(1286), - [sym__atom] = STATE(1286), - [sym_quoted_atom] = STATE(1286), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1286), - [sym_charlist] = STATE(1286), - [sym_sigil] = STATE(1286), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1286), - [sym_tuple] = STATE(1286), - [sym_bitstring] = STATE(1286), - [sym_map] = STATE(1286), - [sym__nullary_operator] = STATE(1286), - [sym_unary_operator] = STATE(1286), - [sym_binary_operator] = STATE(1286), + [sym_boolean] = STATE(1204), + [sym_nil] = STATE(1204), + [sym__atom] = STATE(1204), + [sym_quoted_atom] = STATE(1204), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1204), + [sym_charlist] = STATE(1204), + [sym_sigil] = STATE(1204), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1204), + [sym_tuple] = STATE(1204), + [sym_bitstring] = STATE(1204), + [sym_map] = STATE(1204), + [sym__nullary_operator] = STATE(1204), + [sym_unary_operator] = STATE(1204), + [sym_binary_operator] = STATE(1204), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1286), - [sym_call] = STATE(1286), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1204), + [sym_call] = STATE(1204), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym__call_arguments_with_parentheses_immediate] = STATE(1088), - [sym__call_arguments_without_parentheses] = STATE(1098), - [sym_do_block] = STATE(1210), - [sym_access_call] = STATE(1286), - [sym_anonymous_function] = STATE(1286), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym__call_arguments_with_parentheses_immediate] = STATE(1084), + [sym__call_arguments_without_parentheses] = STATE(1131), + [sym_do_block] = STATE(1141), + [sym_access_call] = STATE(1204), + [sym_anonymous_function] = STATE(1204), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(189), @@ -33369,50 +33135,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [18] = { - [sym__expression] = STATE(1430), - [sym_block] = STATE(1430), + [sym__expression] = STATE(1423), + [sym_block] = STATE(1423), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1430), - [sym_nil] = STATE(1430), - [sym__atom] = STATE(1430), - [sym_quoted_atom] = STATE(1430), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(1423), + [sym_nil] = STATE(1423), + [sym__atom] = STATE(1423), + [sym_quoted_atom] = STATE(1423), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1430), - [sym_charlist] = STATE(1430), - [sym_sigil] = STATE(1430), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1430), - [sym_tuple] = STATE(1430), - [sym_bitstring] = STATE(1430), - [sym_map] = STATE(1430), - [sym__nullary_operator] = STATE(1430), - [sym_unary_operator] = STATE(1430), - [sym_binary_operator] = STATE(1430), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1423), + [sym_charlist] = STATE(1423), + [sym_sigil] = STATE(1423), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1423), + [sym_tuple] = STATE(1423), + [sym_bitstring] = STATE(1423), + [sym_map] = STATE(1423), + [sym__nullary_operator] = STATE(1423), + [sym_unary_operator] = STATE(1423), + [sym_binary_operator] = STATE(1423), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1430), - [sym_call] = STATE(1430), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1423), + [sym_call] = STATE(1423), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1115), - [sym__call_arguments_without_parentheses] = STATE(1183), - [sym_do_block] = STATE(1453), - [sym_access_call] = STATE(1430), - [sym_anonymous_function] = STATE(1430), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1103), + [sym__call_arguments_without_parentheses] = STATE(1300), + [sym_do_block] = STATE(1413), + [sym_access_call] = STATE(1423), + [sym_anonymous_function] = STATE(1423), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(237), @@ -33508,50 +33274,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [19] = { - [sym__expression] = STATE(1430), - [sym_block] = STATE(1430), + [sym__expression] = STATE(1423), + [sym_block] = STATE(1423), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1430), - [sym_nil] = STATE(1430), - [sym__atom] = STATE(1430), - [sym_quoted_atom] = STATE(1430), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(1423), + [sym_nil] = STATE(1423), + [sym__atom] = STATE(1423), + [sym_quoted_atom] = STATE(1423), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1430), - [sym_charlist] = STATE(1430), - [sym_sigil] = STATE(1430), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1430), - [sym_tuple] = STATE(1430), - [sym_bitstring] = STATE(1430), - [sym_map] = STATE(1430), - [sym__nullary_operator] = STATE(1430), - [sym_unary_operator] = STATE(1430), - [sym_binary_operator] = STATE(1430), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1423), + [sym_charlist] = STATE(1423), + [sym_sigil] = STATE(1423), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1423), + [sym_tuple] = STATE(1423), + [sym_bitstring] = STATE(1423), + [sym_map] = STATE(1423), + [sym__nullary_operator] = STATE(1423), + [sym_unary_operator] = STATE(1423), + [sym_binary_operator] = STATE(1423), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1430), - [sym_call] = STATE(1430), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1423), + [sym_call] = STATE(1423), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1110), - [sym__call_arguments_without_parentheses] = STATE(1190), - [sym_do_block] = STATE(1454), - [sym_access_call] = STATE(1430), - [sym_anonymous_function] = STATE(1430), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1102), + [sym__call_arguments_without_parentheses] = STATE(1304), + [sym_do_block] = STATE(1408), + [sym_access_call] = STATE(1423), + [sym_anonymous_function] = STATE(1423), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(237), @@ -33647,50 +33413,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [20] = { - [sym__expression] = STATE(1286), - [sym_block] = STATE(1286), + [sym__expression] = STATE(1204), + [sym_block] = STATE(1204), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1286), - [sym_nil] = STATE(1286), - [sym__atom] = STATE(1286), - [sym_quoted_atom] = STATE(1286), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1286), - [sym_charlist] = STATE(1286), - [sym_sigil] = STATE(1286), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1286), - [sym_tuple] = STATE(1286), - [sym_bitstring] = STATE(1286), - [sym_map] = STATE(1286), - [sym__nullary_operator] = STATE(1286), - [sym_unary_operator] = STATE(1286), - [sym_binary_operator] = STATE(1286), + [sym_boolean] = STATE(1204), + [sym_nil] = STATE(1204), + [sym__atom] = STATE(1204), + [sym_quoted_atom] = STATE(1204), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1204), + [sym_charlist] = STATE(1204), + [sym_sigil] = STATE(1204), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1204), + [sym_tuple] = STATE(1204), + [sym_bitstring] = STATE(1204), + [sym_map] = STATE(1204), + [sym__nullary_operator] = STATE(1204), + [sym_unary_operator] = STATE(1204), + [sym_binary_operator] = STATE(1204), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1286), - [sym_call] = STATE(1286), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1204), + [sym_call] = STATE(1204), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym__call_arguments_with_parentheses_immediate] = STATE(1089), - [sym__call_arguments_without_parentheses] = STATE(1118), - [sym_do_block] = STATE(1735), - [sym_access_call] = STATE(1286), - [sym_anonymous_function] = STATE(1286), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1123), + [sym_do_block] = STATE(1737), + [sym_access_call] = STATE(1204), + [sym_anonymous_function] = STATE(1204), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(189), @@ -33785,58 +33551,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [21] = { - [sym__expression] = STATE(1072), - [sym_block] = STATE(1072), + [sym__expression] = STATE(1074), + [sym_block] = STATE(1074), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1072), - [sym_nil] = STATE(1072), - [sym__atom] = STATE(1072), - [sym_quoted_atom] = STATE(1072), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1072), - [sym_charlist] = STATE(1072), - [sym_sigil] = STATE(1072), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1072), - [sym_tuple] = STATE(1072), - [sym_bitstring] = STATE(1072), - [sym_map] = STATE(1072), - [sym__nullary_operator] = STATE(1072), - [sym_unary_operator] = STATE(1072), - [sym_binary_operator] = STATE(1072), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1072), - [sym_call] = STATE(1072), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1074), + [sym_nil] = STATE(1074), + [sym__atom] = STATE(1074), + [sym_quoted_atom] = STATE(1074), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1074), + [sym_charlist] = STATE(1074), + [sym_sigil] = STATE(1074), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1074), + [sym_tuple] = STATE(1074), + [sym_bitstring] = STATE(1074), + [sym_map] = STATE(1074), + [sym__nullary_operator] = STATE(1074), + [sym_unary_operator] = STATE(1074), + [sym_binary_operator] = STATE(1074), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1074), + [sym_call] = STATE(1074), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4736), - [sym_rescue_block] = STATE(4736), - [sym_catch_block] = STATE(4736), - [sym_else_block] = STATE(4736), - [sym_access_call] = STATE(1072), - [sym_stab_clause] = STATE(4648), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1072), - [aux_sym_do_block_repeat1] = STATE(4736), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4699), + [sym_rescue_block] = STATE(4699), + [sym_catch_block] = STATE(4699), + [sym_else_block] = STATE(4699), + [sym_access_call] = STATE(1074), + [sym_stab_clause] = STATE(4622), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1074), + [aux_sym_do_block_repeat1] = STATE(4699), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -33923,58 +33689,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [22] = { - [sym__expression] = STATE(1066), - [sym_block] = STATE(1066), + [sym__expression] = STATE(1067), + [sym_block] = STATE(1067), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1066), - [sym_nil] = STATE(1066), - [sym__atom] = STATE(1066), - [sym_quoted_atom] = STATE(1066), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1066), - [sym_charlist] = STATE(1066), - [sym_sigil] = STATE(1066), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1066), - [sym_tuple] = STATE(1066), - [sym_bitstring] = STATE(1066), - [sym_map] = STATE(1066), - [sym__nullary_operator] = STATE(1066), - [sym_unary_operator] = STATE(1066), - [sym_binary_operator] = STATE(1066), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1066), - [sym_call] = STATE(1066), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1067), + [sym_nil] = STATE(1067), + [sym__atom] = STATE(1067), + [sym_quoted_atom] = STATE(1067), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1067), + [sym_charlist] = STATE(1067), + [sym_sigil] = STATE(1067), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1067), + [sym_tuple] = STATE(1067), + [sym_bitstring] = STATE(1067), + [sym_map] = STATE(1067), + [sym__nullary_operator] = STATE(1067), + [sym_unary_operator] = STATE(1067), + [sym_binary_operator] = STATE(1067), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1067), + [sym_call] = STATE(1067), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4743), - [sym_rescue_block] = STATE(4743), - [sym_catch_block] = STATE(4743), - [sym_else_block] = STATE(4743), - [sym_access_call] = STATE(1066), - [sym_stab_clause] = STATE(4686), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1066), - [aux_sym_do_block_repeat1] = STATE(4743), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4709), + [sym_rescue_block] = STATE(4709), + [sym_catch_block] = STATE(4709), + [sym_else_block] = STATE(4709), + [sym_access_call] = STATE(1067), + [sym_stab_clause] = STATE(4636), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1067), + [aux_sym_do_block_repeat1] = STATE(4709), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -34061,58 +33827,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [23] = { - [sym__expression] = STATE(1067), - [sym_block] = STATE(1067), + [sym__expression] = STATE(1078), + [sym_block] = STATE(1078), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1067), - [sym_nil] = STATE(1067), - [sym__atom] = STATE(1067), - [sym_quoted_atom] = STATE(1067), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1067), - [sym_charlist] = STATE(1067), - [sym_sigil] = STATE(1067), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1067), - [sym_tuple] = STATE(1067), - [sym_bitstring] = STATE(1067), - [sym_map] = STATE(1067), - [sym__nullary_operator] = STATE(1067), - [sym_unary_operator] = STATE(1067), - [sym_binary_operator] = STATE(1067), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1067), - [sym_call] = STATE(1067), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1078), + [sym_nil] = STATE(1078), + [sym__atom] = STATE(1078), + [sym_quoted_atom] = STATE(1078), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1078), + [sym_charlist] = STATE(1078), + [sym_sigil] = STATE(1078), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1078), + [sym_tuple] = STATE(1078), + [sym_bitstring] = STATE(1078), + [sym_map] = STATE(1078), + [sym__nullary_operator] = STATE(1078), + [sym_unary_operator] = STATE(1078), + [sym_binary_operator] = STATE(1078), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1078), + [sym_call] = STATE(1078), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4702), - [sym_rescue_block] = STATE(4702), - [sym_catch_block] = STATE(4702), - [sym_else_block] = STATE(4702), - [sym_access_call] = STATE(1067), - [sym_stab_clause] = STATE(4620), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1067), - [aux_sym_do_block_repeat1] = STATE(4702), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4736), + [sym_rescue_block] = STATE(4736), + [sym_catch_block] = STATE(4736), + [sym_else_block] = STATE(4736), + [sym_access_call] = STATE(1078), + [sym_stab_clause] = STATE(4656), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1078), + [aux_sym_do_block_repeat1] = STATE(4736), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -34199,58 +33965,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [24] = { - [sym__expression] = STATE(1073), - [sym_block] = STATE(1073), + [sym__expression] = STATE(1072), + [sym_block] = STATE(1072), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1073), - [sym_nil] = STATE(1073), - [sym__atom] = STATE(1073), - [sym_quoted_atom] = STATE(1073), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1073), - [sym_charlist] = STATE(1073), - [sym_sigil] = STATE(1073), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1073), - [sym_tuple] = STATE(1073), - [sym_bitstring] = STATE(1073), - [sym_map] = STATE(1073), - [sym__nullary_operator] = STATE(1073), - [sym_unary_operator] = STATE(1073), - [sym_binary_operator] = STATE(1073), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1073), - [sym_call] = STATE(1073), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1072), + [sym_nil] = STATE(1072), + [sym__atom] = STATE(1072), + [sym_quoted_atom] = STATE(1072), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1072), + [sym_charlist] = STATE(1072), + [sym_sigil] = STATE(1072), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1072), + [sym_tuple] = STATE(1072), + [sym_bitstring] = STATE(1072), + [sym_map] = STATE(1072), + [sym__nullary_operator] = STATE(1072), + [sym_unary_operator] = STATE(1072), + [sym_binary_operator] = STATE(1072), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1072), + [sym_call] = STATE(1072), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4723), - [sym_rescue_block] = STATE(4723), - [sym_catch_block] = STATE(4723), - [sym_else_block] = STATE(4723), - [sym_access_call] = STATE(1073), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4707), + [sym_rescue_block] = STATE(4707), + [sym_catch_block] = STATE(4707), + [sym_else_block] = STATE(4707), + [sym_access_call] = STATE(1072), [sym_stab_clause] = STATE(4638), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1073), - [aux_sym_do_block_repeat1] = STATE(4723), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1072), + [aux_sym_do_block_repeat1] = STATE(4707), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -34337,58 +34103,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [25] = { - [sym__expression] = STATE(1068), - [sym_block] = STATE(1068), + [sym__expression] = STATE(1066), + [sym_block] = STATE(1066), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1068), - [sym_nil] = STATE(1068), - [sym__atom] = STATE(1068), - [sym_quoted_atom] = STATE(1068), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1068), - [sym_charlist] = STATE(1068), - [sym_sigil] = STATE(1068), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1068), - [sym_tuple] = STATE(1068), - [sym_bitstring] = STATE(1068), - [sym_map] = STATE(1068), - [sym__nullary_operator] = STATE(1068), - [sym_unary_operator] = STATE(1068), - [sym_binary_operator] = STATE(1068), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1068), - [sym_call] = STATE(1068), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1066), + [sym_nil] = STATE(1066), + [sym__atom] = STATE(1066), + [sym_quoted_atom] = STATE(1066), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1066), + [sym_charlist] = STATE(1066), + [sym_sigil] = STATE(1066), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1066), + [sym_tuple] = STATE(1066), + [sym_bitstring] = STATE(1066), + [sym_map] = STATE(1066), + [sym__nullary_operator] = STATE(1066), + [sym_unary_operator] = STATE(1066), + [sym_binary_operator] = STATE(1066), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1066), + [sym_call] = STATE(1066), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4732), - [sym_rescue_block] = STATE(4732), - [sym_catch_block] = STATE(4732), - [sym_else_block] = STATE(4732), - [sym_access_call] = STATE(1068), - [sym_stab_clause] = STATE(4683), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1068), - [aux_sym_do_block_repeat1] = STATE(4732), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4713), + [sym_rescue_block] = STATE(4713), + [sym_catch_block] = STATE(4713), + [sym_else_block] = STATE(4713), + [sym_access_call] = STATE(1066), + [sym_stab_clause] = STATE(4653), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1066), + [aux_sym_do_block_repeat1] = STATE(4713), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -34475,58 +34241,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [26] = { - [sym__expression] = STATE(1081), - [sym_block] = STATE(1081), + [sym__expression] = STATE(1061), + [sym_block] = STATE(1061), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1081), - [sym_nil] = STATE(1081), - [sym__atom] = STATE(1081), - [sym_quoted_atom] = STATE(1081), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1081), - [sym_charlist] = STATE(1081), - [sym_sigil] = STATE(1081), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1081), - [sym_tuple] = STATE(1081), - [sym_bitstring] = STATE(1081), - [sym_map] = STATE(1081), - [sym__nullary_operator] = STATE(1081), - [sym_unary_operator] = STATE(1081), - [sym_binary_operator] = STATE(1081), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1081), - [sym_call] = STATE(1081), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1061), + [sym_nil] = STATE(1061), + [sym__atom] = STATE(1061), + [sym_quoted_atom] = STATE(1061), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1061), + [sym_charlist] = STATE(1061), + [sym_sigil] = STATE(1061), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1061), + [sym_tuple] = STATE(1061), + [sym_bitstring] = STATE(1061), + [sym_map] = STATE(1061), + [sym__nullary_operator] = STATE(1061), + [sym_unary_operator] = STATE(1061), + [sym_binary_operator] = STATE(1061), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1061), + [sym_call] = STATE(1061), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4700), - [sym_rescue_block] = STATE(4700), - [sym_catch_block] = STATE(4700), - [sym_else_block] = STATE(4700), - [sym_access_call] = STATE(1081), - [sym_stab_clause] = STATE(4624), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1081), - [aux_sym_do_block_repeat1] = STATE(4700), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4690), + [sym_rescue_block] = STATE(4690), + [sym_catch_block] = STATE(4690), + [sym_else_block] = STATE(4690), + [sym_access_call] = STATE(1061), + [sym_stab_clause] = STATE(4671), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1061), + [aux_sym_do_block_repeat1] = STATE(4690), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -34613,58 +34379,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [27] = { - [sym__expression] = STATE(1071), - [sym_block] = STATE(1071), + [sym__expression] = STATE(1063), + [sym_block] = STATE(1063), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1071), - [sym_nil] = STATE(1071), - [sym__atom] = STATE(1071), - [sym_quoted_atom] = STATE(1071), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1071), - [sym_charlist] = STATE(1071), - [sym_sigil] = STATE(1071), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1071), - [sym_tuple] = STATE(1071), - [sym_bitstring] = STATE(1071), - [sym_map] = STATE(1071), - [sym__nullary_operator] = STATE(1071), - [sym_unary_operator] = STATE(1071), - [sym_binary_operator] = STATE(1071), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1071), - [sym_call] = STATE(1071), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1063), + [sym_nil] = STATE(1063), + [sym__atom] = STATE(1063), + [sym_quoted_atom] = STATE(1063), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1063), + [sym_charlist] = STATE(1063), + [sym_sigil] = STATE(1063), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_bitstring] = STATE(1063), + [sym_map] = STATE(1063), + [sym__nullary_operator] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_binary_operator] = STATE(1063), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1063), + [sym_call] = STATE(1063), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4720), - [sym_rescue_block] = STATE(4720), - [sym_catch_block] = STATE(4720), - [sym_else_block] = STATE(4720), - [sym_access_call] = STATE(1071), - [sym_stab_clause] = STATE(4665), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1071), - [aux_sym_do_block_repeat1] = STATE(4720), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4697), + [sym_rescue_block] = STATE(4697), + [sym_catch_block] = STATE(4697), + [sym_else_block] = STATE(4697), + [sym_access_call] = STATE(1063), + [sym_stab_clause] = STATE(4654), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1063), + [aux_sym_do_block_repeat1] = STATE(4697), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -34751,57 +34517,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [28] = { - [sym__expression] = STATE(1062), - [sym_block] = STATE(1062), + [sym__expression] = STATE(1079), + [sym_block] = STATE(1079), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1062), - [sym_nil] = STATE(1062), - [sym__atom] = STATE(1062), - [sym_quoted_atom] = STATE(1062), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1062), - [sym_charlist] = STATE(1062), - [sym_sigil] = STATE(1062), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1062), - [sym_tuple] = STATE(1062), - [sym_bitstring] = STATE(1062), - [sym_map] = STATE(1062), - [sym__nullary_operator] = STATE(1062), - [sym_unary_operator] = STATE(1062), - [sym_binary_operator] = STATE(1062), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1062), - [sym_call] = STATE(1062), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1079), + [sym_nil] = STATE(1079), + [sym__atom] = STATE(1079), + [sym_quoted_atom] = STATE(1079), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1079), + [sym_charlist] = STATE(1079), + [sym_sigil] = STATE(1079), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1079), + [sym_tuple] = STATE(1079), + [sym_bitstring] = STATE(1079), + [sym_map] = STATE(1079), + [sym__nullary_operator] = STATE(1079), + [sym_unary_operator] = STATE(1079), + [sym_binary_operator] = STATE(1079), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1079), + [sym_call] = STATE(1079), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), [sym_after_block] = STATE(4712), [sym_rescue_block] = STATE(4712), [sym_catch_block] = STATE(4712), [sym_else_block] = STATE(4712), - [sym_access_call] = STATE(1062), - [sym_stab_clause] = STATE(4670), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1062), + [sym_access_call] = STATE(1079), + [sym_stab_clause] = STATE(4673), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1079), [aux_sym_do_block_repeat1] = STATE(4712), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), @@ -34889,50 +34655,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [29] = { - [sym__expression] = STATE(1430), - [sym_block] = STATE(1430), + [sym__expression] = STATE(1423), + [sym_block] = STATE(1423), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1430), - [sym_nil] = STATE(1430), - [sym__atom] = STATE(1430), - [sym_quoted_atom] = STATE(1430), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(1423), + [sym_nil] = STATE(1423), + [sym__atom] = STATE(1423), + [sym_quoted_atom] = STATE(1423), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1430), - [sym_charlist] = STATE(1430), - [sym_sigil] = STATE(1430), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1430), - [sym_tuple] = STATE(1430), - [sym_bitstring] = STATE(1430), - [sym_map] = STATE(1430), - [sym__nullary_operator] = STATE(1430), - [sym_unary_operator] = STATE(1430), - [sym_binary_operator] = STATE(1430), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1423), + [sym_charlist] = STATE(1423), + [sym_sigil] = STATE(1423), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1423), + [sym_tuple] = STATE(1423), + [sym_bitstring] = STATE(1423), + [sym_map] = STATE(1423), + [sym__nullary_operator] = STATE(1423), + [sym_unary_operator] = STATE(1423), + [sym_binary_operator] = STATE(1423), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1430), - [sym_call] = STATE(1430), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1423), + [sym_call] = STATE(1423), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1099), - [sym__call_arguments_without_parentheses] = STATE(1209), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1124), + [sym__call_arguments_without_parentheses] = STATE(1215), [sym_do_block] = STATE(2020), - [sym_access_call] = STATE(1430), - [sym_anonymous_function] = STATE(1430), + [sym_access_call] = STATE(1423), + [sym_anonymous_function] = STATE(1423), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(237), @@ -35027,57 +34793,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [30] = { - [sym__expression] = STATE(1065), - [sym_block] = STATE(1065), + [sym__expression] = STATE(1082), + [sym_block] = STATE(1082), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1065), - [sym_nil] = STATE(1065), - [sym__atom] = STATE(1065), - [sym_quoted_atom] = STATE(1065), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1065), - [sym_charlist] = STATE(1065), - [sym_sigil] = STATE(1065), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1065), - [sym_tuple] = STATE(1065), - [sym_bitstring] = STATE(1065), - [sym_map] = STATE(1065), - [sym__nullary_operator] = STATE(1065), - [sym_unary_operator] = STATE(1065), - [sym_binary_operator] = STATE(1065), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1065), - [sym_call] = STATE(1065), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1082), + [sym_nil] = STATE(1082), + [sym__atom] = STATE(1082), + [sym_quoted_atom] = STATE(1082), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1082), + [sym_charlist] = STATE(1082), + [sym_sigil] = STATE(1082), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1082), + [sym_tuple] = STATE(1082), + [sym_bitstring] = STATE(1082), + [sym_map] = STATE(1082), + [sym__nullary_operator] = STATE(1082), + [sym_unary_operator] = STATE(1082), + [sym_binary_operator] = STATE(1082), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1082), + [sym_call] = STATE(1082), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), [sym_after_block] = STATE(4719), [sym_rescue_block] = STATE(4719), [sym_catch_block] = STATE(4719), [sym_else_block] = STATE(4719), - [sym_access_call] = STATE(1065), - [sym_stab_clause] = STATE(4636), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1065), + [sym_access_call] = STATE(1082), + [sym_stab_clause] = STATE(4670), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1082), [aux_sym_do_block_repeat1] = STATE(4719), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), @@ -35172,17 +34938,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(1069), [sym__atom] = STATE(1069), [sym_quoted_atom] = STATE(1069), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), [sym_string] = STATE(1069), [sym_charlist] = STATE(1069), [sym_sigil] = STATE(1069), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), [sym_list] = STATE(1069), [sym_tuple] = STATE(1069), [sym_bitstring] = STATE(1069), @@ -35190,33 +34956,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__nullary_operator] = STATE(1069), [sym_unary_operator] = STATE(1069), [sym_binary_operator] = STATE(1069), - [sym_operator_identifier] = STATE(6882), + [sym_operator_identifier] = STATE(6886), [sym_dot] = STATE(1069), [sym_call] = STATE(1069), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4744), - [sym_rescue_block] = STATE(4744), - [sym_catch_block] = STATE(4744), - [sym_else_block] = STATE(4744), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4727), + [sym_rescue_block] = STATE(4727), + [sym_catch_block] = STATE(4727), + [sym_else_block] = STATE(4727), [sym_access_call] = STATE(1069), - [sym_stab_clause] = STATE(4655), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), + [sym_stab_clause] = STATE(4677), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), [sym_anonymous_function] = STATE(1069), - [aux_sym_do_block_repeat1] = STATE(4744), + [aux_sym_do_block_repeat1] = STATE(4727), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -35303,58 +35069,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [32] = { - [sym__expression] = STATE(1074), - [sym_block] = STATE(1074), + [sym__expression] = STATE(1076), + [sym_block] = STATE(1076), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1074), - [sym_nil] = STATE(1074), - [sym__atom] = STATE(1074), - [sym_quoted_atom] = STATE(1074), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1074), - [sym_charlist] = STATE(1074), - [sym_sigil] = STATE(1074), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1074), - [sym_tuple] = STATE(1074), - [sym_bitstring] = STATE(1074), - [sym_map] = STATE(1074), - [sym__nullary_operator] = STATE(1074), - [sym_unary_operator] = STATE(1074), - [sym_binary_operator] = STATE(1074), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1074), - [sym_call] = STATE(1074), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1076), + [sym_nil] = STATE(1076), + [sym__atom] = STATE(1076), + [sym_quoted_atom] = STATE(1076), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1076), + [sym_charlist] = STATE(1076), + [sym_sigil] = STATE(1076), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_bitstring] = STATE(1076), + [sym_map] = STATE(1076), + [sym__nullary_operator] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_binary_operator] = STATE(1076), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1076), + [sym_call] = STATE(1076), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4724), - [sym_rescue_block] = STATE(4724), - [sym_catch_block] = STATE(4724), - [sym_else_block] = STATE(4724), - [sym_access_call] = STATE(1074), - [sym_stab_clause] = STATE(4677), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1074), - [aux_sym_do_block_repeat1] = STATE(4724), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4750), + [sym_rescue_block] = STATE(4750), + [sym_catch_block] = STATE(4750), + [sym_else_block] = STATE(4750), + [sym_access_call] = STATE(1076), + [sym_stab_clause] = STATE(4628), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1076), + [aux_sym_do_block_repeat1] = STATE(4750), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -35441,58 +35207,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [33] = { - [sym__expression] = STATE(1070), - [sym_block] = STATE(1070), + [sym__expression] = STATE(1060), + [sym_block] = STATE(1060), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1070), - [sym_nil] = STATE(1070), - [sym__atom] = STATE(1070), - [sym_quoted_atom] = STATE(1070), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1070), - [sym_charlist] = STATE(1070), - [sym_sigil] = STATE(1070), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1070), - [sym_tuple] = STATE(1070), - [sym_bitstring] = STATE(1070), - [sym_map] = STATE(1070), - [sym__nullary_operator] = STATE(1070), - [sym_unary_operator] = STATE(1070), - [sym_binary_operator] = STATE(1070), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1070), - [sym_call] = STATE(1070), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1060), + [sym_nil] = STATE(1060), + [sym__atom] = STATE(1060), + [sym_quoted_atom] = STATE(1060), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1060), + [sym_charlist] = STATE(1060), + [sym_sigil] = STATE(1060), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1060), + [sym_tuple] = STATE(1060), + [sym_bitstring] = STATE(1060), + [sym_map] = STATE(1060), + [sym__nullary_operator] = STATE(1060), + [sym_unary_operator] = STATE(1060), + [sym_binary_operator] = STATE(1060), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1060), + [sym_call] = STATE(1060), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_after_block] = STATE(4694), - [sym_rescue_block] = STATE(4694), - [sym_catch_block] = STATE(4694), - [sym_else_block] = STATE(4694), - [sym_access_call] = STATE(1070), - [sym_stab_clause] = STATE(4678), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1070), - [aux_sym_do_block_repeat1] = STATE(4694), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_after_block] = STATE(4704), + [sym_rescue_block] = STATE(4704), + [sym_catch_block] = STATE(4704), + [sym_else_block] = STATE(4704), + [sym_access_call] = STATE(1060), + [sym_stab_clause] = STATE(4682), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1060), + [aux_sym_do_block_repeat1] = STATE(4704), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -35580,54 +35346,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [34] = { [sym__terminator] = STATE(70), - [sym__expression] = STATE(1111), - [sym_block] = STATE(1111), + [sym__expression] = STATE(1113), + [sym_block] = STATE(1113), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1111), - [sym_nil] = STATE(1111), - [sym__atom] = STATE(1111), - [sym_quoted_atom] = STATE(1111), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1111), - [sym_charlist] = STATE(1111), - [sym_sigil] = STATE(1111), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1111), - [sym_tuple] = STATE(1111), - [sym_bitstring] = STATE(1111), - [sym_map] = STATE(1111), - [sym__nullary_operator] = STATE(1111), - [sym_unary_operator] = STATE(1111), - [sym_binary_operator] = STATE(1111), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1111), - [sym_call] = STATE(1111), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1113), + [sym_nil] = STATE(1113), + [sym__atom] = STATE(1113), + [sym_quoted_atom] = STATE(1113), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1113), + [sym_charlist] = STATE(1113), + [sym_sigil] = STATE(1113), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1113), + [sym_tuple] = STATE(1113), + [sym_bitstring] = STATE(1113), + [sym_map] = STATE(1113), + [sym__nullary_operator] = STATE(1113), + [sym_unary_operator] = STATE(1113), + [sym_binary_operator] = STATE(1113), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1113), + [sym_call] = STATE(1113), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1111), - [sym_stab_clause] = STATE(4779), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1111), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1113), + [sym_stab_clause] = STATE(4771), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1113), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(353), [anon_sym_LPAREN] = ACTIONS(63), @@ -35715,50 +35481,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [35] = { - [sym__expression] = STATE(2267), - [sym_block] = STATE(2267), + [sym__expression] = STATE(2181), + [sym_block] = STATE(2181), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2267), - [sym_nil] = STATE(2267), - [sym__atom] = STATE(2267), - [sym_quoted_atom] = STATE(2267), + [sym_boolean] = STATE(2181), + [sym_nil] = STATE(2181), + [sym__atom] = STATE(2181), + [sym_quoted_atom] = STATE(2181), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2267), - [sym_charlist] = STATE(2267), - [sym_sigil] = STATE(2267), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2267), - [sym_tuple] = STATE(2267), - [sym_bitstring] = STATE(2267), - [sym_map] = STATE(2267), - [sym__nullary_operator] = STATE(2267), - [sym_unary_operator] = STATE(2267), - [sym_binary_operator] = STATE(2267), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2181), + [sym_charlist] = STATE(2181), + [sym_sigil] = STATE(2181), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2181), + [sym_tuple] = STATE(2181), + [sym_bitstring] = STATE(2181), + [sym_map] = STATE(2181), + [sym__nullary_operator] = STATE(2181), + [sym_unary_operator] = STATE(2181), + [sym_binary_operator] = STATE(2181), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2267), - [sym_call] = STATE(2267), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2181), + [sym_call] = STATE(2181), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1669), - [sym__call_arguments_without_parentheses] = STATE(2021), - [sym_do_block] = STATE(2161), - [sym_access_call] = STATE(2267), - [sym_anonymous_function] = STATE(2267), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1595), + [sym__call_arguments_without_parentheses] = STATE(2087), + [sym_do_block] = STATE(2250), + [sym_access_call] = STATE(2181), + [sym_anonymous_function] = STATE(2181), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [anon_sym_RPAREN] = ACTIONS(285), @@ -35852,54 +35618,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [36] = { [sym__terminator] = STATE(66), - [sym__expression] = STATE(1106), - [sym_block] = STATE(1106), + [sym__expression] = STATE(1093), + [sym_block] = STATE(1093), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1106), - [sym_nil] = STATE(1106), - [sym__atom] = STATE(1106), - [sym_quoted_atom] = STATE(1106), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1106), - [sym_charlist] = STATE(1106), - [sym_sigil] = STATE(1106), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1106), - [sym_tuple] = STATE(1106), - [sym_bitstring] = STATE(1106), - [sym_map] = STATE(1106), - [sym__nullary_operator] = STATE(1106), - [sym_unary_operator] = STATE(1106), - [sym_binary_operator] = STATE(1106), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1106), - [sym_call] = STATE(1106), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1093), + [sym_nil] = STATE(1093), + [sym__atom] = STATE(1093), + [sym_quoted_atom] = STATE(1093), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1093), + [sym_charlist] = STATE(1093), + [sym_sigil] = STATE(1093), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1093), + [sym_tuple] = STATE(1093), + [sym_bitstring] = STATE(1093), + [sym_map] = STATE(1093), + [sym__nullary_operator] = STATE(1093), + [sym_unary_operator] = STATE(1093), + [sym_binary_operator] = STATE(1093), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1093), + [sym_call] = STATE(1093), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1106), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1093), [sym_stab_clause] = STATE(4756), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1106), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1093), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(63), @@ -35988,54 +35754,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [37] = { [sym__terminator] = STATE(67), - [sym__expression] = STATE(1101), - [sym_block] = STATE(1101), + [sym__expression] = STATE(1094), + [sym_block] = STATE(1094), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1101), - [sym_nil] = STATE(1101), - [sym__atom] = STATE(1101), - [sym_quoted_atom] = STATE(1101), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1101), - [sym_charlist] = STATE(1101), - [sym_sigil] = STATE(1101), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1101), - [sym_tuple] = STATE(1101), - [sym_bitstring] = STATE(1101), - [sym_map] = STATE(1101), - [sym__nullary_operator] = STATE(1101), - [sym_unary_operator] = STATE(1101), - [sym_binary_operator] = STATE(1101), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1101), - [sym_call] = STATE(1101), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1094), + [sym_nil] = STATE(1094), + [sym__atom] = STATE(1094), + [sym_quoted_atom] = STATE(1094), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1094), + [sym_charlist] = STATE(1094), + [sym_sigil] = STATE(1094), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1094), + [sym_tuple] = STATE(1094), + [sym_bitstring] = STATE(1094), + [sym_map] = STATE(1094), + [sym__nullary_operator] = STATE(1094), + [sym_unary_operator] = STATE(1094), + [sym_binary_operator] = STATE(1094), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1094), + [sym_call] = STATE(1094), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1101), - [sym_stab_clause] = STATE(4757), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1101), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1094), + [sym_stab_clause] = STATE(4775), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1094), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(415), [anon_sym_LPAREN] = ACTIONS(63), @@ -36123,50 +35889,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [38] = { - [sym__expression] = STATE(2267), - [sym_block] = STATE(2267), + [sym__expression] = STATE(2181), + [sym_block] = STATE(2181), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2267), - [sym_nil] = STATE(2267), - [sym__atom] = STATE(2267), - [sym_quoted_atom] = STATE(2267), + [sym_boolean] = STATE(2181), + [sym_nil] = STATE(2181), + [sym__atom] = STATE(2181), + [sym_quoted_atom] = STATE(2181), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2267), - [sym_charlist] = STATE(2267), - [sym_sigil] = STATE(2267), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2267), - [sym_tuple] = STATE(2267), - [sym_bitstring] = STATE(2267), - [sym_map] = STATE(2267), - [sym__nullary_operator] = STATE(2267), - [sym_unary_operator] = STATE(2267), - [sym_binary_operator] = STATE(2267), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2181), + [sym_charlist] = STATE(2181), + [sym_sigil] = STATE(2181), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2181), + [sym_tuple] = STATE(2181), + [sym_bitstring] = STATE(2181), + [sym_map] = STATE(2181), + [sym__nullary_operator] = STATE(2181), + [sym_unary_operator] = STATE(2181), + [sym_binary_operator] = STATE(2181), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2267), - [sym_call] = STATE(2267), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2181), + [sym_call] = STATE(2181), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1581), - [sym__call_arguments_without_parentheses] = STATE(1824), - [sym_do_block] = STATE(3482), - [sym_access_call] = STATE(2267), - [sym_anonymous_function] = STATE(2267), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1598), + [sym__call_arguments_without_parentheses] = STATE(1864), + [sym_do_block] = STATE(3240), + [sym_access_call] = STATE(2181), + [sym_anonymous_function] = STATE(2181), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [anon_sym_RPAREN] = ACTIONS(187), @@ -36260,54 +36026,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [39] = { [sym__terminator] = STATE(72), - [sym__expression] = STATE(1100), - [sym_block] = STATE(1100), + [sym__expression] = STATE(1118), + [sym_block] = STATE(1118), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1100), - [sym_nil] = STATE(1100), - [sym__atom] = STATE(1100), - [sym_quoted_atom] = STATE(1100), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1100), - [sym_charlist] = STATE(1100), - [sym_sigil] = STATE(1100), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1100), - [sym_tuple] = STATE(1100), - [sym_bitstring] = STATE(1100), - [sym_map] = STATE(1100), - [sym__nullary_operator] = STATE(1100), - [sym_unary_operator] = STATE(1100), - [sym_binary_operator] = STATE(1100), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1100), - [sym_call] = STATE(1100), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1118), + [sym_nil] = STATE(1118), + [sym__atom] = STATE(1118), + [sym_quoted_atom] = STATE(1118), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1118), + [sym_charlist] = STATE(1118), + [sym_sigil] = STATE(1118), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1118), + [sym_tuple] = STATE(1118), + [sym_bitstring] = STATE(1118), + [sym_map] = STATE(1118), + [sym__nullary_operator] = STATE(1118), + [sym_unary_operator] = STATE(1118), + [sym_binary_operator] = STATE(1118), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1118), + [sym_call] = STATE(1118), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1100), - [sym_stab_clause] = STATE(4760), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1100), - [aux_sym__terminator_repeat1] = STATE(1019), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1118), + [sym_stab_clause] = STATE(4768), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1118), + [aux_sym__terminator_repeat1] = STATE(1018), [aux_sym__terminator_token1] = ACTIONS(59), [anon_sym_SEMI] = ACTIONS(425), [anon_sym_LPAREN] = ACTIONS(63), @@ -36395,50 +36161,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [40] = { - [sym__expression] = STATE(2267), - [sym_block] = STATE(2267), + [sym__expression] = STATE(2181), + [sym_block] = STATE(2181), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2267), - [sym_nil] = STATE(2267), - [sym__atom] = STATE(2267), - [sym_quoted_atom] = STATE(2267), + [sym_boolean] = STATE(2181), + [sym_nil] = STATE(2181), + [sym__atom] = STATE(2181), + [sym_quoted_atom] = STATE(2181), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2267), - [sym_charlist] = STATE(2267), - [sym_sigil] = STATE(2267), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2267), - [sym_tuple] = STATE(2267), - [sym_bitstring] = STATE(2267), - [sym_map] = STATE(2267), - [sym__nullary_operator] = STATE(2267), - [sym_unary_operator] = STATE(2267), - [sym_binary_operator] = STATE(2267), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2181), + [sym_charlist] = STATE(2181), + [sym_sigil] = STATE(2181), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2181), + [sym_tuple] = STATE(2181), + [sym_bitstring] = STATE(2181), + [sym_map] = STATE(2181), + [sym__nullary_operator] = STATE(2181), + [sym_unary_operator] = STATE(2181), + [sym_binary_operator] = STATE(2181), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2267), - [sym_call] = STATE(2267), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2181), + [sym_call] = STATE(2181), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1673), - [sym__call_arguments_without_parentheses] = STATE(2133), - [sym_do_block] = STATE(2273), - [sym_access_call] = STATE(2267), - [sym_anonymous_function] = STATE(2267), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1596), + [sym__call_arguments_without_parentheses] = STATE(2083), + [sym_do_block] = STATE(2249), + [sym_access_call] = STATE(2181), + [sym_anonymous_function] = STATE(2181), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [anon_sym_RPAREN] = ACTIONS(187), @@ -36531,50 +36297,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [41] = { - [sym__expression] = STATE(2672), - [sym_block] = STATE(2672), + [sym__expression] = STATE(2645), + [sym_block] = STATE(2645), [sym_identifier] = STATE(41), - [sym_boolean] = STATE(2672), - [sym_nil] = STATE(2672), - [sym__atom] = STATE(2672), - [sym_quoted_atom] = STATE(2672), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2645), + [sym_nil] = STATE(2645), + [sym__atom] = STATE(2645), + [sym_quoted_atom] = STATE(2645), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2672), - [sym_charlist] = STATE(2672), - [sym_sigil] = STATE(2672), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), - [sym_list] = STATE(2672), - [sym_tuple] = STATE(2672), - [sym_bitstring] = STATE(2672), - [sym_map] = STATE(2672), - [sym__nullary_operator] = STATE(2672), - [sym_unary_operator] = STATE(2672), - [sym_binary_operator] = STATE(2672), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2645), + [sym_charlist] = STATE(2645), + [sym_sigil] = STATE(2645), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), + [sym_list] = STATE(2645), + [sym_tuple] = STATE(2645), + [sym_bitstring] = STATE(2645), + [sym_map] = STATE(2645), + [sym__nullary_operator] = STATE(2645), + [sym_unary_operator] = STATE(2645), + [sym_binary_operator] = STATE(2645), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2672), - [sym_call] = STATE(2672), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2645), + [sym_call] = STATE(2645), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1115), - [sym__call_arguments_without_parentheses] = STATE(1183), - [sym_do_block] = STATE(1453), - [sym_access_call] = STATE(2672), - [sym_anonymous_function] = STATE(2672), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1103), + [sym__call_arguments_without_parentheses] = STATE(1300), + [sym_do_block] = STATE(1413), + [sym_access_call] = STATE(2645), + [sym_anonymous_function] = STATE(2645), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(237), @@ -36666,50 +36432,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [42] = { - [sym__expression] = STATE(2904), - [sym_block] = STATE(2904), + [sym__expression] = STATE(2618), + [sym_block] = STATE(2618), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2904), - [sym_nil] = STATE(2904), - [sym__atom] = STATE(2904), - [sym_quoted_atom] = STATE(2904), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2618), + [sym_nil] = STATE(2618), + [sym__atom] = STATE(2618), + [sym_quoted_atom] = STATE(2618), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2904), - [sym_charlist] = STATE(2904), - [sym_sigil] = STATE(2904), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(2904), - [sym_tuple] = STATE(2904), - [sym_bitstring] = STATE(2904), - [sym_map] = STATE(2904), - [sym__nullary_operator] = STATE(2904), - [sym_unary_operator] = STATE(2904), - [sym_binary_operator] = STATE(2904), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2618), + [sym_charlist] = STATE(2618), + [sym_sigil] = STATE(2618), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(2618), + [sym_tuple] = STATE(2618), + [sym_bitstring] = STATE(2618), + [sym_map] = STATE(2618), + [sym__nullary_operator] = STATE(2618), + [sym_unary_operator] = STATE(2618), + [sym_binary_operator] = STATE(2618), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2904), - [sym_call] = STATE(2904), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2618), + [sym_call] = STATE(2618), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1115), - [sym__call_arguments_without_parentheses] = STATE(1183), - [sym_do_block] = STATE(1453), - [sym_access_call] = STATE(2904), - [sym_anonymous_function] = STATE(2904), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1103), + [sym__call_arguments_without_parentheses] = STATE(1300), + [sym_do_block] = STATE(1413), + [sym_access_call] = STATE(2618), + [sym_anonymous_function] = STATE(2618), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(237), @@ -36801,50 +36567,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [43] = { - [sym__expression] = STATE(2315), - [sym_block] = STATE(2315), + [sym__expression] = STATE(2216), + [sym_block] = STATE(2216), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2315), - [sym_nil] = STATE(2315), - [sym__atom] = STATE(2315), - [sym_quoted_atom] = STATE(2315), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2315), - [sym_charlist] = STATE(2315), - [sym_sigil] = STATE(2315), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2315), - [sym_tuple] = STATE(2315), - [sym_bitstring] = STATE(2315), - [sym_map] = STATE(2315), - [sym__nullary_operator] = STATE(2315), - [sym_unary_operator] = STATE(2315), - [sym_binary_operator] = STATE(2315), + [sym_boolean] = STATE(2216), + [sym_nil] = STATE(2216), + [sym__atom] = STATE(2216), + [sym_quoted_atom] = STATE(2216), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2216), + [sym_charlist] = STATE(2216), + [sym_sigil] = STATE(2216), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2216), + [sym_tuple] = STATE(2216), + [sym_bitstring] = STATE(2216), + [sym_map] = STATE(2216), + [sym__nullary_operator] = STATE(2216), + [sym_unary_operator] = STATE(2216), + [sym_binary_operator] = STATE(2216), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2315), - [sym_call] = STATE(2315), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2216), + [sym_call] = STATE(2216), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), [sym__call_arguments_with_parentheses_immediate] = STATE(1085), - [sym__call_arguments_without_parentheses] = STATE(1112), - [sym_do_block] = STATE(1757), - [sym_access_call] = STATE(2315), - [sym_anonymous_function] = STATE(2315), + [sym__call_arguments_without_parentheses] = STATE(1128), + [sym_do_block] = STATE(1736), + [sym_access_call] = STATE(2216), + [sym_anonymous_function] = STATE(2216), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(189), @@ -36936,50 +36702,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [44] = { - [sym__expression] = STATE(2315), - [sym_block] = STATE(2315), + [sym__expression] = STATE(2216), + [sym_block] = STATE(2216), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2315), - [sym_nil] = STATE(2315), - [sym__atom] = STATE(2315), - [sym_quoted_atom] = STATE(2315), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2315), - [sym_charlist] = STATE(2315), - [sym_sigil] = STATE(2315), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2315), - [sym_tuple] = STATE(2315), - [sym_bitstring] = STATE(2315), - [sym_map] = STATE(2315), - [sym__nullary_operator] = STATE(2315), - [sym_unary_operator] = STATE(2315), - [sym_binary_operator] = STATE(2315), + [sym_boolean] = STATE(2216), + [sym_nil] = STATE(2216), + [sym__atom] = STATE(2216), + [sym_quoted_atom] = STATE(2216), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2216), + [sym_charlist] = STATE(2216), + [sym_sigil] = STATE(2216), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2216), + [sym_tuple] = STATE(2216), + [sym_bitstring] = STATE(2216), + [sym_map] = STATE(2216), + [sym__nullary_operator] = STATE(2216), + [sym_unary_operator] = STATE(2216), + [sym_binary_operator] = STATE(2216), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2315), - [sym_call] = STATE(2315), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2216), + [sym_call] = STATE(2216), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym__call_arguments_with_parentheses_immediate] = STATE(1090), - [sym__call_arguments_without_parentheses] = STATE(1123), - [sym_do_block] = STATE(1222), - [sym_access_call] = STATE(2315), - [sym_anonymous_function] = STATE(2315), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym__call_arguments_with_parentheses_immediate] = STATE(1089), + [sym__call_arguments_without_parentheses] = STATE(1130), + [sym_do_block] = STATE(1235), + [sym_access_call] = STATE(2216), + [sym_anonymous_function] = STATE(2216), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(189), @@ -37071,50 +36837,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [45] = { - [sym__expression] = STATE(2315), - [sym_block] = STATE(2315), + [sym__expression] = STATE(2216), + [sym_block] = STATE(2216), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2315), - [sym_nil] = STATE(2315), - [sym__atom] = STATE(2315), - [sym_quoted_atom] = STATE(2315), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2315), - [sym_charlist] = STATE(2315), - [sym_sigil] = STATE(2315), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2315), - [sym_tuple] = STATE(2315), - [sym_bitstring] = STATE(2315), - [sym_map] = STATE(2315), - [sym__nullary_operator] = STATE(2315), - [sym_unary_operator] = STATE(2315), - [sym_binary_operator] = STATE(2315), + [sym_boolean] = STATE(2216), + [sym_nil] = STATE(2216), + [sym__atom] = STATE(2216), + [sym_quoted_atom] = STATE(2216), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2216), + [sym_charlist] = STATE(2216), + [sym_sigil] = STATE(2216), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2216), + [sym_tuple] = STATE(2216), + [sym_bitstring] = STATE(2216), + [sym_map] = STATE(2216), + [sym__nullary_operator] = STATE(2216), + [sym_unary_operator] = STATE(2216), + [sym_binary_operator] = STATE(2216), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2315), - [sym_call] = STATE(2315), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2216), + [sym_call] = STATE(2216), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym__call_arguments_with_parentheses_immediate] = STATE(1088), - [sym__call_arguments_without_parentheses] = STATE(1098), - [sym_do_block] = STATE(1210), - [sym_access_call] = STATE(2315), - [sym_anonymous_function] = STATE(2315), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym__call_arguments_with_parentheses_immediate] = STATE(1084), + [sym__call_arguments_without_parentheses] = STATE(1131), + [sym_do_block] = STATE(1141), + [sym_access_call] = STATE(2216), + [sym_anonymous_function] = STATE(2216), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(189), @@ -37206,50 +36972,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [46] = { - [sym__expression] = STATE(2672), - [sym_block] = STATE(2672), + [sym__expression] = STATE(2645), + [sym_block] = STATE(2645), [sym_identifier] = STATE(41), - [sym_boolean] = STATE(2672), - [sym_nil] = STATE(2672), - [sym__atom] = STATE(2672), - [sym_quoted_atom] = STATE(2672), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2645), + [sym_nil] = STATE(2645), + [sym__atom] = STATE(2645), + [sym_quoted_atom] = STATE(2645), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2672), - [sym_charlist] = STATE(2672), - [sym_sigil] = STATE(2672), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), - [sym_list] = STATE(2672), - [sym_tuple] = STATE(2672), - [sym_bitstring] = STATE(2672), - [sym_map] = STATE(2672), - [sym__nullary_operator] = STATE(2672), - [sym_unary_operator] = STATE(2672), - [sym_binary_operator] = STATE(2672), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2645), + [sym_charlist] = STATE(2645), + [sym_sigil] = STATE(2645), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), + [sym_list] = STATE(2645), + [sym_tuple] = STATE(2645), + [sym_bitstring] = STATE(2645), + [sym_map] = STATE(2645), + [sym__nullary_operator] = STATE(2645), + [sym_unary_operator] = STATE(2645), + [sym_binary_operator] = STATE(2645), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2672), - [sym_call] = STATE(2672), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2645), + [sym_call] = STATE(2645), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1097), - [sym__call_arguments_without_parentheses] = STATE(1205), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1132), + [sym__call_arguments_without_parentheses] = STATE(1210), [sym_do_block] = STATE(2025), - [sym_access_call] = STATE(2672), - [sym_anonymous_function] = STATE(2672), + [sym_access_call] = STATE(2645), + [sym_anonymous_function] = STATE(2645), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(237), @@ -37341,50 +37107,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [47] = { - [sym__expression] = STATE(2267), - [sym_block] = STATE(2267), + [sym__expression] = STATE(2181), + [sym_block] = STATE(2181), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2267), - [sym_nil] = STATE(2267), - [sym__atom] = STATE(2267), - [sym_quoted_atom] = STATE(2267), + [sym_boolean] = STATE(2181), + [sym_nil] = STATE(2181), + [sym__atom] = STATE(2181), + [sym_quoted_atom] = STATE(2181), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2267), - [sym_charlist] = STATE(2267), - [sym_sigil] = STATE(2267), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2267), - [sym_tuple] = STATE(2267), - [sym_bitstring] = STATE(2267), - [sym_map] = STATE(2267), - [sym__nullary_operator] = STATE(2267), - [sym_unary_operator] = STATE(2267), - [sym_binary_operator] = STATE(2267), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2181), + [sym_charlist] = STATE(2181), + [sym_sigil] = STATE(2181), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2181), + [sym_tuple] = STATE(2181), + [sym_bitstring] = STATE(2181), + [sym_map] = STATE(2181), + [sym__nullary_operator] = STATE(2181), + [sym_unary_operator] = STATE(2181), + [sym_binary_operator] = STATE(2181), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2267), - [sym_call] = STATE(2267), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2181), + [sym_call] = STATE(2181), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1583), - [sym__call_arguments_without_parentheses] = STATE(1829), - [sym_do_block] = STATE(3481), - [sym_access_call] = STATE(2267), - [sym_anonymous_function] = STATE(2267), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1573), + [sym__call_arguments_without_parentheses] = STATE(1861), + [sym_do_block] = STATE(3241), + [sym_access_call] = STATE(2181), + [sym_anonymous_function] = STATE(2181), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [anon_sym_RPAREN] = ACTIONS(285), @@ -37476,50 +37242,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [48] = { - [sym__expression] = STATE(2672), - [sym_block] = STATE(2672), + [sym__expression] = STATE(2645), + [sym_block] = STATE(2645), [sym_identifier] = STATE(41), - [sym_boolean] = STATE(2672), - [sym_nil] = STATE(2672), - [sym__atom] = STATE(2672), - [sym_quoted_atom] = STATE(2672), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2645), + [sym_nil] = STATE(2645), + [sym__atom] = STATE(2645), + [sym_quoted_atom] = STATE(2645), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2672), - [sym_charlist] = STATE(2672), - [sym_sigil] = STATE(2672), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), - [sym_list] = STATE(2672), - [sym_tuple] = STATE(2672), - [sym_bitstring] = STATE(2672), - [sym_map] = STATE(2672), - [sym__nullary_operator] = STATE(2672), - [sym_unary_operator] = STATE(2672), - [sym_binary_operator] = STATE(2672), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2645), + [sym_charlist] = STATE(2645), + [sym_sigil] = STATE(2645), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), + [sym_list] = STATE(2645), + [sym_tuple] = STATE(2645), + [sym_bitstring] = STATE(2645), + [sym_map] = STATE(2645), + [sym__nullary_operator] = STATE(2645), + [sym_unary_operator] = STATE(2645), + [sym_binary_operator] = STATE(2645), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2672), - [sym_call] = STATE(2672), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2645), + [sym_call] = STATE(2645), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1110), - [sym__call_arguments_without_parentheses] = STATE(1190), - [sym_do_block] = STATE(1454), - [sym_access_call] = STATE(2672), - [sym_anonymous_function] = STATE(2672), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1102), + [sym__call_arguments_without_parentheses] = STATE(1304), + [sym_do_block] = STATE(1408), + [sym_access_call] = STATE(2645), + [sym_anonymous_function] = STATE(2645), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(237), @@ -37611,50 +37377,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [49] = { - [sym__expression] = STATE(2904), - [sym_block] = STATE(2904), + [sym__expression] = STATE(2618), + [sym_block] = STATE(2618), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2904), - [sym_nil] = STATE(2904), - [sym__atom] = STATE(2904), - [sym_quoted_atom] = STATE(2904), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2618), + [sym_nil] = STATE(2618), + [sym__atom] = STATE(2618), + [sym_quoted_atom] = STATE(2618), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2904), - [sym_charlist] = STATE(2904), - [sym_sigil] = STATE(2904), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(2904), - [sym_tuple] = STATE(2904), - [sym_bitstring] = STATE(2904), - [sym_map] = STATE(2904), - [sym__nullary_operator] = STATE(2904), - [sym_unary_operator] = STATE(2904), - [sym_binary_operator] = STATE(2904), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2618), + [sym_charlist] = STATE(2618), + [sym_sigil] = STATE(2618), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(2618), + [sym_tuple] = STATE(2618), + [sym_bitstring] = STATE(2618), + [sym_map] = STATE(2618), + [sym__nullary_operator] = STATE(2618), + [sym_unary_operator] = STATE(2618), + [sym_binary_operator] = STATE(2618), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2904), - [sym_call] = STATE(2904), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2618), + [sym_call] = STATE(2618), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1097), - [sym__call_arguments_without_parentheses] = STATE(1205), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1132), + [sym__call_arguments_without_parentheses] = STATE(1210), [sym_do_block] = STATE(2025), - [sym_access_call] = STATE(2904), - [sym_anonymous_function] = STATE(2904), + [sym_access_call] = STATE(2618), + [sym_anonymous_function] = STATE(2618), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(237), @@ -37746,50 +37512,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [50] = { - [sym__expression] = STATE(2416), - [sym_block] = STATE(2416), + [sym__expression] = STATE(2893), + [sym_block] = STATE(2893), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(2416), - [sym_nil] = STATE(2416), - [sym__atom] = STATE(2416), - [sym_quoted_atom] = STATE(2416), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(2416), - [sym_charlist] = STATE(2416), - [sym_sigil] = STATE(2416), - [sym_keywords] = STATE(3497), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(2416), - [sym_tuple] = STATE(2416), - [sym_bitstring] = STATE(2416), - [sym_map] = STATE(2416), - [sym__nullary_operator] = STATE(2416), - [sym_unary_operator] = STATE(2416), - [sym_binary_operator] = STATE(2416), + [sym_boolean] = STATE(2893), + [sym_nil] = STATE(2893), + [sym__atom] = STATE(2893), + [sym_quoted_atom] = STATE(2893), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(2893), + [sym_charlist] = STATE(2893), + [sym_sigil] = STATE(2893), + [sym_keywords] = STATE(3061), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(2893), + [sym_tuple] = STATE(2893), + [sym_bitstring] = STATE(2893), + [sym_map] = STATE(2893), + [sym__nullary_operator] = STATE(2893), + [sym_unary_operator] = STATE(2893), + [sym_binary_operator] = STATE(2893), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(2416), - [sym_call] = STATE(2416), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(2893), + [sym_call] = STATE(2893), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym__call_arguments_with_parentheses_immediate] = STATE(2282), - [sym__call_arguments_without_parentheses] = STATE(2390), - [sym_do_block] = STATE(4402), - [sym_access_call] = STATE(2416), - [sym_anonymous_function] = STATE(2416), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym__call_arguments_with_parentheses_immediate] = STATE(2158), + [sym__call_arguments_without_parentheses] = STATE(2876), + [sym_do_block] = STATE(4171), + [sym_access_call] = STATE(2893), + [sym_anonymous_function] = STATE(2893), [ts_builtin_sym_end] = ACTIONS(185), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), @@ -37881,50 +37647,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [51] = { - [sym__expression] = STATE(2904), - [sym_block] = STATE(2904), + [sym__expression] = STATE(2618), + [sym_block] = STATE(2618), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2904), - [sym_nil] = STATE(2904), - [sym__atom] = STATE(2904), - [sym_quoted_atom] = STATE(2904), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2618), + [sym_nil] = STATE(2618), + [sym__atom] = STATE(2618), + [sym_quoted_atom] = STATE(2618), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2904), - [sym_charlist] = STATE(2904), - [sym_sigil] = STATE(2904), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(2904), - [sym_tuple] = STATE(2904), - [sym_bitstring] = STATE(2904), - [sym_map] = STATE(2904), - [sym__nullary_operator] = STATE(2904), - [sym_unary_operator] = STATE(2904), - [sym_binary_operator] = STATE(2904), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2618), + [sym_charlist] = STATE(2618), + [sym_sigil] = STATE(2618), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(2618), + [sym_tuple] = STATE(2618), + [sym_bitstring] = STATE(2618), + [sym_map] = STATE(2618), + [sym__nullary_operator] = STATE(2618), + [sym_unary_operator] = STATE(2618), + [sym_binary_operator] = STATE(2618), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2904), - [sym_call] = STATE(2904), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2618), + [sym_call] = STATE(2618), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1110), - [sym__call_arguments_without_parentheses] = STATE(1190), - [sym_do_block] = STATE(1454), - [sym_access_call] = STATE(2904), - [sym_anonymous_function] = STATE(2904), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1102), + [sym__call_arguments_without_parentheses] = STATE(1304), + [sym_do_block] = STATE(1408), + [sym_access_call] = STATE(2618), + [sym_anonymous_function] = STATE(2618), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_LPAREN] = ACTIONS(237), @@ -38016,50 +37782,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [52] = { - [sym__expression] = STATE(2416), - [sym_block] = STATE(2416), + [sym__expression] = STATE(2893), + [sym_block] = STATE(2893), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(2416), - [sym_nil] = STATE(2416), - [sym__atom] = STATE(2416), - [sym_quoted_atom] = STATE(2416), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(2416), - [sym_charlist] = STATE(2416), - [sym_sigil] = STATE(2416), - [sym_keywords] = STATE(3497), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(2416), - [sym_tuple] = STATE(2416), - [sym_bitstring] = STATE(2416), - [sym_map] = STATE(2416), - [sym__nullary_operator] = STATE(2416), - [sym_unary_operator] = STATE(2416), - [sym_binary_operator] = STATE(2416), + [sym_boolean] = STATE(2893), + [sym_nil] = STATE(2893), + [sym__atom] = STATE(2893), + [sym_quoted_atom] = STATE(2893), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(2893), + [sym_charlist] = STATE(2893), + [sym_sigil] = STATE(2893), + [sym_keywords] = STATE(3061), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(2893), + [sym_tuple] = STATE(2893), + [sym_bitstring] = STATE(2893), + [sym_map] = STATE(2893), + [sym__nullary_operator] = STATE(2893), + [sym_unary_operator] = STATE(2893), + [sym_binary_operator] = STATE(2893), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(2416), - [sym_call] = STATE(2416), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(2893), + [sym_call] = STATE(2893), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym__call_arguments_with_parentheses_immediate] = STATE(2332), - [sym__call_arguments_without_parentheses] = STATE(2668), - [sym_do_block] = STATE(3058), - [sym_access_call] = STATE(2416), - [sym_anonymous_function] = STATE(2416), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym__call_arguments_with_parentheses_immediate] = STATE(2187), + [sym__call_arguments_without_parentheses] = STATE(2655), + [sym_do_block] = STATE(3280), + [sym_access_call] = STATE(2893), + [sym_anonymous_function] = STATE(2893), [ts_builtin_sym_end] = ACTIONS(185), [aux_sym__terminator_token1] = ACTIONS(185), [anon_sym_SEMI] = ACTIONS(187), @@ -38151,50 +37917,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [53] = { - [sym__expression] = STATE(2416), - [sym_block] = STATE(2416), + [sym__expression] = STATE(2893), + [sym_block] = STATE(2893), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(2416), - [sym_nil] = STATE(2416), - [sym__atom] = STATE(2416), - [sym_quoted_atom] = STATE(2416), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(2416), - [sym_charlist] = STATE(2416), - [sym_sigil] = STATE(2416), - [sym_keywords] = STATE(3497), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(2416), - [sym_tuple] = STATE(2416), - [sym_bitstring] = STATE(2416), - [sym_map] = STATE(2416), - [sym__nullary_operator] = STATE(2416), - [sym_unary_operator] = STATE(2416), - [sym_binary_operator] = STATE(2416), + [sym_boolean] = STATE(2893), + [sym_nil] = STATE(2893), + [sym__atom] = STATE(2893), + [sym_quoted_atom] = STATE(2893), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(2893), + [sym_charlist] = STATE(2893), + [sym_sigil] = STATE(2893), + [sym_keywords] = STATE(3061), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(2893), + [sym_tuple] = STATE(2893), + [sym_bitstring] = STATE(2893), + [sym_map] = STATE(2893), + [sym__nullary_operator] = STATE(2893), + [sym_unary_operator] = STATE(2893), + [sym_binary_operator] = STATE(2893), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(2416), - [sym_call] = STATE(2416), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(2893), + [sym_call] = STATE(2893), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym__call_arguments_with_parentheses_immediate] = STATE(2333), - [sym__call_arguments_without_parentheses] = STATE(2671), - [sym_do_block] = STATE(3055), - [sym_access_call] = STATE(2416), - [sym_anonymous_function] = STATE(2416), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym__call_arguments_with_parentheses_immediate] = STATE(2188), + [sym__call_arguments_without_parentheses] = STATE(2647), + [sym_do_block] = STATE(3288), + [sym_access_call] = STATE(2893), + [sym_anonymous_function] = STATE(2893), [ts_builtin_sym_end] = ACTIONS(283), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), @@ -38286,50 +38052,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [54] = { - [sym__expression] = STATE(2904), - [sym_block] = STATE(2904), + [sym__expression] = STATE(2618), + [sym_block] = STATE(2618), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2904), - [sym_nil] = STATE(2904), - [sym__atom] = STATE(2904), - [sym_quoted_atom] = STATE(2904), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2618), + [sym_nil] = STATE(2618), + [sym__atom] = STATE(2618), + [sym_quoted_atom] = STATE(2618), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2904), - [sym_charlist] = STATE(2904), - [sym_sigil] = STATE(2904), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(2904), - [sym_tuple] = STATE(2904), - [sym_bitstring] = STATE(2904), - [sym_map] = STATE(2904), - [sym__nullary_operator] = STATE(2904), - [sym_unary_operator] = STATE(2904), - [sym_binary_operator] = STATE(2904), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2618), + [sym_charlist] = STATE(2618), + [sym_sigil] = STATE(2618), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(2618), + [sym_tuple] = STATE(2618), + [sym_bitstring] = STATE(2618), + [sym_map] = STATE(2618), + [sym__nullary_operator] = STATE(2618), + [sym_unary_operator] = STATE(2618), + [sym_binary_operator] = STATE(2618), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2904), - [sym_call] = STATE(2904), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2618), + [sym_call] = STATE(2618), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1099), - [sym__call_arguments_without_parentheses] = STATE(1209), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1124), + [sym__call_arguments_without_parentheses] = STATE(1215), [sym_do_block] = STATE(2020), - [sym_access_call] = STATE(2904), - [sym_anonymous_function] = STATE(2904), + [sym_access_call] = STATE(2618), + [sym_anonymous_function] = STATE(2618), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(237), @@ -38420,50 +38186,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [55] = { - [sym__expression] = STATE(2315), - [sym_block] = STATE(2315), + [sym__expression] = STATE(2216), + [sym_block] = STATE(2216), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2315), - [sym_nil] = STATE(2315), - [sym__atom] = STATE(2315), - [sym_quoted_atom] = STATE(2315), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2315), - [sym_charlist] = STATE(2315), - [sym_sigil] = STATE(2315), - [sym_keywords] = STATE(1218), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2315), - [sym_tuple] = STATE(2315), - [sym_bitstring] = STATE(2315), - [sym_map] = STATE(2315), - [sym__nullary_operator] = STATE(2315), - [sym_unary_operator] = STATE(2315), - [sym_binary_operator] = STATE(2315), + [sym_boolean] = STATE(2216), + [sym_nil] = STATE(2216), + [sym__atom] = STATE(2216), + [sym_quoted_atom] = STATE(2216), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2216), + [sym_charlist] = STATE(2216), + [sym_sigil] = STATE(2216), + [sym_keywords] = STATE(1223), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2216), + [sym_tuple] = STATE(2216), + [sym_bitstring] = STATE(2216), + [sym_map] = STATE(2216), + [sym__nullary_operator] = STATE(2216), + [sym_unary_operator] = STATE(2216), + [sym_binary_operator] = STATE(2216), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2315), - [sym_call] = STATE(2315), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2216), + [sym_call] = STATE(2216), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym__call_arguments_with_parentheses_immediate] = STATE(1089), - [sym__call_arguments_without_parentheses] = STATE(1118), - [sym_do_block] = STATE(1735), - [sym_access_call] = STATE(2315), - [sym_anonymous_function] = STATE(2315), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1123), + [sym_do_block] = STATE(1737), + [sym_access_call] = STATE(2216), + [sym_anonymous_function] = STATE(2216), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(189), @@ -38554,50 +38320,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [56] = { - [sym__expression] = STATE(2541), - [sym_block] = STATE(2541), + [sym__expression] = STATE(2912), + [sym_block] = STATE(2912), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2541), - [sym_nil] = STATE(2541), - [sym__atom] = STATE(2541), - [sym_quoted_atom] = STATE(2541), + [sym_boolean] = STATE(2912), + [sym_nil] = STATE(2912), + [sym__atom] = STATE(2912), + [sym_quoted_atom] = STATE(2912), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2541), - [sym_charlist] = STATE(2541), - [sym_sigil] = STATE(2541), - [sym_keywords] = STATE(3360), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), - [sym_list] = STATE(2541), - [sym_tuple] = STATE(2541), - [sym_bitstring] = STATE(2541), - [sym_map] = STATE(2541), - [sym__nullary_operator] = STATE(2541), - [sym_unary_operator] = STATE(2541), - [sym_binary_operator] = STATE(2541), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2912), + [sym_charlist] = STATE(2912), + [sym_sigil] = STATE(2912), + [sym_keywords] = STATE(2978), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(2912), + [sym_tuple] = STATE(2912), + [sym_bitstring] = STATE(2912), + [sym_map] = STATE(2912), + [sym__nullary_operator] = STATE(2912), + [sym_unary_operator] = STATE(2912), + [sym_binary_operator] = STATE(2912), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2541), - [sym_call] = STATE(2541), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(2912), + [sym_call] = STATE(2912), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym__call_arguments_with_parentheses_immediate] = STATE(2314), - [sym__call_arguments_without_parentheses] = STATE(2907), - [sym_do_block] = STATE(2979), - [sym_access_call] = STATE(2541), - [sym_anonymous_function] = STATE(2541), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym__call_arguments_with_parentheses_immediate] = STATE(2169), + [sym__call_arguments_without_parentheses] = STATE(2897), + [sym_do_block] = STATE(2983), + [sym_access_call] = STATE(2912), + [sym_anonymous_function] = STATE(2912), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(285), @@ -38688,50 +38454,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [57] = { - [sym__expression] = STATE(2672), - [sym_block] = STATE(2672), + [sym__expression] = STATE(2645), + [sym_block] = STATE(2645), [sym_identifier] = STATE(41), - [sym_boolean] = STATE(2672), - [sym_nil] = STATE(2672), - [sym__atom] = STATE(2672), - [sym_quoted_atom] = STATE(2672), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(2645), + [sym_nil] = STATE(2645), + [sym__atom] = STATE(2645), + [sym_quoted_atom] = STATE(2645), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2672), - [sym_charlist] = STATE(2672), - [sym_sigil] = STATE(2672), - [sym_keywords] = STATE(1536), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), - [sym_list] = STATE(2672), - [sym_tuple] = STATE(2672), - [sym_bitstring] = STATE(2672), - [sym_map] = STATE(2672), - [sym__nullary_operator] = STATE(2672), - [sym_unary_operator] = STATE(2672), - [sym_binary_operator] = STATE(2672), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2645), + [sym_charlist] = STATE(2645), + [sym_sigil] = STATE(2645), + [sym_keywords] = STATE(1427), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), + [sym_list] = STATE(2645), + [sym_tuple] = STATE(2645), + [sym_bitstring] = STATE(2645), + [sym_map] = STATE(2645), + [sym__nullary_operator] = STATE(2645), + [sym_unary_operator] = STATE(2645), + [sym_binary_operator] = STATE(2645), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2672), - [sym_call] = STATE(2672), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(2645), + [sym_call] = STATE(2645), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym__call_arguments_with_parentheses_immediate] = STATE(1099), - [sym__call_arguments_without_parentheses] = STATE(1209), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym__call_arguments_with_parentheses_immediate] = STATE(1124), + [sym__call_arguments_without_parentheses] = STATE(1215), [sym_do_block] = STATE(2020), - [sym_access_call] = STATE(2672), - [sym_anonymous_function] = STATE(2672), + [sym_access_call] = STATE(2645), + [sym_anonymous_function] = STATE(2645), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), [anon_sym_LPAREN] = ACTIONS(237), @@ -38822,50 +38588,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [58] = { - [sym__expression] = STATE(2541), - [sym_block] = STATE(2541), + [sym__expression] = STATE(2912), + [sym_block] = STATE(2912), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2541), - [sym_nil] = STATE(2541), - [sym__atom] = STATE(2541), - [sym_quoted_atom] = STATE(2541), + [sym_boolean] = STATE(2912), + [sym_nil] = STATE(2912), + [sym__atom] = STATE(2912), + [sym_quoted_atom] = STATE(2912), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2541), - [sym_charlist] = STATE(2541), - [sym_sigil] = STATE(2541), - [sym_keywords] = STATE(3360), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), - [sym_list] = STATE(2541), - [sym_tuple] = STATE(2541), - [sym_bitstring] = STATE(2541), - [sym_map] = STATE(2541), - [sym__nullary_operator] = STATE(2541), - [sym_unary_operator] = STATE(2541), - [sym_binary_operator] = STATE(2541), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2912), + [sym_charlist] = STATE(2912), + [sym_sigil] = STATE(2912), + [sym_keywords] = STATE(2978), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(2912), + [sym_tuple] = STATE(2912), + [sym_bitstring] = STATE(2912), + [sym_map] = STATE(2912), + [sym__nullary_operator] = STATE(2912), + [sym_unary_operator] = STATE(2912), + [sym_binary_operator] = STATE(2912), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2541), - [sym_call] = STATE(2541), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(2912), + [sym_call] = STATE(2912), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym__call_arguments_with_parentheses_immediate] = STATE(2172), - [sym__call_arguments_without_parentheses] = STATE(2545), - [sym_do_block] = STATE(4076), - [sym_access_call] = STATE(2541), - [sym_anonymous_function] = STATE(2541), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym__call_arguments_with_parentheses_immediate] = STATE(2171), + [sym__call_arguments_without_parentheses] = STATE(2914), + [sym_do_block] = STATE(4095), + [sym_access_call] = STATE(2912), + [sym_anonymous_function] = STATE(2912), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(187), @@ -38956,50 +38722,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [59] = { - [sym__expression] = STATE(3416), - [sym_block] = STATE(3416), + [sym__expression] = STATE(3492), + [sym_block] = STATE(3492), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3416), - [sym_nil] = STATE(3416), - [sym__atom] = STATE(3416), - [sym_quoted_atom] = STATE(3416), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3416), - [sym_charlist] = STATE(3416), - [sym_sigil] = STATE(3416), - [sym_keywords] = STATE(3699), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3416), - [sym_tuple] = STATE(3416), - [sym_bitstring] = STATE(3416), - [sym_map] = STATE(3416), - [sym__nullary_operator] = STATE(3416), - [sym_unary_operator] = STATE(3416), - [sym_binary_operator] = STATE(3416), + [sym_boolean] = STATE(3492), + [sym_nil] = STATE(3492), + [sym__atom] = STATE(3492), + [sym_quoted_atom] = STATE(3492), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3492), + [sym_charlist] = STATE(3492), + [sym_sigil] = STATE(3492), + [sym_keywords] = STATE(3516), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3492), + [sym_tuple] = STATE(3492), + [sym_bitstring] = STATE(3492), + [sym_map] = STATE(3492), + [sym__nullary_operator] = STATE(3492), + [sym_unary_operator] = STATE(3492), + [sym_binary_operator] = STATE(3492), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3416), - [sym_call] = STATE(3416), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3492), + [sym_call] = STATE(3492), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), [sym__call_arguments_with_parentheses_immediate] = STATE(2742), - [sym__call_arguments_without_parentheses] = STATE(3379), - [sym_do_block] = STATE(3782), - [sym_access_call] = STATE(3416), - [sym_anonymous_function] = STATE(3416), + [sym__call_arguments_without_parentheses] = STATE(3203), + [sym_do_block] = STATE(4001), + [sym_access_call] = STATE(3492), + [sym_anonymous_function] = STATE(3492), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), @@ -39090,50 +38856,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [60] = { - [sym__expression] = STATE(2416), - [sym_block] = STATE(2416), + [sym__expression] = STATE(2893), + [sym_block] = STATE(2893), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(2416), - [sym_nil] = STATE(2416), - [sym__atom] = STATE(2416), - [sym_quoted_atom] = STATE(2416), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(2416), - [sym_charlist] = STATE(2416), - [sym_sigil] = STATE(2416), - [sym_keywords] = STATE(3497), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(2416), - [sym_tuple] = STATE(2416), - [sym_bitstring] = STATE(2416), - [sym_map] = STATE(2416), - [sym__nullary_operator] = STATE(2416), - [sym_unary_operator] = STATE(2416), - [sym_binary_operator] = STATE(2416), + [sym_boolean] = STATE(2893), + [sym_nil] = STATE(2893), + [sym__atom] = STATE(2893), + [sym_quoted_atom] = STATE(2893), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(2893), + [sym_charlist] = STATE(2893), + [sym_sigil] = STATE(2893), + [sym_keywords] = STATE(3061), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(2893), + [sym_tuple] = STATE(2893), + [sym_bitstring] = STATE(2893), + [sym_map] = STATE(2893), + [sym__nullary_operator] = STATE(2893), + [sym_unary_operator] = STATE(2893), + [sym_binary_operator] = STATE(2893), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(2416), - [sym_call] = STATE(2416), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(2893), + [sym_call] = STATE(2893), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym__call_arguments_with_parentheses_immediate] = STATE(2279), - [sym__call_arguments_without_parentheses] = STATE(2397), - [sym_do_block] = STATE(4407), - [sym_access_call] = STATE(2416), - [sym_anonymous_function] = STATE(2416), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym__call_arguments_with_parentheses_immediate] = STATE(2167), + [sym__call_arguments_without_parentheses] = STATE(2882), + [sym_do_block] = STATE(4193), + [sym_access_call] = STATE(2893), + [sym_anonymous_function] = STATE(2893), [ts_builtin_sym_end] = ACTIONS(283), [aux_sym__terminator_token1] = ACTIONS(283), [anon_sym_SEMI] = ACTIONS(285), @@ -39224,50 +38990,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [61] = { - [sym__expression] = STATE(2541), - [sym_block] = STATE(2541), + [sym__expression] = STATE(2912), + [sym_block] = STATE(2912), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2541), - [sym_nil] = STATE(2541), - [sym__atom] = STATE(2541), - [sym_quoted_atom] = STATE(2541), + [sym_boolean] = STATE(2912), + [sym_nil] = STATE(2912), + [sym__atom] = STATE(2912), + [sym_quoted_atom] = STATE(2912), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2541), - [sym_charlist] = STATE(2541), - [sym_sigil] = STATE(2541), - [sym_keywords] = STATE(3360), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), - [sym_list] = STATE(2541), - [sym_tuple] = STATE(2541), - [sym_bitstring] = STATE(2541), - [sym_map] = STATE(2541), - [sym__nullary_operator] = STATE(2541), - [sym_unary_operator] = STATE(2541), - [sym_binary_operator] = STATE(2541), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2912), + [sym_charlist] = STATE(2912), + [sym_sigil] = STATE(2912), + [sym_keywords] = STATE(2978), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(2912), + [sym_tuple] = STATE(2912), + [sym_bitstring] = STATE(2912), + [sym_map] = STATE(2912), + [sym__nullary_operator] = STATE(2912), + [sym_unary_operator] = STATE(2912), + [sym_binary_operator] = STATE(2912), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2541), - [sym_call] = STATE(2541), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(2912), + [sym_call] = STATE(2912), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym__call_arguments_with_parentheses_immediate] = STATE(2240), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym__call_arguments_with_parentheses_immediate] = STATE(2168), [sym__call_arguments_without_parentheses] = STATE(2894), - [sym_do_block] = STATE(2982), - [sym_access_call] = STATE(2541), - [sym_anonymous_function] = STATE(2541), + [sym_do_block] = STATE(2984), + [sym_access_call] = STATE(2912), + [sym_anonymous_function] = STATE(2912), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(187), @@ -39358,50 +39124,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [62] = { - [sym__expression] = STATE(3416), - [sym_block] = STATE(3416), + [sym__expression] = STATE(3492), + [sym_block] = STATE(3492), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3416), - [sym_nil] = STATE(3416), - [sym__atom] = STATE(3416), - [sym_quoted_atom] = STATE(3416), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3416), - [sym_charlist] = STATE(3416), - [sym_sigil] = STATE(3416), - [sym_keywords] = STATE(3699), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3416), - [sym_tuple] = STATE(3416), - [sym_bitstring] = STATE(3416), - [sym_map] = STATE(3416), - [sym__nullary_operator] = STATE(3416), - [sym_unary_operator] = STATE(3416), - [sym_binary_operator] = STATE(3416), + [sym_boolean] = STATE(3492), + [sym_nil] = STATE(3492), + [sym__atom] = STATE(3492), + [sym_quoted_atom] = STATE(3492), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3492), + [sym_charlist] = STATE(3492), + [sym_sigil] = STATE(3492), + [sym_keywords] = STATE(3516), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3492), + [sym_tuple] = STATE(3492), + [sym_bitstring] = STATE(3492), + [sym_map] = STATE(3492), + [sym__nullary_operator] = STATE(3492), + [sym_unary_operator] = STATE(3492), + [sym_binary_operator] = STATE(3492), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3416), - [sym_call] = STATE(3416), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3492), + [sym_call] = STATE(3492), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym__call_arguments_with_parentheses_immediate] = STATE(2699), - [sym__call_arguments_without_parentheses] = STATE(3456), - [sym_do_block] = STATE(4480), - [sym_access_call] = STATE(3416), - [sym_anonymous_function] = STATE(3416), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym__call_arguments_with_parentheses_immediate] = STATE(2371), + [sym__call_arguments_without_parentheses] = STATE(3482), + [sym_do_block] = STATE(4478), + [sym_access_call] = STATE(3492), + [sym_anonymous_function] = STATE(3492), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), @@ -39492,50 +39258,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [63] = { - [sym__expression] = STATE(3416), - [sym_block] = STATE(3416), + [sym__expression] = STATE(3492), + [sym_block] = STATE(3492), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3416), - [sym_nil] = STATE(3416), - [sym__atom] = STATE(3416), - [sym_quoted_atom] = STATE(3416), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3416), - [sym_charlist] = STATE(3416), - [sym_sigil] = STATE(3416), - [sym_keywords] = STATE(3699), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3416), - [sym_tuple] = STATE(3416), - [sym_bitstring] = STATE(3416), - [sym_map] = STATE(3416), - [sym__nullary_operator] = STATE(3416), - [sym_unary_operator] = STATE(3416), - [sym_binary_operator] = STATE(3416), + [sym_boolean] = STATE(3492), + [sym_nil] = STATE(3492), + [sym__atom] = STATE(3492), + [sym_quoted_atom] = STATE(3492), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3492), + [sym_charlist] = STATE(3492), + [sym_sigil] = STATE(3492), + [sym_keywords] = STATE(3516), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3492), + [sym_tuple] = STATE(3492), + [sym_bitstring] = STATE(3492), + [sym_map] = STATE(3492), + [sym__nullary_operator] = STATE(3492), + [sym_unary_operator] = STATE(3492), + [sym_binary_operator] = STATE(3492), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3416), - [sym_call] = STATE(3416), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3492), + [sym_call] = STATE(3492), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), [sym__call_arguments_with_parentheses_immediate] = STATE(2737), - [sym__call_arguments_without_parentheses] = STATE(3282), - [sym_do_block] = STATE(3780), - [sym_access_call] = STATE(3416), - [sym_anonymous_function] = STATE(3416), + [sym__call_arguments_without_parentheses] = STATE(3224), + [sym_do_block] = STATE(4002), + [sym_access_call] = STATE(3492), + [sym_anonymous_function] = STATE(3492), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), @@ -39626,50 +39392,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [64] = { - [sym__expression] = STATE(2991), - [sym_block] = STATE(2991), + [sym__expression] = STATE(3317), + [sym_block] = STATE(3317), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2991), - [sym_nil] = STATE(2991), - [sym__atom] = STATE(2991), - [sym_quoted_atom] = STATE(2991), + [sym_boolean] = STATE(3317), + [sym_nil] = STATE(3317), + [sym__atom] = STATE(3317), + [sym_quoted_atom] = STATE(3317), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2991), - [sym_charlist] = STATE(2991), - [sym_sigil] = STATE(2991), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(2991), - [sym_tuple] = STATE(2991), - [sym_bitstring] = STATE(2991), - [sym_map] = STATE(2991), - [sym__nullary_operator] = STATE(2991), - [sym_unary_operator] = STATE(2991), - [sym_binary_operator] = STATE(2991), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3317), + [sym_charlist] = STATE(3317), + [sym_sigil] = STATE(3317), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(3317), + [sym_tuple] = STATE(3317), + [sym_bitstring] = STATE(3317), + [sym_map] = STATE(3317), + [sym__nullary_operator] = STATE(3317), + [sym_unary_operator] = STATE(3317), + [sym_binary_operator] = STATE(3317), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2991), - [sym_call] = STATE(2991), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3317), + [sym_call] = STATE(3317), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1669), - [sym__call_arguments_without_parentheses] = STATE(2021), - [sym_do_block] = STATE(2161), - [sym_access_call] = STATE(2991), - [sym_anonymous_function] = STATE(2991), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1595), + [sym__call_arguments_without_parentheses] = STATE(2087), + [sym_do_block] = STATE(2250), + [sym_access_call] = STATE(3317), + [sym_anonymous_function] = STATE(3317), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), @@ -39759,50 +39525,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [65] = { - [sym__expression] = STATE(2991), - [sym_block] = STATE(2991), + [sym__expression] = STATE(3317), + [sym_block] = STATE(3317), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2991), - [sym_nil] = STATE(2991), - [sym__atom] = STATE(2991), - [sym_quoted_atom] = STATE(2991), + [sym_boolean] = STATE(3317), + [sym_nil] = STATE(3317), + [sym__atom] = STATE(3317), + [sym_quoted_atom] = STATE(3317), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2991), - [sym_charlist] = STATE(2991), - [sym_sigil] = STATE(2991), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(2991), - [sym_tuple] = STATE(2991), - [sym_bitstring] = STATE(2991), - [sym_map] = STATE(2991), - [sym__nullary_operator] = STATE(2991), - [sym_unary_operator] = STATE(2991), - [sym_binary_operator] = STATE(2991), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3317), + [sym_charlist] = STATE(3317), + [sym_sigil] = STATE(3317), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(3317), + [sym_tuple] = STATE(3317), + [sym_bitstring] = STATE(3317), + [sym_map] = STATE(3317), + [sym__nullary_operator] = STATE(3317), + [sym_unary_operator] = STATE(3317), + [sym_binary_operator] = STATE(3317), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2991), - [sym_call] = STATE(2991), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3317), + [sym_call] = STATE(3317), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1581), - [sym__call_arguments_without_parentheses] = STATE(1824), - [sym_do_block] = STATE(3482), - [sym_access_call] = STATE(2991), - [sym_anonymous_function] = STATE(2991), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1598), + [sym__call_arguments_without_parentheses] = STATE(1864), + [sym_do_block] = STATE(3240), + [sym_access_call] = STATE(3317), + [sym_anonymous_function] = STATE(3317), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), @@ -39892,53 +39658,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [66] = { - [sym__expression] = STATE(1103), - [sym_block] = STATE(1103), + [sym__expression] = STATE(1115), + [sym_block] = STATE(1115), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1103), - [sym_nil] = STATE(1103), - [sym__atom] = STATE(1103), - [sym_quoted_atom] = STATE(1103), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1103), - [sym_charlist] = STATE(1103), - [sym_sigil] = STATE(1103), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1103), - [sym_tuple] = STATE(1103), - [sym_bitstring] = STATE(1103), - [sym_map] = STATE(1103), - [sym__nullary_operator] = STATE(1103), - [sym_unary_operator] = STATE(1103), - [sym_binary_operator] = STATE(1103), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1103), - [sym_call] = STATE(1103), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1115), + [sym_nil] = STATE(1115), + [sym__atom] = STATE(1115), + [sym_quoted_atom] = STATE(1115), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1115), + [sym_charlist] = STATE(1115), + [sym_sigil] = STATE(1115), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1115), + [sym_tuple] = STATE(1115), + [sym_bitstring] = STATE(1115), + [sym_map] = STATE(1115), + [sym__nullary_operator] = STATE(1115), + [sym_unary_operator] = STATE(1115), + [sym_binary_operator] = STATE(1115), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1115), + [sym_call] = STATE(1115), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1103), - [sym_stab_clause] = STATE(4759), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1103), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1115), + [sym_stab_clause] = STATE(4776), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1115), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -40025,53 +39791,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [67] = { - [sym__expression] = STATE(1095), - [sym_block] = STATE(1095), + [sym__expression] = STATE(1116), + [sym_block] = STATE(1116), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1095), - [sym_nil] = STATE(1095), - [sym__atom] = STATE(1095), - [sym_quoted_atom] = STATE(1095), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1095), - [sym_charlist] = STATE(1095), - [sym_sigil] = STATE(1095), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1095), - [sym_tuple] = STATE(1095), - [sym_bitstring] = STATE(1095), - [sym_map] = STATE(1095), - [sym__nullary_operator] = STATE(1095), - [sym_unary_operator] = STATE(1095), - [sym_binary_operator] = STATE(1095), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1095), - [sym_call] = STATE(1095), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1116), + [sym_nil] = STATE(1116), + [sym__atom] = STATE(1116), + [sym_quoted_atom] = STATE(1116), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1116), + [sym_charlist] = STATE(1116), + [sym_sigil] = STATE(1116), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1116), + [sym_tuple] = STATE(1116), + [sym_bitstring] = STATE(1116), + [sym_map] = STATE(1116), + [sym__nullary_operator] = STATE(1116), + [sym_unary_operator] = STATE(1116), + [sym_binary_operator] = STATE(1116), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1116), + [sym_call] = STATE(1116), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1095), - [sym_stab_clause] = STATE(4763), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1095), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1116), + [sym_stab_clause] = STATE(4773), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1116), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -40158,50 +39924,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [68] = { - [sym__expression] = STATE(3416), - [sym_block] = STATE(3416), + [sym__expression] = STATE(3492), + [sym_block] = STATE(3492), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3416), - [sym_nil] = STATE(3416), - [sym__atom] = STATE(3416), - [sym_quoted_atom] = STATE(3416), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3416), - [sym_charlist] = STATE(3416), - [sym_sigil] = STATE(3416), - [sym_keywords] = STATE(3699), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3416), - [sym_tuple] = STATE(3416), - [sym_bitstring] = STATE(3416), - [sym_map] = STATE(3416), - [sym__nullary_operator] = STATE(3416), - [sym_unary_operator] = STATE(3416), - [sym_binary_operator] = STATE(3416), + [sym_boolean] = STATE(3492), + [sym_nil] = STATE(3492), + [sym__atom] = STATE(3492), + [sym_quoted_atom] = STATE(3492), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3492), + [sym_charlist] = STATE(3492), + [sym_sigil] = STATE(3492), + [sym_keywords] = STATE(3516), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3492), + [sym_tuple] = STATE(3492), + [sym_bitstring] = STATE(3492), + [sym_map] = STATE(3492), + [sym__nullary_operator] = STATE(3492), + [sym_unary_operator] = STATE(3492), + [sym_binary_operator] = STATE(3492), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3416), - [sym_call] = STATE(3416), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3492), + [sym_call] = STATE(3492), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym__call_arguments_with_parentheses_immediate] = STATE(2722), - [sym__call_arguments_without_parentheses] = STATE(3423), - [sym_do_block] = STATE(4513), - [sym_access_call] = STATE(3416), - [sym_anonymous_function] = STATE(3416), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym__call_arguments_with_parentheses_immediate] = STATE(2367), + [sym__call_arguments_without_parentheses] = STATE(3487), + [sym_do_block] = STATE(4479), + [sym_access_call] = STATE(3492), + [sym_anonymous_function] = STATE(3492), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), @@ -40291,50 +40057,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [69] = { - [sym__expression] = STATE(2991), - [sym_block] = STATE(2991), + [sym__expression] = STATE(3317), + [sym_block] = STATE(3317), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2991), - [sym_nil] = STATE(2991), - [sym__atom] = STATE(2991), - [sym_quoted_atom] = STATE(2991), + [sym_boolean] = STATE(3317), + [sym_nil] = STATE(3317), + [sym__atom] = STATE(3317), + [sym_quoted_atom] = STATE(3317), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2991), - [sym_charlist] = STATE(2991), - [sym_sigil] = STATE(2991), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(2991), - [sym_tuple] = STATE(2991), - [sym_bitstring] = STATE(2991), - [sym_map] = STATE(2991), - [sym__nullary_operator] = STATE(2991), - [sym_unary_operator] = STATE(2991), - [sym_binary_operator] = STATE(2991), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3317), + [sym_charlist] = STATE(3317), + [sym_sigil] = STATE(3317), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(3317), + [sym_tuple] = STATE(3317), + [sym_bitstring] = STATE(3317), + [sym_map] = STATE(3317), + [sym__nullary_operator] = STATE(3317), + [sym_unary_operator] = STATE(3317), + [sym_binary_operator] = STATE(3317), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2991), - [sym_call] = STATE(2991), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3317), + [sym_call] = STATE(3317), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1673), - [sym__call_arguments_without_parentheses] = STATE(2133), - [sym_do_block] = STATE(2273), - [sym_access_call] = STATE(2991), - [sym_anonymous_function] = STATE(2991), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1596), + [sym__call_arguments_without_parentheses] = STATE(2083), + [sym_do_block] = STATE(2249), + [sym_access_call] = STATE(3317), + [sym_anonymous_function] = STATE(3317), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), @@ -40424,53 +40190,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [70] = { - [sym__expression] = STATE(1104), - [sym_block] = STATE(1104), + [sym__expression] = STATE(1114), + [sym_block] = STATE(1114), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1104), - [sym_nil] = STATE(1104), - [sym__atom] = STATE(1104), - [sym_quoted_atom] = STATE(1104), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1104), - [sym_charlist] = STATE(1104), - [sym_sigil] = STATE(1104), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1104), - [sym_tuple] = STATE(1104), - [sym_bitstring] = STATE(1104), - [sym_map] = STATE(1104), - [sym__nullary_operator] = STATE(1104), - [sym_unary_operator] = STATE(1104), - [sym_binary_operator] = STATE(1104), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1104), - [sym_call] = STATE(1104), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1114), + [sym_nil] = STATE(1114), + [sym__atom] = STATE(1114), + [sym_quoted_atom] = STATE(1114), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1114), + [sym_charlist] = STATE(1114), + [sym_sigil] = STATE(1114), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1114), + [sym_tuple] = STATE(1114), + [sym_bitstring] = STATE(1114), + [sym_map] = STATE(1114), + [sym__nullary_operator] = STATE(1114), + [sym_unary_operator] = STATE(1114), + [sym_binary_operator] = STATE(1114), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1114), + [sym_call] = STATE(1114), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1104), - [sym_stab_clause] = STATE(4754), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1104), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1114), + [sym_stab_clause] = STATE(4769), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1114), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -40557,50 +40323,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [71] = { - [sym__expression] = STATE(2541), - [sym_block] = STATE(2541), + [sym__expression] = STATE(2912), + [sym_block] = STATE(2912), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2541), - [sym_nil] = STATE(2541), - [sym__atom] = STATE(2541), - [sym_quoted_atom] = STATE(2541), + [sym_boolean] = STATE(2912), + [sym_nil] = STATE(2912), + [sym__atom] = STATE(2912), + [sym_quoted_atom] = STATE(2912), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2541), - [sym_charlist] = STATE(2541), - [sym_sigil] = STATE(2541), - [sym_keywords] = STATE(3360), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), - [sym_list] = STATE(2541), - [sym_tuple] = STATE(2541), - [sym_bitstring] = STATE(2541), - [sym_map] = STATE(2541), - [sym__nullary_operator] = STATE(2541), - [sym_unary_operator] = STATE(2541), - [sym_binary_operator] = STATE(2541), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2912), + [sym_charlist] = STATE(2912), + [sym_sigil] = STATE(2912), + [sym_keywords] = STATE(2978), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(2912), + [sym_tuple] = STATE(2912), + [sym_bitstring] = STATE(2912), + [sym_map] = STATE(2912), + [sym__nullary_operator] = STATE(2912), + [sym_unary_operator] = STATE(2912), + [sym_binary_operator] = STATE(2912), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2541), - [sym_call] = STATE(2541), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(2912), + [sym_call] = STATE(2912), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), [sym__call_arguments_with_parentheses_immediate] = STATE(2170), - [sym__call_arguments_without_parentheses] = STATE(2542), - [sym_do_block] = STATE(4124), - [sym_access_call] = STATE(2541), - [sym_anonymous_function] = STATE(2541), + [sym__call_arguments_without_parentheses] = STATE(2907), + [sym_do_block] = STATE(4098), + [sym_access_call] = STATE(2912), + [sym_anonymous_function] = STATE(2912), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(540), [anon_sym_RPAREN] = ACTIONS(285), @@ -40690,53 +40456,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [72] = { - [sym__expression] = STATE(1113), - [sym_block] = STATE(1113), + [sym__expression] = STATE(1110), + [sym_block] = STATE(1110), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1113), - [sym_nil] = STATE(1113), - [sym__atom] = STATE(1113), - [sym_quoted_atom] = STATE(1113), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1113), - [sym_charlist] = STATE(1113), - [sym_sigil] = STATE(1113), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1113), - [sym_tuple] = STATE(1113), - [sym_bitstring] = STATE(1113), - [sym_map] = STATE(1113), - [sym__nullary_operator] = STATE(1113), - [sym_unary_operator] = STATE(1113), - [sym_binary_operator] = STATE(1113), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1113), - [sym_call] = STATE(1113), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1110), + [sym_nil] = STATE(1110), + [sym__atom] = STATE(1110), + [sym_quoted_atom] = STATE(1110), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1110), + [sym_charlist] = STATE(1110), + [sym_sigil] = STATE(1110), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1110), + [sym_tuple] = STATE(1110), + [sym_bitstring] = STATE(1110), + [sym_map] = STATE(1110), + [sym__nullary_operator] = STATE(1110), + [sym_unary_operator] = STATE(1110), + [sym_binary_operator] = STATE(1110), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1110), + [sym_call] = STATE(1110), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1113), - [sym_stab_clause] = STATE(4781), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1113), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1110), + [sym_stab_clause] = STATE(4763), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1110), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [aux_sym_identifier_token1] = ACTIONS(65), @@ -40824,53 +40590,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [73] = { [sym__terminator] = STATE(117), - [sym__expression] = STATE(2013), - [sym_block] = STATE(2013), + [sym__expression] = STATE(1804), + [sym_block] = STATE(1804), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(2013), - [sym_nil] = STATE(2013), - [sym__atom] = STATE(2013), - [sym_quoted_atom] = STATE(2013), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2013), - [sym_charlist] = STATE(2013), - [sym_sigil] = STATE(2013), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(2013), - [sym_tuple] = STATE(2013), - [sym_bitstring] = STATE(2013), - [sym_map] = STATE(2013), - [sym__nullary_operator] = STATE(2013), - [sym_unary_operator] = STATE(2013), - [sym_binary_operator] = STATE(2013), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2013), - [sym_call] = STATE(2013), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1804), + [sym_nil] = STATE(1804), + [sym__atom] = STATE(1804), + [sym_quoted_atom] = STATE(1804), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1804), + [sym_charlist] = STATE(1804), + [sym_sigil] = STATE(1804), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1804), + [sym_tuple] = STATE(1804), + [sym_bitstring] = STATE(1804), + [sym_map] = STATE(1804), + [sym__nullary_operator] = STATE(1804), + [sym_unary_operator] = STATE(1804), + [sym_binary_operator] = STATE(1804), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1804), + [sym_call] = STATE(1804), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2013), - [sym_stab_clause] = STATE(5258), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(2013), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1804), + [sym_stab_clause] = STATE(5403), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1804), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(682), @@ -40963,17 +40729,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(1826), [sym__atom] = STATE(1826), [sym_quoted_atom] = STATE(1826), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), [sym_string] = STATE(1826), [sym_charlist] = STATE(1826), [sym_sigil] = STATE(1826), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), [sym_list] = STATE(1826), [sym_tuple] = STATE(1826), [sym_bitstring] = STATE(1826), @@ -40981,27 +40747,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__nullary_operator] = STATE(1826), [sym_unary_operator] = STATE(1826), [sym_binary_operator] = STATE(1826), - [sym_operator_identifier] = STATE(6882), + [sym_operator_identifier] = STATE(6886), [sym_dot] = STATE(1826), [sym_call] = STATE(1826), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), [sym_access_call] = STATE(1826), - [sym_stab_clause] = STATE(5923), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), + [sym_stab_clause] = STATE(5859), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), [sym_anonymous_function] = STATE(1826), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), @@ -41088,53 +40854,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [75] = { [sym__terminator] = STATE(116), - [sym__expression] = STATE(1579), - [sym_block] = STATE(1579), + [sym__expression] = STATE(1773), + [sym_block] = STATE(1773), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1579), - [sym_nil] = STATE(1579), - [sym__atom] = STATE(1579), - [sym_quoted_atom] = STATE(1579), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1579), - [sym_charlist] = STATE(1579), - [sym_sigil] = STATE(1579), - [sym_keywords] = STATE(6748), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1579), - [sym_tuple] = STATE(1579), - [sym_bitstring] = STATE(1579), - [sym_map] = STATE(1579), - [sym__nullary_operator] = STATE(1579), - [sym_unary_operator] = STATE(1579), - [sym_binary_operator] = STATE(1579), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1579), - [sym_call] = STATE(1579), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1773), + [sym_nil] = STATE(1773), + [sym__atom] = STATE(1773), + [sym_quoted_atom] = STATE(1773), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1773), + [sym_charlist] = STATE(1773), + [sym_sigil] = STATE(1773), + [sym_keywords] = STATE(6730), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1773), + [sym_tuple] = STATE(1773), + [sym_bitstring] = STATE(1773), + [sym_map] = STATE(1773), + [sym__nullary_operator] = STATE(1773), + [sym_unary_operator] = STATE(1773), + [sym_binary_operator] = STATE(1773), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1773), + [sym_call] = STATE(1773), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1579), - [sym_stab_clause] = STATE(5679), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1579), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1773), + [sym_stab_clause] = STATE(5203), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1773), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(708), @@ -41220,53 +40986,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [76] = { [sym__terminator] = STATE(121), - [sym__expression] = STATE(1907), - [sym_block] = STATE(1907), + [sym__expression] = STATE(1813), + [sym_block] = STATE(1813), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1907), - [sym_nil] = STATE(1907), - [sym__atom] = STATE(1907), - [sym_quoted_atom] = STATE(1907), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1907), - [sym_charlist] = STATE(1907), - [sym_sigil] = STATE(1907), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1907), - [sym_tuple] = STATE(1907), - [sym_bitstring] = STATE(1907), - [sym_map] = STATE(1907), - [sym__nullary_operator] = STATE(1907), - [sym_unary_operator] = STATE(1907), - [sym_binary_operator] = STATE(1907), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1907), - [sym_call] = STATE(1907), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1813), + [sym_nil] = STATE(1813), + [sym__atom] = STATE(1813), + [sym_quoted_atom] = STATE(1813), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1813), + [sym_charlist] = STATE(1813), + [sym_sigil] = STATE(1813), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1813), + [sym_tuple] = STATE(1813), + [sym_bitstring] = STATE(1813), + [sym_map] = STATE(1813), + [sym__nullary_operator] = STATE(1813), + [sym_unary_operator] = STATE(1813), + [sym_binary_operator] = STATE(1813), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1813), + [sym_call] = STATE(1813), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1907), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1813), [sym_stab_clause] = STATE(5659), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1907), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1813), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(714), @@ -41352,53 +41118,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [77] = { [sym__terminator] = STATE(113), - [sym__expression] = STATE(1931), - [sym_block] = STATE(1931), + [sym__expression] = STATE(1823), + [sym_block] = STATE(1823), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1931), - [sym_nil] = STATE(1931), - [sym__atom] = STATE(1931), - [sym_quoted_atom] = STATE(1931), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1931), - [sym_charlist] = STATE(1931), - [sym_sigil] = STATE(1931), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1931), - [sym_tuple] = STATE(1931), - [sym_bitstring] = STATE(1931), - [sym_map] = STATE(1931), - [sym__nullary_operator] = STATE(1931), - [sym_unary_operator] = STATE(1931), - [sym_binary_operator] = STATE(1931), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1931), - [sym_call] = STATE(1931), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1823), + [sym_nil] = STATE(1823), + [sym__atom] = STATE(1823), + [sym_quoted_atom] = STATE(1823), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1823), + [sym_charlist] = STATE(1823), + [sym_sigil] = STATE(1823), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1823), + [sym_tuple] = STATE(1823), + [sym_bitstring] = STATE(1823), + [sym_map] = STATE(1823), + [sym__nullary_operator] = STATE(1823), + [sym_unary_operator] = STATE(1823), + [sym_binary_operator] = STATE(1823), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1823), + [sym_call] = STATE(1823), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1931), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1823), [sym_stab_clause] = STATE(5942), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1931), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1823), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(720), @@ -41483,54 +41249,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [78] = { - [sym__terminator] = STATE(118), - [sym__expression] = STATE(1890), - [sym_block] = STATE(1890), + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1829), + [sym_block] = STATE(1829), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1890), - [sym_nil] = STATE(1890), - [sym__atom] = STATE(1890), - [sym_quoted_atom] = STATE(1890), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1890), - [sym_charlist] = STATE(1890), - [sym_sigil] = STATE(1890), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1890), - [sym_tuple] = STATE(1890), - [sym_bitstring] = STATE(1890), - [sym_map] = STATE(1890), - [sym__nullary_operator] = STATE(1890), - [sym_unary_operator] = STATE(1890), - [sym_binary_operator] = STATE(1890), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1890), - [sym_call] = STATE(1890), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1829), + [sym_nil] = STATE(1829), + [sym__atom] = STATE(1829), + [sym_quoted_atom] = STATE(1829), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1829), + [sym_charlist] = STATE(1829), + [sym_sigil] = STATE(1829), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1829), + [sym_tuple] = STATE(1829), + [sym_bitstring] = STATE(1829), + [sym_map] = STATE(1829), + [sym__nullary_operator] = STATE(1829), + [sym_unary_operator] = STATE(1829), + [sym_binary_operator] = STATE(1829), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1829), + [sym_call] = STATE(1829), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1890), - [sym_stab_clause] = STATE(5321), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1890), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1829), + [sym_stab_clause] = STATE(5788), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1829), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(726), @@ -41616,53 +41382,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [79] = { [sym__terminator] = STATE(121), - [sym__expression] = STATE(1862), - [sym_block] = STATE(1862), + [sym__expression] = STATE(1816), + [sym_block] = STATE(1816), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1862), - [sym_nil] = STATE(1862), - [sym__atom] = STATE(1862), - [sym_quoted_atom] = STATE(1862), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1862), - [sym_charlist] = STATE(1862), - [sym_sigil] = STATE(1862), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1862), - [sym_tuple] = STATE(1862), - [sym_bitstring] = STATE(1862), - [sym_map] = STATE(1862), - [sym__nullary_operator] = STATE(1862), - [sym_unary_operator] = STATE(1862), - [sym_binary_operator] = STATE(1862), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1862), - [sym_call] = STATE(1862), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1816), + [sym_nil] = STATE(1816), + [sym__atom] = STATE(1816), + [sym_quoted_atom] = STATE(1816), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1816), + [sym_charlist] = STATE(1816), + [sym_sigil] = STATE(1816), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1816), + [sym_tuple] = STATE(1816), + [sym_bitstring] = STATE(1816), + [sym_map] = STATE(1816), + [sym__nullary_operator] = STATE(1816), + [sym_unary_operator] = STATE(1816), + [sym_binary_operator] = STATE(1816), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1816), + [sym_call] = STATE(1816), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1862), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1816), [sym_stab_clause] = STATE(5659), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1862), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1816), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(714), @@ -41747,54 +41513,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [80] = { - [sym__terminator] = STATE(115), - [sym__expression] = STATE(1872), - [sym_block] = STATE(1872), + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1797), + [sym_block] = STATE(1797), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1872), - [sym_nil] = STATE(1872), - [sym__atom] = STATE(1872), - [sym_quoted_atom] = STATE(1872), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1872), - [sym_charlist] = STATE(1872), - [sym_sigil] = STATE(1872), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1872), - [sym_tuple] = STATE(1872), - [sym_bitstring] = STATE(1872), - [sym_map] = STATE(1872), - [sym__nullary_operator] = STATE(1872), - [sym_unary_operator] = STATE(1872), - [sym_binary_operator] = STATE(1872), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1872), - [sym_call] = STATE(1872), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1797), + [sym_nil] = STATE(1797), + [sym__atom] = STATE(1797), + [sym_quoted_atom] = STATE(1797), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1797), + [sym_charlist] = STATE(1797), + [sym_sigil] = STATE(1797), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1797), + [sym_tuple] = STATE(1797), + [sym_bitstring] = STATE(1797), + [sym_map] = STATE(1797), + [sym__nullary_operator] = STATE(1797), + [sym_unary_operator] = STATE(1797), + [sym_binary_operator] = STATE(1797), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1797), + [sym_call] = STATE(1797), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1872), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1797), [sym_stab_clause] = STATE(5219), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1872), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1797), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(734), @@ -41879,50 +41645,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [81] = { - [sym__expression] = STATE(2991), - [sym_block] = STATE(2991), + [sym__expression] = STATE(3317), + [sym_block] = STATE(3317), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2991), - [sym_nil] = STATE(2991), - [sym__atom] = STATE(2991), - [sym_quoted_atom] = STATE(2991), + [sym_boolean] = STATE(3317), + [sym_nil] = STATE(3317), + [sym__atom] = STATE(3317), + [sym_quoted_atom] = STATE(3317), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2991), - [sym_charlist] = STATE(2991), - [sym_sigil] = STATE(2991), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(2991), - [sym_tuple] = STATE(2991), - [sym_bitstring] = STATE(2991), - [sym_map] = STATE(2991), - [sym__nullary_operator] = STATE(2991), - [sym_unary_operator] = STATE(2991), - [sym_binary_operator] = STATE(2991), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3317), + [sym_charlist] = STATE(3317), + [sym_sigil] = STATE(3317), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(3317), + [sym_tuple] = STATE(3317), + [sym_bitstring] = STATE(3317), + [sym_map] = STATE(3317), + [sym__nullary_operator] = STATE(3317), + [sym_unary_operator] = STATE(3317), + [sym_binary_operator] = STATE(3317), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2991), - [sym_call] = STATE(2991), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3317), + [sym_call] = STATE(3317), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1583), - [sym__call_arguments_without_parentheses] = STATE(1829), - [sym_do_block] = STATE(3481), - [sym_access_call] = STATE(2991), - [sym_anonymous_function] = STATE(2991), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1573), + [sym__call_arguments_without_parentheses] = STATE(1861), + [sym_do_block] = STATE(3241), + [sym_access_call] = STATE(3317), + [sym_anonymous_function] = STATE(3317), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), @@ -42012,53 +41778,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [82] = { [sym__terminator] = STATE(123), - [sym__expression] = STATE(1874), - [sym_block] = STATE(1874), + [sym__expression] = STATE(1810), + [sym_block] = STATE(1810), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1874), - [sym_nil] = STATE(1874), - [sym__atom] = STATE(1874), - [sym_quoted_atom] = STATE(1874), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1874), - [sym_charlist] = STATE(1874), - [sym_sigil] = STATE(1874), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1874), - [sym_tuple] = STATE(1874), - [sym_bitstring] = STATE(1874), - [sym_map] = STATE(1874), - [sym__nullary_operator] = STATE(1874), - [sym_unary_operator] = STATE(1874), - [sym_binary_operator] = STATE(1874), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1874), - [sym_call] = STATE(1874), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1810), + [sym_nil] = STATE(1810), + [sym__atom] = STATE(1810), + [sym_quoted_atom] = STATE(1810), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1810), + [sym_charlist] = STATE(1810), + [sym_sigil] = STATE(1810), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1810), + [sym_tuple] = STATE(1810), + [sym_bitstring] = STATE(1810), + [sym_map] = STATE(1810), + [sym__nullary_operator] = STATE(1810), + [sym_unary_operator] = STATE(1810), + [sym_binary_operator] = STATE(1810), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1810), + [sym_call] = STATE(1810), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1874), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1810), [sym_stab_clause] = STATE(5515), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1874), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1810), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(740), @@ -42143,54 +41909,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [83] = { - [sym__terminator] = STATE(120), - [sym__expression] = STATE(1919), - [sym_block] = STATE(1919), + [sym__terminator] = STATE(118), + [sym__expression] = STATE(1820), + [sym_block] = STATE(1820), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1919), - [sym_nil] = STATE(1919), - [sym__atom] = STATE(1919), - [sym_quoted_atom] = STATE(1919), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1919), - [sym_charlist] = STATE(1919), - [sym_sigil] = STATE(1919), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1919), - [sym_tuple] = STATE(1919), - [sym_bitstring] = STATE(1919), - [sym_map] = STATE(1919), - [sym__nullary_operator] = STATE(1919), - [sym_unary_operator] = STATE(1919), - [sym_binary_operator] = STATE(1919), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1919), - [sym_call] = STATE(1919), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1820), + [sym_nil] = STATE(1820), + [sym__atom] = STATE(1820), + [sym_quoted_atom] = STATE(1820), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1820), + [sym_charlist] = STATE(1820), + [sym_sigil] = STATE(1820), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1820), + [sym_tuple] = STATE(1820), + [sym_bitstring] = STATE(1820), + [sym_map] = STATE(1820), + [sym__nullary_operator] = STATE(1820), + [sym_unary_operator] = STATE(1820), + [sym_binary_operator] = STATE(1820), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1820), + [sym_call] = STATE(1820), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1919), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1820), [sym_stab_clause] = STATE(5803), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1919), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1820), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(746), @@ -42276,53 +42042,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [84] = { [sym__terminator] = STATE(113), - [sym__expression] = STATE(1873), - [sym_block] = STATE(1873), + [sym__expression] = STATE(1825), + [sym_block] = STATE(1825), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1873), - [sym_nil] = STATE(1873), - [sym__atom] = STATE(1873), - [sym_quoted_atom] = STATE(1873), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1873), - [sym_charlist] = STATE(1873), - [sym_sigil] = STATE(1873), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1873), - [sym_tuple] = STATE(1873), - [sym_bitstring] = STATE(1873), - [sym_map] = STATE(1873), - [sym__nullary_operator] = STATE(1873), - [sym_unary_operator] = STATE(1873), - [sym_binary_operator] = STATE(1873), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1873), - [sym_call] = STATE(1873), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1825), + [sym_nil] = STATE(1825), + [sym__atom] = STATE(1825), + [sym_quoted_atom] = STATE(1825), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1825), + [sym_charlist] = STATE(1825), + [sym_sigil] = STATE(1825), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1825), + [sym_tuple] = STATE(1825), + [sym_bitstring] = STATE(1825), + [sym_map] = STATE(1825), + [sym__nullary_operator] = STATE(1825), + [sym_unary_operator] = STATE(1825), + [sym_binary_operator] = STATE(1825), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1825), + [sym_call] = STATE(1825), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1873), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1825), [sym_stab_clause] = STATE(5942), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1873), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1825), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(720), @@ -42407,54 +42173,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [85] = { - [sym__terminator] = STATE(118), - [sym__expression] = STATE(1920), - [sym_block] = STATE(1920), + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1814), + [sym_block] = STATE(1814), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1920), - [sym_nil] = STATE(1920), - [sym__atom] = STATE(1920), - [sym_quoted_atom] = STATE(1920), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1920), - [sym_charlist] = STATE(1920), - [sym_sigil] = STATE(1920), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1920), - [sym_tuple] = STATE(1920), - [sym_bitstring] = STATE(1920), - [sym_map] = STATE(1920), - [sym__nullary_operator] = STATE(1920), - [sym_unary_operator] = STATE(1920), - [sym_binary_operator] = STATE(1920), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1920), - [sym_call] = STATE(1920), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1814), + [sym_nil] = STATE(1814), + [sym__atom] = STATE(1814), + [sym_quoted_atom] = STATE(1814), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1814), + [sym_charlist] = STATE(1814), + [sym_sigil] = STATE(1814), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1814), + [sym_tuple] = STATE(1814), + [sym_bitstring] = STATE(1814), + [sym_map] = STATE(1814), + [sym__nullary_operator] = STATE(1814), + [sym_unary_operator] = STATE(1814), + [sym_binary_operator] = STATE(1814), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1814), + [sym_call] = STATE(1814), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1920), - [sym_stab_clause] = STATE(5321), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1920), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1814), + [sym_stab_clause] = STATE(5788), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1814), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(726), @@ -42539,54 +42305,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [86] = { - [sym__terminator] = STATE(114), - [sym__expression] = STATE(1843), - [sym_block] = STATE(1843), + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1800), + [sym_block] = STATE(1800), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1843), - [sym_nil] = STATE(1843), - [sym__atom] = STATE(1843), - [sym_quoted_atom] = STATE(1843), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1843), - [sym_charlist] = STATE(1843), - [sym_sigil] = STATE(1843), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1843), - [sym_tuple] = STATE(1843), - [sym_bitstring] = STATE(1843), - [sym_map] = STATE(1843), - [sym__nullary_operator] = STATE(1843), - [sym_unary_operator] = STATE(1843), - [sym_binary_operator] = STATE(1843), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1843), - [sym_call] = STATE(1843), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1800), + [sym_nil] = STATE(1800), + [sym__atom] = STATE(1800), + [sym_quoted_atom] = STATE(1800), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1800), + [sym_charlist] = STATE(1800), + [sym_sigil] = STATE(1800), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1800), + [sym_tuple] = STATE(1800), + [sym_bitstring] = STATE(1800), + [sym_map] = STATE(1800), + [sym__nullary_operator] = STATE(1800), + [sym_unary_operator] = STATE(1800), + [sym_binary_operator] = STATE(1800), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1800), + [sym_call] = STATE(1800), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1843), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1800), [sym_stab_clause] = STATE(5371), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1843), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1800), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(756), @@ -42671,54 +42437,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [87] = { - [sym__terminator] = STATE(115), - [sym__expression] = STATE(1821), - [sym_block] = STATE(1821), + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1802), + [sym_block] = STATE(1802), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1821), - [sym_nil] = STATE(1821), - [sym__atom] = STATE(1821), - [sym_quoted_atom] = STATE(1821), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1821), - [sym_charlist] = STATE(1821), - [sym_sigil] = STATE(1821), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1821), - [sym_tuple] = STATE(1821), - [sym_bitstring] = STATE(1821), - [sym_map] = STATE(1821), - [sym__nullary_operator] = STATE(1821), - [sym_unary_operator] = STATE(1821), - [sym_binary_operator] = STATE(1821), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1821), - [sym_call] = STATE(1821), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1802), + [sym_nil] = STATE(1802), + [sym__atom] = STATE(1802), + [sym_quoted_atom] = STATE(1802), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1802), + [sym_charlist] = STATE(1802), + [sym_sigil] = STATE(1802), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1802), + [sym_tuple] = STATE(1802), + [sym_bitstring] = STATE(1802), + [sym_map] = STATE(1802), + [sym__nullary_operator] = STATE(1802), + [sym_unary_operator] = STATE(1802), + [sym_binary_operator] = STATE(1802), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1802), + [sym_call] = STATE(1802), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1821), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1802), [sym_stab_clause] = STATE(5219), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1821), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1802), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(734), @@ -42804,53 +42570,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [88] = { [sym__terminator] = STATE(117), - [sym__expression] = STATE(1855), - [sym_block] = STATE(1855), + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1855), - [sym_nil] = STATE(1855), - [sym__atom] = STATE(1855), - [sym_quoted_atom] = STATE(1855), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1855), - [sym_charlist] = STATE(1855), - [sym_sigil] = STATE(1855), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1855), - [sym_tuple] = STATE(1855), - [sym_bitstring] = STATE(1855), - [sym_map] = STATE(1855), - [sym__nullary_operator] = STATE(1855), - [sym_unary_operator] = STATE(1855), - [sym_binary_operator] = STATE(1855), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1855), - [sym_call] = STATE(1855), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym__atom] = STATE(1806), + [sym_quoted_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym__nullary_operator] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1855), - [sym_stab_clause] = STATE(5258), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1855), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1806), + [sym_stab_clause] = STATE(5403), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1806), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(682), @@ -42936,53 +42702,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [89] = { [sym__terminator] = STATE(123), - [sym__expression] = STATE(2019), - [sym_block] = STATE(2019), + [sym__expression] = STATE(1812), + [sym_block] = STATE(1812), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(2019), - [sym_nil] = STATE(2019), - [sym__atom] = STATE(2019), - [sym_quoted_atom] = STATE(2019), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2019), - [sym_charlist] = STATE(2019), - [sym_sigil] = STATE(2019), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(2019), - [sym_tuple] = STATE(2019), - [sym_bitstring] = STATE(2019), - [sym_map] = STATE(2019), - [sym__nullary_operator] = STATE(2019), - [sym_unary_operator] = STATE(2019), - [sym_binary_operator] = STATE(2019), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2019), - [sym_call] = STATE(2019), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1812), + [sym_nil] = STATE(1812), + [sym__atom] = STATE(1812), + [sym_quoted_atom] = STATE(1812), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1812), + [sym_charlist] = STATE(1812), + [sym_sigil] = STATE(1812), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1812), + [sym_tuple] = STATE(1812), + [sym_bitstring] = STATE(1812), + [sym_map] = STATE(1812), + [sym__nullary_operator] = STATE(1812), + [sym_unary_operator] = STATE(1812), + [sym_binary_operator] = STATE(1812), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1812), + [sym_call] = STATE(1812), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2019), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1812), [sym_stab_clause] = STATE(5515), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(2019), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1812), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(740), @@ -43068,53 +42834,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [90] = { [sym__terminator] = STATE(119), - [sym__expression] = STATE(1865), - [sym_block] = STATE(1865), + [sym__expression] = STATE(1799), + [sym_block] = STATE(1799), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1865), - [sym_nil] = STATE(1865), - [sym__atom] = STATE(1865), - [sym_quoted_atom] = STATE(1865), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1865), - [sym_charlist] = STATE(1865), - [sym_sigil] = STATE(1865), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1865), - [sym_tuple] = STATE(1865), - [sym_bitstring] = STATE(1865), - [sym_map] = STATE(1865), - [sym__nullary_operator] = STATE(1865), - [sym_unary_operator] = STATE(1865), - [sym_binary_operator] = STATE(1865), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1865), - [sym_call] = STATE(1865), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1799), + [sym_nil] = STATE(1799), + [sym__atom] = STATE(1799), + [sym_quoted_atom] = STATE(1799), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1799), + [sym_charlist] = STATE(1799), + [sym_sigil] = STATE(1799), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1799), + [sym_tuple] = STATE(1799), + [sym_bitstring] = STATE(1799), + [sym_map] = STATE(1799), + [sym__nullary_operator] = STATE(1799), + [sym_unary_operator] = STATE(1799), + [sym_binary_operator] = STATE(1799), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1799), + [sym_call] = STATE(1799), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1865), - [sym_stab_clause] = STATE(5080), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1865), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1799), + [sym_stab_clause] = STATE(5073), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1799), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(768), @@ -43200,53 +42966,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [91] = { [sym__terminator] = STATE(119), - [sym__expression] = STATE(1938), - [sym_block] = STATE(1938), + [sym__expression] = STATE(1818), + [sym_block] = STATE(1818), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1938), - [sym_nil] = STATE(1938), - [sym__atom] = STATE(1938), - [sym_quoted_atom] = STATE(1938), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1938), - [sym_charlist] = STATE(1938), - [sym_sigil] = STATE(1938), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1938), - [sym_tuple] = STATE(1938), - [sym_bitstring] = STATE(1938), - [sym_map] = STATE(1938), - [sym__nullary_operator] = STATE(1938), - [sym_unary_operator] = STATE(1938), - [sym_binary_operator] = STATE(1938), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1938), - [sym_call] = STATE(1938), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1818), + [sym_nil] = STATE(1818), + [sym__atom] = STATE(1818), + [sym_quoted_atom] = STATE(1818), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1818), + [sym_charlist] = STATE(1818), + [sym_sigil] = STATE(1818), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1818), + [sym_tuple] = STATE(1818), + [sym_bitstring] = STATE(1818), + [sym_map] = STATE(1818), + [sym__nullary_operator] = STATE(1818), + [sym_unary_operator] = STATE(1818), + [sym_binary_operator] = STATE(1818), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1818), + [sym_call] = STATE(1818), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1938), - [sym_stab_clause] = STATE(5080), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1938), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1818), + [sym_stab_clause] = STATE(5073), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1818), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(768), @@ -43332,53 +43098,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [92] = { [sym__terminator] = STATE(116), - [sym__expression] = STATE(1837), - [sym_block] = STATE(1837), + [sym__expression] = STATE(1831), + [sym_block] = STATE(1831), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1837), - [sym_nil] = STATE(1837), - [sym__atom] = STATE(1837), - [sym_quoted_atom] = STATE(1837), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1837), - [sym_charlist] = STATE(1837), - [sym_sigil] = STATE(1837), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1837), - [sym_tuple] = STATE(1837), - [sym_bitstring] = STATE(1837), - [sym_map] = STATE(1837), - [sym__nullary_operator] = STATE(1837), - [sym_unary_operator] = STATE(1837), - [sym_binary_operator] = STATE(1837), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1837), - [sym_call] = STATE(1837), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1831), + [sym_nil] = STATE(1831), + [sym__atom] = STATE(1831), + [sym_quoted_atom] = STATE(1831), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1831), + [sym_charlist] = STATE(1831), + [sym_sigil] = STATE(1831), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1831), + [sym_tuple] = STATE(1831), + [sym_bitstring] = STATE(1831), + [sym_map] = STATE(1831), + [sym__nullary_operator] = STATE(1831), + [sym_unary_operator] = STATE(1831), + [sym_binary_operator] = STATE(1831), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1831), + [sym_call] = STATE(1831), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1837), - [sym_stab_clause] = STATE(5679), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1837), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1831), + [sym_stab_clause] = STATE(5203), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1831), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(708), @@ -43464,53 +43230,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [93] = { [sym__terminator] = STATE(124), - [sym__expression] = STATE(1922), - [sym_block] = STATE(1922), + [sym__expression] = STATE(1827), + [sym_block] = STATE(1827), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1922), - [sym_nil] = STATE(1922), - [sym__atom] = STATE(1922), - [sym_quoted_atom] = STATE(1922), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1922), - [sym_charlist] = STATE(1922), - [sym_sigil] = STATE(1922), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1922), - [sym_tuple] = STATE(1922), - [sym_bitstring] = STATE(1922), - [sym_map] = STATE(1922), - [sym__nullary_operator] = STATE(1922), - [sym_unary_operator] = STATE(1922), - [sym_binary_operator] = STATE(1922), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1922), - [sym_call] = STATE(1922), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1827), + [sym_nil] = STATE(1827), + [sym__atom] = STATE(1827), + [sym_quoted_atom] = STATE(1827), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1827), + [sym_charlist] = STATE(1827), + [sym_sigil] = STATE(1827), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1827), + [sym_tuple] = STATE(1827), + [sym_bitstring] = STATE(1827), + [sym_map] = STATE(1827), + [sym__nullary_operator] = STATE(1827), + [sym_unary_operator] = STATE(1827), + [sym_binary_operator] = STATE(1827), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1827), + [sym_call] = STATE(1827), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1922), - [sym_stab_clause] = STATE(5570), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1922), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1827), + [sym_stab_clause] = STATE(5425), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1827), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(780), @@ -43596,53 +43362,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [94] = { [sym__terminator] = STATE(116), - [sym__expression] = STATE(1857), - [sym_block] = STATE(1857), + [sym__expression] = STATE(1808), + [sym_block] = STATE(1808), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1857), - [sym_nil] = STATE(1857), - [sym__atom] = STATE(1857), - [sym_quoted_atom] = STATE(1857), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1857), - [sym_charlist] = STATE(1857), - [sym_sigil] = STATE(1857), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1857), - [sym_tuple] = STATE(1857), - [sym_bitstring] = STATE(1857), - [sym_map] = STATE(1857), - [sym__nullary_operator] = STATE(1857), - [sym_unary_operator] = STATE(1857), - [sym_binary_operator] = STATE(1857), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1857), - [sym_call] = STATE(1857), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1808), + [sym_nil] = STATE(1808), + [sym__atom] = STATE(1808), + [sym_quoted_atom] = STATE(1808), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1808), + [sym_charlist] = STATE(1808), + [sym_sigil] = STATE(1808), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1808), + [sym_tuple] = STATE(1808), + [sym_bitstring] = STATE(1808), + [sym_map] = STATE(1808), + [sym__nullary_operator] = STATE(1808), + [sym_unary_operator] = STATE(1808), + [sym_binary_operator] = STATE(1808), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1808), + [sym_call] = STATE(1808), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1857), - [sym_stab_clause] = STATE(5679), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1857), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1808), + [sym_stab_clause] = STATE(5203), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1808), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(708), @@ -43728,53 +43494,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [95] = { [sym__terminator] = STATE(117), - [sym__expression] = STATE(1589), - [sym_block] = STATE(1589), + [sym__expression] = STATE(1719), + [sym_block] = STATE(1719), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1589), - [sym_nil] = STATE(1589), - [sym__atom] = STATE(1589), - [sym_quoted_atom] = STATE(1589), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1589), - [sym_charlist] = STATE(1589), - [sym_sigil] = STATE(1589), - [sym_keywords] = STATE(6748), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1589), - [sym_tuple] = STATE(1589), - [sym_bitstring] = STATE(1589), - [sym_map] = STATE(1589), - [sym__nullary_operator] = STATE(1589), - [sym_unary_operator] = STATE(1589), - [sym_binary_operator] = STATE(1589), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1589), - [sym_call] = STATE(1589), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1719), + [sym_nil] = STATE(1719), + [sym__atom] = STATE(1719), + [sym_quoted_atom] = STATE(1719), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1719), + [sym_charlist] = STATE(1719), + [sym_sigil] = STATE(1719), + [sym_keywords] = STATE(6730), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1719), + [sym_tuple] = STATE(1719), + [sym_bitstring] = STATE(1719), + [sym_map] = STATE(1719), + [sym__nullary_operator] = STATE(1719), + [sym_unary_operator] = STATE(1719), + [sym_binary_operator] = STATE(1719), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1719), + [sym_call] = STATE(1719), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1589), - [sym_stab_clause] = STATE(5258), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1589), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1719), + [sym_stab_clause] = STATE(5403), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1719), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(682), @@ -43860,53 +43626,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [96] = { [sym__terminator] = STATE(124), - [sym__expression] = STATE(1877), - [sym_block] = STATE(1877), + [sym__expression] = STATE(1833), + [sym_block] = STATE(1833), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1877), - [sym_nil] = STATE(1877), - [sym__atom] = STATE(1877), - [sym_quoted_atom] = STATE(1877), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1877), - [sym_charlist] = STATE(1877), - [sym_sigil] = STATE(1877), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1877), - [sym_tuple] = STATE(1877), - [sym_bitstring] = STATE(1877), - [sym_map] = STATE(1877), - [sym__nullary_operator] = STATE(1877), - [sym_unary_operator] = STATE(1877), - [sym_binary_operator] = STATE(1877), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1877), - [sym_call] = STATE(1877), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1833), + [sym_nil] = STATE(1833), + [sym__atom] = STATE(1833), + [sym_quoted_atom] = STATE(1833), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1833), + [sym_charlist] = STATE(1833), + [sym_sigil] = STATE(1833), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1833), + [sym_tuple] = STATE(1833), + [sym_bitstring] = STATE(1833), + [sym_map] = STATE(1833), + [sym__nullary_operator] = STATE(1833), + [sym_unary_operator] = STATE(1833), + [sym_binary_operator] = STATE(1833), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1833), + [sym_call] = STATE(1833), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1877), - [sym_stab_clause] = STATE(5570), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1877), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1833), + [sym_stab_clause] = STATE(5425), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1833), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(780), @@ -43991,54 +43757,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [97] = { - [sym__terminator] = STATE(114), - [sym__expression] = STATE(1868), - [sym_block] = STATE(1868), + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1809), + [sym_block] = STATE(1809), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1868), - [sym_nil] = STATE(1868), - [sym__atom] = STATE(1868), - [sym_quoted_atom] = STATE(1868), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1868), - [sym_charlist] = STATE(1868), - [sym_sigil] = STATE(1868), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1868), - [sym_tuple] = STATE(1868), - [sym_bitstring] = STATE(1868), - [sym_map] = STATE(1868), - [sym__nullary_operator] = STATE(1868), - [sym_unary_operator] = STATE(1868), - [sym_binary_operator] = STATE(1868), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1868), - [sym_call] = STATE(1868), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1809), + [sym_nil] = STATE(1809), + [sym__atom] = STATE(1809), + [sym_quoted_atom] = STATE(1809), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1809), + [sym_charlist] = STATE(1809), + [sym_sigil] = STATE(1809), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1809), + [sym_tuple] = STATE(1809), + [sym_bitstring] = STATE(1809), + [sym_map] = STATE(1809), + [sym__nullary_operator] = STATE(1809), + [sym_unary_operator] = STATE(1809), + [sym_binary_operator] = STATE(1809), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1809), + [sym_call] = STATE(1809), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1868), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1809), [sym_stab_clause] = STATE(5371), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1868), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1809), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(756), @@ -44123,54 +43889,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [98] = { - [sym__terminator] = STATE(120), - [sym__expression] = STATE(1803), - [sym_block] = STATE(1803), + [sym__terminator] = STATE(118), + [sym__expression] = STATE(1822), + [sym_block] = STATE(1822), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1803), - [sym_nil] = STATE(1803), - [sym__atom] = STATE(1803), - [sym_quoted_atom] = STATE(1803), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1803), - [sym_charlist] = STATE(1803), - [sym_sigil] = STATE(1803), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1803), - [sym_tuple] = STATE(1803), - [sym_bitstring] = STATE(1803), - [sym_map] = STATE(1803), - [sym__nullary_operator] = STATE(1803), - [sym_unary_operator] = STATE(1803), - [sym_binary_operator] = STATE(1803), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1803), - [sym_call] = STATE(1803), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1822), + [sym_nil] = STATE(1822), + [sym__atom] = STATE(1822), + [sym_quoted_atom] = STATE(1822), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1822), + [sym_charlist] = STATE(1822), + [sym_sigil] = STATE(1822), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1822), + [sym_tuple] = STATE(1822), + [sym_bitstring] = STATE(1822), + [sym_map] = STATE(1822), + [sym__nullary_operator] = STATE(1822), + [sym_unary_operator] = STATE(1822), + [sym_binary_operator] = STATE(1822), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1822), + [sym_call] = STATE(1822), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1803), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1822), [sym_stab_clause] = STATE(5803), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1803), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1822), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(746), @@ -44256,53 +44022,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [99] = { [sym__terminator] = STATE(122), - [sym__expression] = STATE(1871), - [sym_block] = STATE(1871), + [sym__expression] = STATE(1819), + [sym_block] = STATE(1819), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1871), - [sym_nil] = STATE(1871), - [sym__atom] = STATE(1871), - [sym_quoted_atom] = STATE(1871), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1871), - [sym_charlist] = STATE(1871), - [sym_sigil] = STATE(1871), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1871), - [sym_tuple] = STATE(1871), - [sym_bitstring] = STATE(1871), - [sym_map] = STATE(1871), - [sym__nullary_operator] = STATE(1871), - [sym_unary_operator] = STATE(1871), - [sym_binary_operator] = STATE(1871), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1871), - [sym_call] = STATE(1871), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1819), + [sym_nil] = STATE(1819), + [sym__atom] = STATE(1819), + [sym_quoted_atom] = STATE(1819), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1819), + [sym_charlist] = STATE(1819), + [sym_sigil] = STATE(1819), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1819), + [sym_tuple] = STATE(1819), + [sym_bitstring] = STATE(1819), + [sym_map] = STATE(1819), + [sym__nullary_operator] = STATE(1819), + [sym_unary_operator] = STATE(1819), + [sym_binary_operator] = STATE(1819), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1819), + [sym_call] = STATE(1819), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1871), - [sym_stab_clause] = STATE(5923), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1871), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1819), + [sym_stab_clause] = STATE(5859), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1819), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(702), @@ -44388,53 +44154,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [100] = { [sym__terminator] = STATE(137), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5387), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(800), @@ -44519,53 +44285,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [101] = { [sym__terminator] = STATE(133), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5531), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(846), @@ -44650,53 +44416,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [102] = { [sym__terminator] = STATE(138), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5096), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5089), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(848), @@ -44781,53 +44547,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [103] = { [sym__terminator] = STATE(139), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5675), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(850), @@ -44912,53 +44678,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [104] = { [sym__terminator] = STATE(136), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5761), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5318), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(852), @@ -45042,54 +44808,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [105] = { - [sym__terminator] = STATE(134), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__terminator] = STATE(127), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5925), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5919), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(854), @@ -45174,53 +44940,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [106] = { [sym__terminator] = STATE(125), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5513), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5113), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(856), @@ -45305,53 +45071,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [107] = { [sym__terminator] = STATE(128), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5415), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5370), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(858), @@ -45436,53 +45202,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [108] = { [sym__terminator] = STATE(130), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5644), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(860), @@ -45567,53 +45333,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [109] = { [sym__terminator] = STATE(135), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5818), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(862), @@ -45697,50 +45463,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [110] = { - [sym__expression] = STATE(2267), - [sym_block] = STATE(2267), + [sym__expression] = STATE(2181), + [sym_block] = STATE(2181), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2267), - [sym_nil] = STATE(2267), - [sym__atom] = STATE(2267), - [sym_quoted_atom] = STATE(2267), + [sym_boolean] = STATE(2181), + [sym_nil] = STATE(2181), + [sym__atom] = STATE(2181), + [sym_quoted_atom] = STATE(2181), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2267), - [sym_charlist] = STATE(2267), - [sym_sigil] = STATE(2267), - [sym_keywords] = STATE(2351), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2267), - [sym_tuple] = STATE(2267), - [sym_bitstring] = STATE(2267), - [sym_map] = STATE(2267), - [sym__nullary_operator] = STATE(2267), - [sym_unary_operator] = STATE(2267), - [sym_binary_operator] = STATE(2267), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2181), + [sym_charlist] = STATE(2181), + [sym_sigil] = STATE(2181), + [sym_keywords] = STATE(2180), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2181), + [sym_tuple] = STATE(2181), + [sym_bitstring] = STATE(2181), + [sym_map] = STATE(2181), + [sym__nullary_operator] = STATE(2181), + [sym_unary_operator] = STATE(2181), + [sym_binary_operator] = STATE(2181), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2267), - [sym_call] = STATE(2267), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2181), + [sym_call] = STATE(2181), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym__call_arguments_with_parentheses_immediate] = STATE(1583), - [sym__call_arguments_without_parentheses] = STATE(1829), - [sym_do_block] = STATE(3481), - [sym_access_call] = STATE(2267), - [sym_anonymous_function] = STATE(2267), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym__call_arguments_with_parentheses_immediate] = STATE(1573), + [sym__call_arguments_without_parentheses] = STATE(1861), + [sym_do_block] = STATE(3241), + [sym_access_call] = STATE(2181), + [sym_anonymous_function] = STATE(2181), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), @@ -45829,53 +45595,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [111] = { [sym__terminator] = STATE(131), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5339), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5719), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(866), @@ -45960,53 +45726,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [112] = { [sym__terminator] = STATE(126), - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5235), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_repeat1] = STATE(1026), [aux_sym__terminator_token1] = ACTIONS(680), [anon_sym_SEMI] = ACTIONS(868), @@ -46090,53 +45856,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [113] = { - [sym__expression] = STATE(1889), - [sym_block] = STATE(1889), + [sym__expression] = STATE(1824), + [sym_block] = STATE(1824), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1889), - [sym_nil] = STATE(1889), - [sym__atom] = STATE(1889), - [sym_quoted_atom] = STATE(1889), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1889), - [sym_charlist] = STATE(1889), - [sym_sigil] = STATE(1889), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1889), - [sym_tuple] = STATE(1889), - [sym_bitstring] = STATE(1889), - [sym_map] = STATE(1889), - [sym__nullary_operator] = STATE(1889), - [sym_unary_operator] = STATE(1889), - [sym_binary_operator] = STATE(1889), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1889), - [sym_call] = STATE(1889), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1824), + [sym_nil] = STATE(1824), + [sym__atom] = STATE(1824), + [sym_quoted_atom] = STATE(1824), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1824), + [sym_charlist] = STATE(1824), + [sym_sigil] = STATE(1824), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1824), + [sym_tuple] = STATE(1824), + [sym_bitstring] = STATE(1824), + [sym_map] = STATE(1824), + [sym__nullary_operator] = STATE(1824), + [sym_unary_operator] = STATE(1824), + [sym_binary_operator] = STATE(1824), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1824), + [sym_call] = STATE(1824), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1889), - [sym_stab_clause] = STATE(5919), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1889), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1824), + [sym_stab_clause] = STATE(5848), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1824), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(870), @@ -46219,53 +45985,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [114] = { - [sym__expression] = STATE(1866), - [sym_block] = STATE(1866), + [sym__expression] = STATE(1817), + [sym_block] = STATE(1817), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1866), - [sym_nil] = STATE(1866), - [sym__atom] = STATE(1866), - [sym_quoted_atom] = STATE(1866), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1866), - [sym_charlist] = STATE(1866), - [sym_sigil] = STATE(1866), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1866), - [sym_tuple] = STATE(1866), - [sym_bitstring] = STATE(1866), - [sym_map] = STATE(1866), - [sym__nullary_operator] = STATE(1866), - [sym_unary_operator] = STATE(1866), - [sym_binary_operator] = STATE(1866), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1866), - [sym_call] = STATE(1866), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1817), + [sym_nil] = STATE(1817), + [sym__atom] = STATE(1817), + [sym_quoted_atom] = STATE(1817), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1817), + [sym_charlist] = STATE(1817), + [sym_sigil] = STATE(1817), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1817), + [sym_tuple] = STATE(1817), + [sym_bitstring] = STATE(1817), + [sym_map] = STATE(1817), + [sym__nullary_operator] = STATE(1817), + [sym_unary_operator] = STATE(1817), + [sym_binary_operator] = STATE(1817), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1817), + [sym_call] = STATE(1817), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1866), - [sym_stab_clause] = STATE(5393), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1866), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1817), + [sym_stab_clause] = STATE(5713), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1817), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(874), @@ -46348,53 +46114,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [115] = { - [sym__expression] = STATE(1878), - [sym_block] = STATE(1878), + [sym__expression] = STATE(1807), + [sym_block] = STATE(1807), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1878), - [sym_nil] = STATE(1878), - [sym__atom] = STATE(1878), - [sym_quoted_atom] = STATE(1878), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1878), - [sym_charlist] = STATE(1878), - [sym_sigil] = STATE(1878), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1878), - [sym_tuple] = STATE(1878), - [sym_bitstring] = STATE(1878), - [sym_map] = STATE(1878), - [sym__nullary_operator] = STATE(1878), - [sym_unary_operator] = STATE(1878), - [sym_binary_operator] = STATE(1878), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1878), - [sym_call] = STATE(1878), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1807), + [sym_nil] = STATE(1807), + [sym__atom] = STATE(1807), + [sym_quoted_atom] = STATE(1807), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1807), + [sym_charlist] = STATE(1807), + [sym_sigil] = STATE(1807), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1807), + [sym_tuple] = STATE(1807), + [sym_bitstring] = STATE(1807), + [sym_map] = STATE(1807), + [sym__nullary_operator] = STATE(1807), + [sym_unary_operator] = STATE(1807), + [sym_binary_operator] = STATE(1807), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1807), + [sym_call] = STATE(1807), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1878), - [sym_stab_clause] = STATE(5242), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1878), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1807), + [sym_stab_clause] = STATE(5393), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1807), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(878), @@ -46477,53 +46243,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [116] = { - [sym__expression] = STATE(1852), - [sym_block] = STATE(1852), + [sym__expression] = STATE(1832), + [sym_block] = STATE(1832), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1852), - [sym_nil] = STATE(1852), - [sym__atom] = STATE(1852), - [sym_quoted_atom] = STATE(1852), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1852), - [sym_charlist] = STATE(1852), - [sym_sigil] = STATE(1852), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1852), - [sym_tuple] = STATE(1852), - [sym_bitstring] = STATE(1852), - [sym_map] = STATE(1852), - [sym__nullary_operator] = STATE(1852), - [sym_unary_operator] = STATE(1852), - [sym_binary_operator] = STATE(1852), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1852), - [sym_call] = STATE(1852), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1832), + [sym_nil] = STATE(1832), + [sym__atom] = STATE(1832), + [sym_quoted_atom] = STATE(1832), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1832), + [sym_charlist] = STATE(1832), + [sym_sigil] = STATE(1832), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1832), + [sym_tuple] = STATE(1832), + [sym_bitstring] = STATE(1832), + [sym_map] = STATE(1832), + [sym__nullary_operator] = STATE(1832), + [sym_unary_operator] = STATE(1832), + [sym_binary_operator] = STATE(1832), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1832), + [sym_call] = STATE(1832), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1852), - [sym_stab_clause] = STATE(5712), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1852), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1832), + [sym_stab_clause] = STATE(5342), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1832), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(882), @@ -46606,53 +46372,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [117] = { - [sym__expression] = STATE(1864), - [sym_block] = STATE(1864), + [sym__expression] = STATE(1805), + [sym_block] = STATE(1805), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1864), - [sym_nil] = STATE(1864), - [sym__atom] = STATE(1864), - [sym_quoted_atom] = STATE(1864), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1864), - [sym_charlist] = STATE(1864), - [sym_sigil] = STATE(1864), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1864), - [sym_tuple] = STATE(1864), - [sym_bitstring] = STATE(1864), - [sym_map] = STATE(1864), - [sym__nullary_operator] = STATE(1864), - [sym_unary_operator] = STATE(1864), - [sym_binary_operator] = STATE(1864), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1864), - [sym_call] = STATE(1864), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1805), + [sym_nil] = STATE(1805), + [sym__atom] = STATE(1805), + [sym_quoted_atom] = STATE(1805), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1805), + [sym_charlist] = STATE(1805), + [sym_sigil] = STATE(1805), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1805), + [sym_tuple] = STATE(1805), + [sym_bitstring] = STATE(1805), + [sym_map] = STATE(1805), + [sym__nullary_operator] = STATE(1805), + [sym_unary_operator] = STATE(1805), + [sym_binary_operator] = STATE(1805), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1805), + [sym_call] = STATE(1805), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1864), - [sym_stab_clause] = STATE(5855), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1864), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1805), + [sym_stab_clause] = STATE(5364), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1805), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(886), @@ -46735,53 +46501,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [118] = { - [sym__expression] = STATE(1984), - [sym_block] = STATE(1984), + [sym__expression] = STATE(1821), + [sym_block] = STATE(1821), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1984), - [sym_nil] = STATE(1984), - [sym__atom] = STATE(1984), - [sym_quoted_atom] = STATE(1984), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1984), - [sym_charlist] = STATE(1984), - [sym_sigil] = STATE(1984), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1984), - [sym_tuple] = STATE(1984), - [sym_bitstring] = STATE(1984), - [sym_map] = STATE(1984), - [sym__nullary_operator] = STATE(1984), - [sym_unary_operator] = STATE(1984), - [sym_binary_operator] = STATE(1984), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1984), - [sym_call] = STATE(1984), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1821), + [sym_nil] = STATE(1821), + [sym__atom] = STATE(1821), + [sym_quoted_atom] = STATE(1821), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1821), + [sym_charlist] = STATE(1821), + [sym_sigil] = STATE(1821), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1821), + [sym_tuple] = STATE(1821), + [sym_bitstring] = STATE(1821), + [sym_map] = STATE(1821), + [sym__nullary_operator] = STATE(1821), + [sym_unary_operator] = STATE(1821), + [sym_binary_operator] = STATE(1821), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1821), + [sym_call] = STATE(1821), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1984), - [sym_stab_clause] = STATE(5152), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1984), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1821), + [sym_stab_clause] = STATE(5824), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1821), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(890), @@ -46864,53 +46630,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [119] = { - [sym__expression] = STATE(1867), - [sym_block] = STATE(1867), + [sym__expression] = STATE(1798), + [sym_block] = STATE(1798), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1867), - [sym_nil] = STATE(1867), - [sym__atom] = STATE(1867), - [sym_quoted_atom] = STATE(1867), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1867), - [sym_charlist] = STATE(1867), - [sym_sigil] = STATE(1867), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1867), - [sym_tuple] = STATE(1867), - [sym_bitstring] = STATE(1867), - [sym_map] = STATE(1867), - [sym__nullary_operator] = STATE(1867), - [sym_unary_operator] = STATE(1867), - [sym_binary_operator] = STATE(1867), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1867), - [sym_call] = STATE(1867), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1798), + [sym_nil] = STATE(1798), + [sym__atom] = STATE(1798), + [sym_quoted_atom] = STATE(1798), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1798), + [sym_charlist] = STATE(1798), + [sym_sigil] = STATE(1798), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1798), + [sym_tuple] = STATE(1798), + [sym_bitstring] = STATE(1798), + [sym_map] = STATE(1798), + [sym__nullary_operator] = STATE(1798), + [sym_unary_operator] = STATE(1798), + [sym_binary_operator] = STATE(1798), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1798), + [sym_call] = STATE(1798), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1867), - [sym_stab_clause] = STATE(5103), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1867), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1798), + [sym_stab_clause] = STATE(5096), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1798), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(894), @@ -46993,53 +46759,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [120] = { - [sym__expression] = STATE(1923), - [sym_block] = STATE(1923), + [sym__expression] = STATE(1801), + [sym_block] = STATE(1801), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1923), - [sym_nil] = STATE(1923), - [sym__atom] = STATE(1923), - [sym_quoted_atom] = STATE(1923), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1923), - [sym_charlist] = STATE(1923), - [sym_sigil] = STATE(1923), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1923), - [sym_tuple] = STATE(1923), - [sym_bitstring] = STATE(1923), - [sym_map] = STATE(1923), - [sym__nullary_operator] = STATE(1923), - [sym_unary_operator] = STATE(1923), - [sym_binary_operator] = STATE(1923), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1923), - [sym_call] = STATE(1923), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1801), + [sym_nil] = STATE(1801), + [sym__atom] = STATE(1801), + [sym_quoted_atom] = STATE(1801), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1801), + [sym_charlist] = STATE(1801), + [sym_sigil] = STATE(1801), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1801), + [sym_tuple] = STATE(1801), + [sym_bitstring] = STATE(1801), + [sym_map] = STATE(1801), + [sym__nullary_operator] = STATE(1801), + [sym_unary_operator] = STATE(1801), + [sym_binary_operator] = STATE(1801), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1801), + [sym_call] = STATE(1801), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1923), - [sym_stab_clause] = STATE(5824), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1923), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1801), + [sym_stab_clause] = STATE(5242), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1801), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(898), @@ -47122,53 +46888,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [121] = { - [sym__expression] = STATE(1800), - [sym_block] = STATE(1800), + [sym__expression] = STATE(1815), + [sym_block] = STATE(1815), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1800), - [sym_nil] = STATE(1800), - [sym__atom] = STATE(1800), - [sym_quoted_atom] = STATE(1800), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1800), - [sym_charlist] = STATE(1800), - [sym_sigil] = STATE(1800), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1800), - [sym_tuple] = STATE(1800), - [sym_bitstring] = STATE(1800), - [sym_map] = STATE(1800), - [sym__nullary_operator] = STATE(1800), - [sym_unary_operator] = STATE(1800), - [sym_binary_operator] = STATE(1800), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1800), - [sym_call] = STATE(1800), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1815), + [sym_nil] = STATE(1815), + [sym__atom] = STATE(1815), + [sym_quoted_atom] = STATE(1815), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1815), + [sym_charlist] = STATE(1815), + [sym_sigil] = STATE(1815), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1815), + [sym_tuple] = STATE(1815), + [sym_bitstring] = STATE(1815), + [sym_map] = STATE(1815), + [sym__nullary_operator] = STATE(1815), + [sym_unary_operator] = STATE(1815), + [sym_binary_operator] = STATE(1815), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1815), + [sym_call] = STATE(1815), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1800), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1815), [sym_stab_clause] = STATE(5681), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1800), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1815), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(902), @@ -47251,53 +47017,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [122] = { - [sym__expression] = STATE(1820), - [sym_block] = STATE(1820), + [sym__expression] = STATE(1803), + [sym_block] = STATE(1803), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1820), - [sym_nil] = STATE(1820), - [sym__atom] = STATE(1820), - [sym_quoted_atom] = STATE(1820), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1820), - [sym_charlist] = STATE(1820), - [sym_sigil] = STATE(1820), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1820), - [sym_tuple] = STATE(1820), - [sym_bitstring] = STATE(1820), - [sym_map] = STATE(1820), - [sym__nullary_operator] = STATE(1820), - [sym_unary_operator] = STATE(1820), - [sym_binary_operator] = STATE(1820), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1820), - [sym_call] = STATE(1820), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1803), + [sym_nil] = STATE(1803), + [sym__atom] = STATE(1803), + [sym_quoted_atom] = STATE(1803), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1803), + [sym_charlist] = STATE(1803), + [sym_sigil] = STATE(1803), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1803), + [sym_tuple] = STATE(1803), + [sym_bitstring] = STATE(1803), + [sym_map] = STATE(1803), + [sym__nullary_operator] = STATE(1803), + [sym_unary_operator] = STATE(1803), + [sym_binary_operator] = STATE(1803), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1803), + [sym_call] = STATE(1803), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1820), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1803), [sym_stab_clause] = STATE(5274), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1820), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1803), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(906), @@ -47380,53 +47146,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [123] = { - [sym__expression] = STATE(2018), - [sym_block] = STATE(2018), + [sym__expression] = STATE(1811), + [sym_block] = STATE(1811), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(2018), - [sym_nil] = STATE(2018), - [sym__atom] = STATE(2018), - [sym_quoted_atom] = STATE(2018), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2018), - [sym_charlist] = STATE(2018), - [sym_sigil] = STATE(2018), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(2018), - [sym_tuple] = STATE(2018), - [sym_bitstring] = STATE(2018), - [sym_map] = STATE(2018), - [sym__nullary_operator] = STATE(2018), - [sym_unary_operator] = STATE(2018), - [sym_binary_operator] = STATE(2018), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2018), - [sym_call] = STATE(2018), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1811), + [sym_nil] = STATE(1811), + [sym__atom] = STATE(1811), + [sym_quoted_atom] = STATE(1811), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1811), + [sym_charlist] = STATE(1811), + [sym_sigil] = STATE(1811), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1811), + [sym_tuple] = STATE(1811), + [sym_bitstring] = STATE(1811), + [sym_map] = STATE(1811), + [sym__nullary_operator] = STATE(1811), + [sym_unary_operator] = STATE(1811), + [sym_binary_operator] = STATE(1811), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1811), + [sym_call] = STATE(1811), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2018), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1811), [sym_stab_clause] = STATE(5537), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(2018), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1811), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(910), @@ -47509,53 +47275,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [124] = { - [sym__expression] = STATE(1924), - [sym_block] = STATE(1924), + [sym__expression] = STATE(1828), + [sym_block] = STATE(1828), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1924), - [sym_nil] = STATE(1924), - [sym__atom] = STATE(1924), - [sym_quoted_atom] = STATE(1924), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1924), - [sym_charlist] = STATE(1924), - [sym_sigil] = STATE(1924), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(1924), - [sym_tuple] = STATE(1924), - [sym_bitstring] = STATE(1924), - [sym_map] = STATE(1924), - [sym__nullary_operator] = STATE(1924), - [sym_unary_operator] = STATE(1924), - [sym_binary_operator] = STATE(1924), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1924), - [sym_call] = STATE(1924), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1828), + [sym_nil] = STATE(1828), + [sym__atom] = STATE(1828), + [sym_quoted_atom] = STATE(1828), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1828), + [sym_charlist] = STATE(1828), + [sym_sigil] = STATE(1828), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(1828), + [sym_tuple] = STATE(1828), + [sym_bitstring] = STATE(1828), + [sym_map] = STATE(1828), + [sym__nullary_operator] = STATE(1828), + [sym_unary_operator] = STATE(1828), + [sym_binary_operator] = STATE(1828), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1828), + [sym_call] = STATE(1828), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1924), - [sym_stab_clause] = STATE(5499), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(1924), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1828), + [sym_stab_clause] = STATE(5116), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(1828), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(63), [anon_sym_RPAREN] = ACTIONS(914), @@ -47638,53 +47404,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [125] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5386), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5418), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -47766,53 +47532,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [126] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5271), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -47894,53 +47660,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [127] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(4825), - [sym__stab_clause_left] = STATE(6901), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5793), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48012,7 +47778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(101), + [anon_sym_DASH_GT] = ACTIONS(838), [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), @@ -48022,53 +47788,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [128] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5671), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5328), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48150,53 +47916,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [129] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(4825), - [sym__stab_clause_left] = STATE(6929), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(4826), + [sym__stab_clause_left] = STATE(6972), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48268,7 +48034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(698), + [anon_sym_DASH_GT] = ACTIONS(101), [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), @@ -48278,53 +48044,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [130] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5234), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5792), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48406,53 +48172,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [131] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5307), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5658), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48534,53 +48300,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [132] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(6846), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(6773), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48662,53 +48428,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [133] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5566), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48790,53 +48556,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [134] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5844), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(4826), + [sym__stab_clause_left] = STATE(6923), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -48908,7 +48674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(838), + [anon_sym_DASH_GT] = ACTIONS(698), [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), @@ -48918,53 +48684,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [135] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5852), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -49046,53 +48812,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [136] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), - [sym_stab_clause] = STATE(5854), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), + [sym_stab_clause] = STATE(5525), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -49174,53 +48940,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [137] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5422), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -49302,53 +49068,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [138] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5125), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -49430,53 +49196,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [139] = { - [sym__expression] = STATE(4197), - [sym_block] = STATE(4197), + [sym__expression] = STATE(4287), + [sym_block] = STATE(4287), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4197), - [sym_nil] = STATE(4197), - [sym__atom] = STATE(4197), - [sym_quoted_atom] = STATE(4197), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4197), - [sym_charlist] = STATE(4197), - [sym_sigil] = STATE(4197), - [sym_keywords] = STATE(6803), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4197), - [sym_tuple] = STATE(4197), - [sym_bitstring] = STATE(4197), - [sym_map] = STATE(4197), - [sym__nullary_operator] = STATE(4197), - [sym_unary_operator] = STATE(4197), - [sym_binary_operator] = STATE(4197), + [sym_boolean] = STATE(4287), + [sym_nil] = STATE(4287), + [sym__atom] = STATE(4287), + [sym_quoted_atom] = STATE(4287), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4287), + [sym_charlist] = STATE(4287), + [sym_sigil] = STATE(4287), + [sym_keywords] = STATE(6800), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4287), + [sym_tuple] = STATE(4287), + [sym_bitstring] = STATE(4287), + [sym_map] = STATE(4287), + [sym__nullary_operator] = STATE(4287), + [sym_unary_operator] = STATE(4287), + [sym_binary_operator] = STATE(4287), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4197), - [sym_call] = STATE(4197), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4287), + [sym_call] = STATE(4287), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4197), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4287), [sym_stab_clause] = STATE(5710), - [sym__stab_clause_left] = STATE(6861), - [sym__stab_clause_arguments_with_parentheses] = STATE(6827), - [sym__stab_clause_arguments_without_parentheses] = STATE(6815), - [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6908), - [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6905), - [sym_anonymous_function] = STATE(4197), + [sym__stab_clause_left] = STATE(6914), + [sym__stab_clause_arguments_with_parentheses] = STATE(6821), + [sym__stab_clause_arguments_without_parentheses] = STATE(6804), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(6909), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(6908), + [sym_anonymous_function] = STATE(4287), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(802), [aux_sym_identifier_token1] = ACTIONS(804), @@ -49558,48 +49324,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [140] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4721), - [sym_rescue_block] = STATE(4721), - [sym_catch_block] = STATE(4721), - [sym_else_block] = STATE(4721), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4721), + [sym_after_block] = STATE(4728), + [sym_rescue_block] = STATE(4728), + [sym_catch_block] = STATE(4728), + [sym_else_block] = STATE(4728), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4728), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -49685,48 +49451,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [141] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4698), - [sym_rescue_block] = STATE(4698), - [sym_catch_block] = STATE(4698), - [sym_else_block] = STATE(4698), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4698), + [sym_after_block] = STATE(4739), + [sym_rescue_block] = STATE(4739), + [sym_catch_block] = STATE(4739), + [sym_else_block] = STATE(4739), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4739), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -49812,48 +49578,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [142] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4722), - [sym_rescue_block] = STATE(4722), - [sym_catch_block] = STATE(4722), - [sym_else_block] = STATE(4722), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4722), + [sym_after_block] = STATE(4734), + [sym_rescue_block] = STATE(4734), + [sym_catch_block] = STATE(4734), + [sym_else_block] = STATE(4734), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4734), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -49939,48 +49705,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [143] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4690), - [sym_rescue_block] = STATE(4690), - [sym_catch_block] = STATE(4690), - [sym_else_block] = STATE(4690), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4690), + [sym_after_block] = STATE(4715), + [sym_rescue_block] = STATE(4715), + [sym_catch_block] = STATE(4715), + [sym_else_block] = STATE(4715), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4715), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -50066,48 +49832,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [144] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4727), - [sym_rescue_block] = STATE(4727), - [sym_catch_block] = STATE(4727), - [sym_else_block] = STATE(4727), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4727), + [sym_after_block] = STATE(4729), + [sym_rescue_block] = STATE(4729), + [sym_catch_block] = STATE(4729), + [sym_else_block] = STATE(4729), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4729), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -50193,47 +49959,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [145] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_after_block] = STATE(4738), [sym_rescue_block] = STATE(4738), [sym_catch_block] = STATE(4738), [sym_else_block] = STATE(4738), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym_do_block_repeat1] = STATE(4738), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), @@ -50320,47 +50086,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [146] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_after_block] = STATE(4740), [sym_rescue_block] = STATE(4740), [sym_catch_block] = STATE(4740), [sym_else_block] = STATE(4740), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym_do_block_repeat1] = STATE(4740), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), @@ -50447,48 +50213,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [147] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4728), - [sym_rescue_block] = STATE(4728), - [sym_catch_block] = STATE(4728), - [sym_else_block] = STATE(4728), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4728), + [sym_after_block] = STATE(4716), + [sym_rescue_block] = STATE(4716), + [sym_catch_block] = STATE(4716), + [sym_else_block] = STATE(4716), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4716), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -50574,48 +50340,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [148] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4725), - [sym_rescue_block] = STATE(4725), - [sym_catch_block] = STATE(4725), - [sym_else_block] = STATE(4725), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4725), + [sym_after_block] = STATE(4730), + [sym_rescue_block] = STATE(4730), + [sym_catch_block] = STATE(4730), + [sym_else_block] = STATE(4730), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4730), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -50701,48 +50467,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [149] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4714), - [sym_rescue_block] = STATE(4714), - [sym_catch_block] = STATE(4714), - [sym_else_block] = STATE(4714), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4714), + [sym_after_block] = STATE(4725), + [sym_rescue_block] = STATE(4725), + [sym_catch_block] = STATE(4725), + [sym_else_block] = STATE(4725), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4725), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -50828,48 +50594,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [150] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4717), - [sym_rescue_block] = STATE(4717), - [sym_catch_block] = STATE(4717), - [sym_else_block] = STATE(4717), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4717), + [sym_after_block] = STATE(4724), + [sym_rescue_block] = STATE(4724), + [sym_catch_block] = STATE(4724), + [sym_else_block] = STATE(4724), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4724), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -50955,48 +50721,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [151] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4741), - [sym_rescue_block] = STATE(4741), - [sym_catch_block] = STATE(4741), - [sym_else_block] = STATE(4741), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4741), + [sym_after_block] = STATE(4745), + [sym_rescue_block] = STATE(4745), + [sym_catch_block] = STATE(4745), + [sym_else_block] = STATE(4745), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4745), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51082,48 +50848,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [152] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4737), - [sym_rescue_block] = STATE(4737), - [sym_catch_block] = STATE(4737), - [sym_else_block] = STATE(4737), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4737), + [sym_after_block] = STATE(4714), + [sym_rescue_block] = STATE(4714), + [sym_catch_block] = STATE(4714), + [sym_else_block] = STATE(4714), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4714), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51209,48 +50975,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [153] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4715), - [sym_rescue_block] = STATE(4715), - [sym_catch_block] = STATE(4715), - [sym_else_block] = STATE(4715), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4715), + [sym_after_block] = STATE(4720), + [sym_rescue_block] = STATE(4720), + [sym_catch_block] = STATE(4720), + [sym_else_block] = STATE(4720), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4720), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51336,48 +51102,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [154] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4734), - [sym_rescue_block] = STATE(4734), - [sym_catch_block] = STATE(4734), - [sym_else_block] = STATE(4734), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4734), + [sym_after_block] = STATE(4718), + [sym_rescue_block] = STATE(4718), + [sym_catch_block] = STATE(4718), + [sym_else_block] = STATE(4718), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4718), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51463,48 +51229,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [155] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4718), - [sym_rescue_block] = STATE(4718), - [sym_catch_block] = STATE(4718), - [sym_else_block] = STATE(4718), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4718), + [sym_after_block] = STATE(4723), + [sym_rescue_block] = STATE(4723), + [sym_catch_block] = STATE(4723), + [sym_else_block] = STATE(4723), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4723), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51590,48 +51356,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [156] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4750), - [sym_rescue_block] = STATE(4750), - [sym_catch_block] = STATE(4750), - [sym_else_block] = STATE(4750), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4750), + [sym_after_block] = STATE(4737), + [sym_rescue_block] = STATE(4737), + [sym_catch_block] = STATE(4737), + [sym_else_block] = STATE(4737), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4737), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51717,48 +51483,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [157] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4739), - [sym_rescue_block] = STATE(4739), - [sym_catch_block] = STATE(4739), - [sym_else_block] = STATE(4739), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4739), + [sym_after_block] = STATE(4722), + [sym_rescue_block] = STATE(4722), + [sym_catch_block] = STATE(4722), + [sym_else_block] = STATE(4722), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4722), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51844,48 +51610,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [158] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4707), - [sym_rescue_block] = STATE(4707), - [sym_catch_block] = STATE(4707), - [sym_else_block] = STATE(4707), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4707), + [sym_after_block] = STATE(4717), + [sym_rescue_block] = STATE(4717), + [sym_catch_block] = STATE(4717), + [sym_else_block] = STATE(4717), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4717), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -51971,47 +51737,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [159] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_after_block] = STATE(4742), [sym_rescue_block] = STATE(4742), [sym_catch_block] = STATE(4742), [sym_else_block] = STATE(4742), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym_do_block_repeat1] = STATE(4742), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), @@ -52098,48 +51864,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [160] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4710), - [sym_rescue_block] = STATE(4710), - [sym_catch_block] = STATE(4710), - [sym_else_block] = STATE(4710), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4710), + [sym_after_block] = STATE(4741), + [sym_rescue_block] = STATE(4741), + [sym_catch_block] = STATE(4741), + [sym_else_block] = STATE(4741), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4741), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52225,48 +51991,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [161] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4713), - [sym_rescue_block] = STATE(4713), - [sym_catch_block] = STATE(4713), - [sym_else_block] = STATE(4713), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4713), + [sym_after_block] = STATE(4743), + [sym_rescue_block] = STATE(4743), + [sym_catch_block] = STATE(4743), + [sym_else_block] = STATE(4743), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4743), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52352,48 +52118,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [162] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4730), - [sym_rescue_block] = STATE(4730), - [sym_catch_block] = STATE(4730), - [sym_else_block] = STATE(4730), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4730), + [sym_after_block] = STATE(4731), + [sym_rescue_block] = STATE(4731), + [sym_catch_block] = STATE(4731), + [sym_else_block] = STATE(4731), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4731), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52479,48 +52245,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [163] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4747), - [sym_rescue_block] = STATE(4747), - [sym_catch_block] = STATE(4747), - [sym_else_block] = STATE(4747), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4747), + [sym_after_block] = STATE(4694), + [sym_rescue_block] = STATE(4694), + [sym_catch_block] = STATE(4694), + [sym_else_block] = STATE(4694), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4694), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52606,48 +52372,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [164] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4749), - [sym_rescue_block] = STATE(4749), - [sym_catch_block] = STATE(4749), - [sym_else_block] = STATE(4749), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4749), + [sym_after_block] = STATE(4693), + [sym_rescue_block] = STATE(4693), + [sym_catch_block] = STATE(4693), + [sym_else_block] = STATE(4693), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4693), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52733,48 +52499,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [165] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4748), - [sym_rescue_block] = STATE(4748), - [sym_catch_block] = STATE(4748), - [sym_else_block] = STATE(4748), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4748), + [sym_after_block] = STATE(4692), + [sym_rescue_block] = STATE(4692), + [sym_catch_block] = STATE(4692), + [sym_else_block] = STATE(4692), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4692), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52860,48 +52626,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [166] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4705), - [sym_rescue_block] = STATE(4705), - [sym_catch_block] = STATE(4705), - [sym_else_block] = STATE(4705), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4705), + [sym_after_block] = STATE(4706), + [sym_rescue_block] = STATE(4706), + [sym_catch_block] = STATE(4706), + [sym_else_block] = STATE(4706), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4706), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -52987,48 +52753,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [167] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4711), - [sym_rescue_block] = STATE(4711), - [sym_catch_block] = STATE(4711), - [sym_else_block] = STATE(4711), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4711), + [sym_after_block] = STATE(4691), + [sym_rescue_block] = STATE(4691), + [sym_catch_block] = STATE(4691), + [sym_else_block] = STATE(4691), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4691), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53114,48 +52880,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [168] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4706), - [sym_rescue_block] = STATE(4706), - [sym_catch_block] = STATE(4706), - [sym_else_block] = STATE(4706), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4706), + [sym_after_block] = STATE(4705), + [sym_rescue_block] = STATE(4705), + [sym_catch_block] = STATE(4705), + [sym_else_block] = STATE(4705), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4705), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53241,48 +53007,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [169] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4703), - [sym_rescue_block] = STATE(4703), - [sym_catch_block] = STATE(4703), - [sym_else_block] = STATE(4703), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4703), + [sym_after_block] = STATE(4702), + [sym_rescue_block] = STATE(4702), + [sym_catch_block] = STATE(4702), + [sym_else_block] = STATE(4702), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4702), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53368,48 +53134,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [170] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4729), - [sym_rescue_block] = STATE(4729), - [sym_catch_block] = STATE(4729), - [sym_else_block] = STATE(4729), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4729), + [sym_after_block] = STATE(4748), + [sym_rescue_block] = STATE(4748), + [sym_catch_block] = STATE(4748), + [sym_else_block] = STATE(4748), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4748), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53495,48 +53261,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [171] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4726), - [sym_rescue_block] = STATE(4726), - [sym_catch_block] = STATE(4726), - [sym_else_block] = STATE(4726), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4726), + [sym_after_block] = STATE(4747), + [sym_rescue_block] = STATE(4747), + [sym_catch_block] = STATE(4747), + [sym_else_block] = STATE(4747), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4747), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53622,48 +53388,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [172] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4699), - [sym_rescue_block] = STATE(4699), - [sym_catch_block] = STATE(4699), - [sym_else_block] = STATE(4699), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4699), + [sym_after_block] = STATE(4700), + [sym_rescue_block] = STATE(4700), + [sym_catch_block] = STATE(4700), + [sym_else_block] = STATE(4700), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4700), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53749,48 +53515,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [173] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4708), - [sym_rescue_block] = STATE(4708), - [sym_catch_block] = STATE(4708), - [sym_else_block] = STATE(4708), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4708), + [sym_after_block] = STATE(4703), + [sym_rescue_block] = STATE(4703), + [sym_catch_block] = STATE(4703), + [sym_else_block] = STATE(4703), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4703), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -53876,48 +53642,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [174] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4701), - [sym_rescue_block] = STATE(4701), - [sym_catch_block] = STATE(4701), - [sym_else_block] = STATE(4701), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4701), + [sym_after_block] = STATE(4698), + [sym_rescue_block] = STATE(4698), + [sym_catch_block] = STATE(4698), + [sym_else_block] = STATE(4698), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4698), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -54003,48 +53769,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [175] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_after_block] = STATE(4704), - [sym_rescue_block] = STATE(4704), - [sym_catch_block] = STATE(4704), - [sym_else_block] = STATE(4704), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), - [aux_sym_do_block_repeat1] = STATE(4704), + [sym_after_block] = STATE(4696), + [sym_rescue_block] = STATE(4696), + [sym_catch_block] = STATE(4696), + [sym_else_block] = STATE(4696), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym_do_block_repeat1] = STATE(4696), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -54131,45 +53897,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [176] = { [sym__terminator] = STATE(260), - [sym__expression] = STATE(1620), - [sym_block] = STATE(1620), + [sym__expression] = STATE(1765), + [sym_block] = STATE(1765), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(1620), - [sym_nil] = STATE(1620), - [sym__atom] = STATE(1620), - [sym_quoted_atom] = STATE(1620), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(1765), + [sym_nil] = STATE(1765), + [sym__atom] = STATE(1765), + [sym_quoted_atom] = STATE(1765), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(1620), - [sym_charlist] = STATE(1620), - [sym_sigil] = STATE(1620), - [sym_list] = STATE(1620), - [sym_tuple] = STATE(1620), - [sym_bitstring] = STATE(1620), - [sym_map] = STATE(1620), - [sym__nullary_operator] = STATE(1620), - [sym_unary_operator] = STATE(1620), - [sym_binary_operator] = STATE(1620), + [sym_string] = STATE(1765), + [sym_charlist] = STATE(1765), + [sym_sigil] = STATE(1765), + [sym_list] = STATE(1765), + [sym_tuple] = STATE(1765), + [sym_bitstring] = STATE(1765), + [sym_map] = STATE(1765), + [sym__nullary_operator] = STATE(1765), + [sym_unary_operator] = STATE(1765), + [sym_binary_operator] = STATE(1765), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(1620), - [sym_call] = STATE(1620), + [sym_dot] = STATE(1765), + [sym_call] = STATE(1765), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(1620), - [sym_body] = STATE(4828), - [sym_anonymous_function] = STATE(1620), - [aux_sym__terminator_repeat1] = STATE(1022), + [sym_access_call] = STATE(1765), + [sym_body] = STATE(4825), + [sym_anonymous_function] = STATE(1765), + [aux_sym__terminator_repeat1] = STATE(1020), [aux_sym__terminator_token1] = ACTIONS(1030), [anon_sym_SEMI] = ACTIONS(1032), [anon_sym_LPAREN] = ACTIONS(918), @@ -54257,45 +54023,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [177] = { [sym__terminator] = STATE(260), - [sym__expression] = STATE(1620), - [sym_block] = STATE(1620), + [sym__expression] = STATE(1765), + [sym_block] = STATE(1765), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(1620), - [sym_nil] = STATE(1620), - [sym__atom] = STATE(1620), - [sym_quoted_atom] = STATE(1620), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(1765), + [sym_nil] = STATE(1765), + [sym__atom] = STATE(1765), + [sym_quoted_atom] = STATE(1765), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(1620), - [sym_charlist] = STATE(1620), - [sym_sigil] = STATE(1620), - [sym_list] = STATE(1620), - [sym_tuple] = STATE(1620), - [sym_bitstring] = STATE(1620), - [sym_map] = STATE(1620), - [sym__nullary_operator] = STATE(1620), - [sym_unary_operator] = STATE(1620), - [sym_binary_operator] = STATE(1620), + [sym_string] = STATE(1765), + [sym_charlist] = STATE(1765), + [sym_sigil] = STATE(1765), + [sym_list] = STATE(1765), + [sym_tuple] = STATE(1765), + [sym_bitstring] = STATE(1765), + [sym_map] = STATE(1765), + [sym__nullary_operator] = STATE(1765), + [sym_unary_operator] = STATE(1765), + [sym_binary_operator] = STATE(1765), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(1620), - [sym_call] = STATE(1620), + [sym_dot] = STATE(1765), + [sym_call] = STATE(1765), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(1620), - [sym_body] = STATE(4827), - [sym_anonymous_function] = STATE(1620), - [aux_sym__terminator_repeat1] = STATE(1022), + [sym_access_call] = STATE(1765), + [sym_body] = STATE(4828), + [sym_anonymous_function] = STATE(1765), + [aux_sym__terminator_repeat1] = STATE(1020), [aux_sym__terminator_token1] = ACTIONS(1030), [anon_sym_SEMI] = ACTIONS(1032), [anon_sym_LPAREN] = ACTIONS(918), @@ -54382,48 +54148,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [178] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6866), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6929), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -54506,48 +54272,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [179] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), [sym__items_with_trailing_separator] = STATE(6856), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -54630,48 +54396,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [180] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6899), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6905), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -54754,48 +54520,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [181] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6943), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6935), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -54878,48 +54644,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [182] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6942), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6928), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -55009,17 +54775,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6898), + [sym__keywords_with_trailing_separator] = STATE(6899), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -55030,18 +54796,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6898), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6899), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -55126,48 +54892,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [184] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6940), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6927), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -55250,48 +55016,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [185] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6877), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6880), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -55374,48 +55140,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [186] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6915), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6912), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -55498,48 +55264,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [187] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6891), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6893), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -55622,47 +55388,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [188] = { - [sym__expression] = STATE(3769), - [sym_block] = STATE(3769), + [sym__expression] = STATE(3613), + [sym_block] = STATE(3613), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3769), - [sym_nil] = STATE(3769), - [sym__atom] = STATE(3769), - [sym_quoted_atom] = STATE(3769), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3769), - [sym_charlist] = STATE(3769), - [sym_sigil] = STATE(3769), - [sym__keywords_with_trailing_separator] = STATE(6252), + [sym_boolean] = STATE(3613), + [sym_nil] = STATE(3613), + [sym__atom] = STATE(3613), + [sym_quoted_atom] = STATE(3613), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3613), + [sym_charlist] = STATE(3613), + [sym_sigil] = STATE(3613), + [sym__keywords_with_trailing_separator] = STATE(6456), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3769), - [sym_tuple] = STATE(3769), - [sym_bitstring] = STATE(3769), - [sym_map] = STATE(3769), - [sym__nullary_operator] = STATE(3769), - [sym_unary_operator] = STATE(3769), - [sym_binary_operator] = STATE(3769), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3613), + [sym_tuple] = STATE(3613), + [sym_bitstring] = STATE(3613), + [sym_map] = STATE(3613), + [sym__nullary_operator] = STATE(3613), + [sym_unary_operator] = STATE(3613), + [sym_binary_operator] = STATE(3613), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3769), - [sym_call] = STATE(3769), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3613), + [sym_call] = STATE(3613), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3769), - [sym_anonymous_function] = STATE(3769), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3613), + [sym_anonymous_function] = STATE(3613), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -55746,48 +55512,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [189] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6893), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6874), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -55870,48 +55636,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [190] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), [sym__items_with_trailing_separator] = STATE(6889), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -56001,17 +55767,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6927), + [sym__keywords_with_trailing_separator] = STATE(6941), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -56022,18 +55788,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6927), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6941), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -56125,17 +55891,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6934), + [sym__keywords_with_trailing_separator] = STATE(6944), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -56146,18 +55912,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6934), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6944), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -56242,48 +56008,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [193] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), [sym__items_with_trailing_separator] = STATE(6951), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -56366,48 +56132,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [194] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6874), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6877), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -56490,48 +56256,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [195] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), [sym__items_with_trailing_separator] = STATE(6980), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -56614,47 +56380,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [196] = { - [sym__expression] = STATE(3769), - [sym_block] = STATE(3769), + [sym__expression] = STATE(3613), + [sym_block] = STATE(3613), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3769), - [sym_nil] = STATE(3769), - [sym__atom] = STATE(3769), - [sym_quoted_atom] = STATE(3769), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3769), - [sym_charlist] = STATE(3769), - [sym_sigil] = STATE(3769), - [sym__keywords_with_trailing_separator] = STATE(6633), + [sym_boolean] = STATE(3613), + [sym_nil] = STATE(3613), + [sym__atom] = STATE(3613), + [sym_quoted_atom] = STATE(3613), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3613), + [sym_charlist] = STATE(3613), + [sym_sigil] = STATE(3613), + [sym__keywords_with_trailing_separator] = STATE(6398), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3769), - [sym_tuple] = STATE(3769), - [sym_bitstring] = STATE(3769), - [sym_map] = STATE(3769), - [sym__nullary_operator] = STATE(3769), - [sym_unary_operator] = STATE(3769), - [sym_binary_operator] = STATE(3769), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3613), + [sym_tuple] = STATE(3613), + [sym_bitstring] = STATE(3613), + [sym_map] = STATE(3613), + [sym__nullary_operator] = STATE(3613), + [sym_unary_operator] = STATE(3613), + [sym_binary_operator] = STATE(3613), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3769), - [sym_call] = STATE(3769), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3613), + [sym_call] = STATE(3613), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3769), - [sym_anonymous_function] = STATE(3769), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3613), + [sym_anonymous_function] = STATE(3613), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -56738,48 +56504,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [197] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6983), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6984), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -56862,48 +56628,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [198] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6984), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6985), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -56993,17 +56759,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6876), + [sym__keywords_with_trailing_separator] = STATE(6974), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -57014,18 +56780,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6876), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6974), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -57117,17 +56883,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6975), + [sym__keywords_with_trailing_separator] = STATE(6940), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -57138,18 +56904,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6975), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6940), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -57234,48 +57000,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [201] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), [sym__items_with_trailing_separator] = STATE(6888), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -57358,48 +57124,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [202] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6854), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6869), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -57482,48 +57248,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [203] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6968), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6937), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -57606,48 +57372,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [204] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), [sym__items_with_trailing_separator] = STATE(6865), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -57730,48 +57496,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [205] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6920), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6855), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -57861,17 +57627,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6872), + [sym__keywords_with_trailing_separator] = STATE(6867), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -57882,18 +57648,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6872), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6867), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -57978,48 +57744,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [207] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6964), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6897), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -58102,48 +57868,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [208] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6963), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6898), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -58226,48 +57992,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [209] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6922), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6920), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -58357,17 +58123,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6863), + [sym__keywords_with_trailing_separator] = STATE(6942), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -58378,18 +58144,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6863), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6942), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -58481,17 +58247,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6880), + [sym__keywords_with_trailing_separator] = STATE(6913), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -58502,18 +58268,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6880), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6913), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -58598,48 +58364,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [212] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6871), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6983), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -58722,48 +58488,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [213] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6895), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6981), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -58846,48 +58612,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [214] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6864), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6861), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -58970,48 +58736,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [215] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6926), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6922), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -59094,48 +58860,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [216] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6979), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6965), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -59218,48 +58984,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [217] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6981), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6962), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -59342,48 +59108,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [218] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6982), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6872), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -59466,48 +59232,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [219] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), [sym__items_with_trailing_separator] = STATE(6858), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -59590,48 +59356,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [220] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), [sym__items_with_trailing_separator] = STATE(6857), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -59714,48 +59480,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [221] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6936), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6975), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -59838,48 +59604,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [222] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6897), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6967), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -59962,48 +59728,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [223] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6873), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6968), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -60086,48 +59852,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [224] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6867), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6969), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -60210,48 +59976,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [225] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6977), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6964), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -60341,17 +60107,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6954), + [sym__keywords_with_trailing_separator] = STATE(6933), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -60362,18 +60128,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6954), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6933), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -60458,48 +60224,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [227] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6923), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6915), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -60582,48 +60348,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [228] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6973), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6963), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -60713,17 +60479,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6944), + [sym__keywords_with_trailing_separator] = STATE(6900), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -60734,18 +60500,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6944), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6900), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -60837,17 +60603,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6958), + [sym__keywords_with_trailing_separator] = STATE(6892), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -60858,18 +60624,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6958), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6892), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -60961,17 +60727,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6967), + [sym__keywords_with_trailing_separator] = STATE(6882), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -60982,18 +60748,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6967), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6882), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -61085,17 +60851,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6875), + [sym__keywords_with_trailing_separator] = STATE(6879), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -61106,18 +60872,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6875), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6879), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -61202,48 +60968,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [233] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6971), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6948), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -61326,48 +61092,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [234] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6974), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6919), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -61450,48 +61216,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [235] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6868), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6902), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -61574,48 +61340,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [236] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6896), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6887), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -61698,48 +61464,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [237] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6869), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6875), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -61822,48 +61588,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [238] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6870), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6876), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -61946,48 +61712,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [239] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6948), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6878), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -62070,48 +61836,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [240] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6941), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6955), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -62194,48 +61960,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [241] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), [sym__items_with_trailing_separator] = STATE(6956), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -62325,17 +62091,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6955), + [sym__keywords_with_trailing_separator] = STATE(6954), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -62346,18 +62112,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6955), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6954), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -62442,48 +62208,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [243] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6957), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6934), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -62566,48 +62332,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [244] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6937), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6943), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -62697,17 +62463,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6919), + [sym__keywords_with_trailing_separator] = STATE(6881), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -62718,18 +62484,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6919), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6881), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -62821,17 +62587,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6900), + [sym__keywords_with_trailing_separator] = STATE(6894), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -62842,18 +62608,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6900), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6894), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -62938,48 +62704,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [247] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6902), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6895), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -63062,48 +62828,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [248] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), [sym__items_with_trailing_separator] = STATE(6907), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -63186,48 +62952,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [249] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6913), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6854), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -63310,48 +63076,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [250] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6855), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6921), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -63434,48 +63200,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [251] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6909), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6976), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -63558,48 +63324,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [252] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6912), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6978), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -63682,48 +63448,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [253] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6914), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6901), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -63806,48 +63572,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [254] = { - [sym__expression] = STATE(4095), - [sym_block] = STATE(4095), + [sym__expression] = STATE(4408), + [sym_block] = STATE(4408), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4095), - [sym_nil] = STATE(4095), - [sym__atom] = STATE(4095), - [sym_quoted_atom] = STATE(4095), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4095), - [sym_charlist] = STATE(4095), - [sym_sigil] = STATE(4095), - [sym__keywords_with_trailing_separator] = STATE(6442), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4095), - [sym_tuple] = STATE(4095), - [sym_bitstring] = STATE(4095), - [sym_map] = STATE(4095), - [sym__items_with_trailing_separator] = STATE(6921), - [sym__nullary_operator] = STATE(4095), - [sym_unary_operator] = STATE(4095), - [sym_binary_operator] = STATE(4095), + [sym_boolean] = STATE(4408), + [sym_nil] = STATE(4408), + [sym__atom] = STATE(4408), + [sym_quoted_atom] = STATE(4408), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4408), + [sym_charlist] = STATE(4408), + [sym_sigil] = STATE(4408), + [sym__keywords_with_trailing_separator] = STATE(6483), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4408), + [sym_tuple] = STATE(4408), + [sym_bitstring] = STATE(4408), + [sym_map] = STATE(4408), + [sym__items_with_trailing_separator] = STATE(6979), + [sym__nullary_operator] = STATE(4408), + [sym_unary_operator] = STATE(4408), + [sym_binary_operator] = STATE(4408), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4095), - [sym_call] = STATE(4095), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4408), + [sym_call] = STATE(4408), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4095), - [sym_anonymous_function] = STATE(4095), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4408), + [sym_anonymous_function] = STATE(4408), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -63937,17 +63703,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6985), + [sym__keywords_with_trailing_separator] = STATE(6958), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -63958,18 +63724,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6985), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6958), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -64061,17 +63827,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4356), [sym__atom] = STATE(4356), [sym_quoted_atom] = STATE(4356), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4356), [sym_charlist] = STATE(4356), [sym_sigil] = STATE(4356), - [sym__keywords_with_trailing_separator] = STATE(6978), + [sym__keywords_with_trailing_separator] = STATE(6971), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), [sym_list] = STATE(4356), [sym_tuple] = STATE(4356), [sym_bitstring] = STATE(4356), @@ -64082,18 +63848,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4356), [sym_call] = STATE(4356), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym__call_arguments_with_trailing_separator] = STATE(6978), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym__call_arguments_with_trailing_separator] = STATE(6971), [sym_access_call] = STATE(4356), [sym_anonymous_function] = STATE(4356), [aux_sym__terminator_token1] = ACTIONS(3), @@ -64178,48 +63944,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [257] = { - [sym__expression] = STATE(3534), - [sym_block] = STATE(3534), + [sym__expression] = STATE(3578), + [sym_block] = STATE(3578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3534), - [sym_nil] = STATE(3534), - [sym__atom] = STATE(3534), - [sym_quoted_atom] = STATE(3534), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3534), - [sym_charlist] = STATE(3534), - [sym_sigil] = STATE(3534), - [sym__keywords_with_trailing_separator] = STATE(6442), + [sym_boolean] = STATE(3578), + [sym_nil] = STATE(3578), + [sym__atom] = STATE(3578), + [sym_quoted_atom] = STATE(3578), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3578), + [sym_charlist] = STATE(3578), + [sym_sigil] = STATE(3578), + [sym__keywords_with_trailing_separator] = STATE(6483), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3534), - [sym_tuple] = STATE(3534), - [sym_bitstring] = STATE(3534), - [sym_map] = STATE(3534), - [sym__items_with_trailing_separator] = STATE(6965), - [sym__nullary_operator] = STATE(3534), - [sym_unary_operator] = STATE(3534), - [sym_binary_operator] = STATE(3534), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3578), + [sym_tuple] = STATE(3578), + [sym_bitstring] = STATE(3578), + [sym_map] = STATE(3578), + [sym__items_with_trailing_separator] = STATE(6973), + [sym__nullary_operator] = STATE(3578), + [sym_unary_operator] = STATE(3578), + [sym_binary_operator] = STATE(3578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3534), - [sym_call] = STATE(3534), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3578), + [sym_call] = STATE(3578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3534), - [sym_anonymous_function] = STATE(3534), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3578), + [sym_anonymous_function] = STATE(3578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -64302,43 +64068,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [258] = { - [sym__expression] = STATE(2871), - [sym_block] = STATE(2871), + [sym__expression] = STATE(2660), + [sym_block] = STATE(2660), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2871), - [sym_nil] = STATE(2871), - [sym__atom] = STATE(2871), - [sym_quoted_atom] = STATE(2871), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2660), + [sym_nil] = STATE(2660), + [sym__atom] = STATE(2660), + [sym_quoted_atom] = STATE(2660), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2871), - [sym_charlist] = STATE(2871), - [sym_sigil] = STATE(2871), - [sym_list] = STATE(2871), - [sym_tuple] = STATE(2871), - [sym_bitstring] = STATE(2871), - [sym_map] = STATE(2871), - [sym__nullary_operator] = STATE(2871), - [sym_unary_operator] = STATE(2871), - [sym_binary_operator] = STATE(2871), + [sym_string] = STATE(2660), + [sym_charlist] = STATE(2660), + [sym_sigil] = STATE(2660), + [sym_list] = STATE(2660), + [sym_tuple] = STATE(2660), + [sym_bitstring] = STATE(2660), + [sym_map] = STATE(2660), + [sym__nullary_operator] = STATE(2660), + [sym_unary_operator] = STATE(2660), + [sym_binary_operator] = STATE(2660), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2871), - [sym_call] = STATE(2871), + [sym_dot] = STATE(2660), + [sym_call] = STATE(2660), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2871), - [sym_anonymous_function] = STATE(2871), + [sym_access_call] = STATE(2660), + [sym_anonymous_function] = STATE(2660), [aux_sym__terminator_token1] = ACTIONS(1293), [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_LPAREN] = ACTIONS(918), @@ -64425,47 +64191,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [259] = { - [sym__expression] = STATE(4495), - [sym_block] = STATE(4495), + [sym__expression] = STATE(4507), + [sym_block] = STATE(4507), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4495), - [sym_nil] = STATE(4495), - [sym__atom] = STATE(4495), - [sym_quoted_atom] = STATE(4495), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4495), - [sym_charlist] = STATE(4495), - [sym_sigil] = STATE(4495), - [sym__keywords_with_trailing_separator] = STATE(6633), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4495), - [sym_tuple] = STATE(4495), - [sym_bitstring] = STATE(4495), - [sym_map] = STATE(4495), - [sym__nullary_operator] = STATE(4495), - [sym_unary_operator] = STATE(4495), - [sym_binary_operator] = STATE(4495), + [sym_boolean] = STATE(4507), + [sym_nil] = STATE(4507), + [sym__atom] = STATE(4507), + [sym_quoted_atom] = STATE(4507), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4507), + [sym_charlist] = STATE(4507), + [sym_sigil] = STATE(4507), + [sym__keywords_with_trailing_separator] = STATE(6398), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4507), + [sym_tuple] = STATE(4507), + [sym_bitstring] = STATE(4507), + [sym_map] = STATE(4507), + [sym__nullary_operator] = STATE(4507), + [sym_unary_operator] = STATE(4507), + [sym_binary_operator] = STATE(4507), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4495), - [sym_call] = STATE(4495), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4507), + [sym_call] = STATE(4507), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4495), - [sym_anonymous_function] = STATE(4495), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4507), + [sym_anonymous_function] = STATE(4507), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -64548,43 +64314,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [260] = { - [sym__expression] = STATE(1578), - [sym_block] = STATE(1578), + [sym__expression] = STATE(1766), + [sym_block] = STATE(1766), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(1578), - [sym_nil] = STATE(1578), - [sym__atom] = STATE(1578), - [sym_quoted_atom] = STATE(1578), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(1766), + [sym_nil] = STATE(1766), + [sym__atom] = STATE(1766), + [sym_quoted_atom] = STATE(1766), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(1578), - [sym_charlist] = STATE(1578), - [sym_sigil] = STATE(1578), - [sym_list] = STATE(1578), - [sym_tuple] = STATE(1578), - [sym_bitstring] = STATE(1578), - [sym_map] = STATE(1578), - [sym__nullary_operator] = STATE(1578), - [sym_unary_operator] = STATE(1578), - [sym_binary_operator] = STATE(1578), + [sym_string] = STATE(1766), + [sym_charlist] = STATE(1766), + [sym_sigil] = STATE(1766), + [sym_list] = STATE(1766), + [sym_tuple] = STATE(1766), + [sym_bitstring] = STATE(1766), + [sym_map] = STATE(1766), + [sym__nullary_operator] = STATE(1766), + [sym_unary_operator] = STATE(1766), + [sym_binary_operator] = STATE(1766), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(1578), - [sym_call] = STATE(1578), + [sym_dot] = STATE(1766), + [sym_call] = STATE(1766), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(1578), - [sym_anonymous_function] = STATE(1578), + [sym_access_call] = STATE(1766), + [sym_anonymous_function] = STATE(1766), [aux_sym__terminator_token1] = ACTIONS(1301), [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_LPAREN] = ACTIONS(918), @@ -64671,43 +64437,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [261] = { - [sym__expression] = STATE(2871), - [sym_block] = STATE(2871), + [sym__expression] = STATE(2660), + [sym_block] = STATE(2660), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2871), - [sym_nil] = STATE(2871), - [sym__atom] = STATE(2871), - [sym_quoted_atom] = STATE(2871), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2660), + [sym_nil] = STATE(2660), + [sym__atom] = STATE(2660), + [sym_quoted_atom] = STATE(2660), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2871), - [sym_charlist] = STATE(2871), - [sym_sigil] = STATE(2871), - [sym_list] = STATE(2871), - [sym_tuple] = STATE(2871), - [sym_bitstring] = STATE(2871), - [sym_map] = STATE(2871), - [sym__nullary_operator] = STATE(2871), - [sym_unary_operator] = STATE(2871), - [sym_binary_operator] = STATE(2871), + [sym_string] = STATE(2660), + [sym_charlist] = STATE(2660), + [sym_sigil] = STATE(2660), + [sym_list] = STATE(2660), + [sym_tuple] = STATE(2660), + [sym_bitstring] = STATE(2660), + [sym_map] = STATE(2660), + [sym__nullary_operator] = STATE(2660), + [sym_unary_operator] = STATE(2660), + [sym_binary_operator] = STATE(2660), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2871), - [sym_call] = STATE(2871), + [sym_dot] = STATE(2660), + [sym_call] = STATE(2660), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2871), - [sym_anonymous_function] = STATE(2871), + [sym_access_call] = STATE(2660), + [sym_anonymous_function] = STATE(2660), [aux_sym__terminator_token1] = ACTIONS(1307), [anon_sym_SEMI] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(918), @@ -64794,47 +64560,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [262] = { - [sym__expression] = STATE(4495), - [sym_block] = STATE(4495), + [sym__expression] = STATE(4507), + [sym_block] = STATE(4507), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4495), - [sym_nil] = STATE(4495), - [sym__atom] = STATE(4495), - [sym_quoted_atom] = STATE(4495), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4495), - [sym_charlist] = STATE(4495), - [sym_sigil] = STATE(4495), - [sym__keywords_with_trailing_separator] = STATE(6252), - [sym_pair] = STATE(6269), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4495), - [sym_tuple] = STATE(4495), - [sym_bitstring] = STATE(4495), - [sym_map] = STATE(4495), - [sym__nullary_operator] = STATE(4495), - [sym_unary_operator] = STATE(4495), - [sym_binary_operator] = STATE(4495), + [sym_boolean] = STATE(4507), + [sym_nil] = STATE(4507), + [sym__atom] = STATE(4507), + [sym_quoted_atom] = STATE(4507), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4507), + [sym_charlist] = STATE(4507), + [sym_sigil] = STATE(4507), + [sym__keywords_with_trailing_separator] = STATE(6456), + [sym_pair] = STATE(6244), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4507), + [sym_tuple] = STATE(4507), + [sym_bitstring] = STATE(4507), + [sym_map] = STATE(4507), + [sym__nullary_operator] = STATE(4507), + [sym_unary_operator] = STATE(4507), + [sym_binary_operator] = STATE(4507), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4495), - [sym_call] = STATE(4495), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4507), + [sym_call] = STATE(4507), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4495), - [sym_anonymous_function] = STATE(4495), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4507), + [sym_anonymous_function] = STATE(4507), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), @@ -64917,43 +64683,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [263] = { - [sym__expression] = STATE(2871), - [sym_block] = STATE(2871), + [sym__expression] = STATE(2660), + [sym_block] = STATE(2660), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2871), - [sym_nil] = STATE(2871), - [sym__atom] = STATE(2871), - [sym_quoted_atom] = STATE(2871), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2660), + [sym_nil] = STATE(2660), + [sym__atom] = STATE(2660), + [sym_quoted_atom] = STATE(2660), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2871), - [sym_charlist] = STATE(2871), - [sym_sigil] = STATE(2871), - [sym_list] = STATE(2871), - [sym_tuple] = STATE(2871), - [sym_bitstring] = STATE(2871), - [sym_map] = STATE(2871), - [sym__nullary_operator] = STATE(2871), - [sym_unary_operator] = STATE(2871), - [sym_binary_operator] = STATE(2871), + [sym_string] = STATE(2660), + [sym_charlist] = STATE(2660), + [sym_sigil] = STATE(2660), + [sym_list] = STATE(2660), + [sym_tuple] = STATE(2660), + [sym_bitstring] = STATE(2660), + [sym_map] = STATE(2660), + [sym__nullary_operator] = STATE(2660), + [sym_unary_operator] = STATE(2660), + [sym_binary_operator] = STATE(2660), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2871), - [sym_call] = STATE(2871), + [sym_dot] = STATE(2660), + [sym_call] = STATE(2660), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2871), - [sym_anonymous_function] = STATE(2871), + [sym_access_call] = STATE(2660), + [sym_anonymous_function] = STATE(2660), [aux_sym__terminator_token1] = ACTIONS(1311), [anon_sym_SEMI] = ACTIONS(1313), [anon_sym_LPAREN] = ACTIONS(918), @@ -65049,15 +64815,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_atom] = STATE(2554), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), [sym_string] = STATE(2554), [sym_charlist] = STATE(2554), [sym_sigil] = STATE(2554), - [sym_keywords] = STATE(2177), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), + [sym_keywords] = STATE(2235), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), [sym_list] = STATE(2554), [sym_tuple] = STATE(2554), [sym_bitstring] = STATE(2554), @@ -65068,17 +64834,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6938), [sym_dot] = STATE(2554), [sym_call] = STATE(2554), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), [sym_access_call] = STATE(2554), [sym_anonymous_function] = STATE(2554), [aux_sym__terminator_token1] = ACTIONS(3), @@ -65162,82 +64928,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [265] = { - [sym__terminator] = STATE(351), - [sym__expression] = STATE(3483), - [sym_block] = STATE(3483), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(3483), - [sym_nil] = STATE(3483), - [sym__atom] = STATE(3483), - [sym_quoted_atom] = STATE(3483), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(3483), - [sym_charlist] = STATE(3483), - [sym_sigil] = STATE(3483), - [sym_list] = STATE(3483), - [sym_tuple] = STATE(3483), - [sym_bitstring] = STATE(3483), - [sym_map] = STATE(3483), - [sym__nullary_operator] = STATE(3483), - [sym_unary_operator] = STATE(3483), - [sym_binary_operator] = STATE(3483), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(3483), - [sym_call] = STATE(3483), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(3483), - [sym_body] = STATE(4828), - [sym_anonymous_function] = STATE(3483), - [aux_sym__terminator_repeat1] = STATE(1029), - [aux_sym__terminator_token1] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1039), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1323), - [sym_integer] = ACTIONS(1323), - [sym_float] = ACTIONS(1323), - [sym_char] = ACTIONS(1323), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [sym__expression] = STATE(1576), + [sym_block] = STATE(1576), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1576), + [sym_nil] = STATE(1576), + [sym__atom] = STATE(1576), + [sym_quoted_atom] = STATE(1576), + [sym__quoted_i_double] = STATE(1192), + [sym__quoted_i_single] = STATE(1193), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1576), + [sym_charlist] = STATE(1576), + [sym_sigil] = STATE(1576), + [sym_keywords] = STATE(1396), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1576), + [sym_tuple] = STATE(1576), + [sym_bitstring] = STATE(1576), + [sym_map] = STATE(1576), + [sym__nullary_operator] = STATE(1576), + [sym_unary_operator] = STATE(1576), + [sym_binary_operator] = STATE(1576), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1576), + [sym_call] = STATE(1576), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1576), + [sym_anonymous_function] = STATE(1576), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1319), + [sym_char] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(257), + [sym_keyword] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -65275,68 +65041,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, [266] = { - [sym__expression] = STATE(3541), - [sym_block] = STATE(3541), + [sym__expression] = STATE(3630), + [sym_block] = STATE(3630), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3541), - [sym_nil] = STATE(3541), - [sym__atom] = STATE(3541), - [sym_quoted_atom] = STATE(3541), + [sym_boolean] = STATE(3630), + [sym_nil] = STATE(3630), + [sym__atom] = STATE(3630), + [sym_quoted_atom] = STATE(3630), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3541), - [sym_charlist] = STATE(3541), - [sym_sigil] = STATE(3541), - [sym_keywords] = STATE(2176), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(3541), - [sym_tuple] = STATE(3541), - [sym_bitstring] = STATE(3541), - [sym_map] = STATE(3541), - [sym__nullary_operator] = STATE(3541), - [sym_unary_operator] = STATE(3541), - [sym_binary_operator] = STATE(3541), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3630), + [sym_charlist] = STATE(3630), + [sym_sigil] = STATE(3630), + [sym_keywords] = STATE(2236), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(3630), + [sym_tuple] = STATE(3630), + [sym_bitstring] = STATE(3630), + [sym_map] = STATE(3630), + [sym__nullary_operator] = STATE(3630), + [sym_unary_operator] = STATE(3630), + [sym_binary_operator] = STATE(3630), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3541), - [sym_call] = STATE(3541), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3630), + [sym_call] = STATE(3630), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3541), - [sym_anonymous_function] = STATE(3541), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3630), + [sym_anonymous_function] = STATE(3630), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1335), - [sym_integer] = ACTIONS(1335), - [sym_float] = ACTIONS(1335), - [sym_char] = ACTIONS(1335), + [sym_alias] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_char] = ACTIONS(1323), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1335), + [sym_atom] = ACTIONS(1323), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -65406,59 +65172,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [267] = { - [sym__expression] = STATE(3779), - [sym_block] = STATE(3779), + [sym__expression] = STATE(3985), + [sym_block] = STATE(3985), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3779), - [sym_nil] = STATE(3779), - [sym__atom] = STATE(3779), - [sym_quoted_atom] = STATE(3779), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3779), - [sym_charlist] = STATE(3779), - [sym_sigil] = STATE(3779), - [sym_keywords] = STATE(3366), - [sym_pair] = STATE(3437), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3779), - [sym_tuple] = STATE(3779), - [sym_bitstring] = STATE(3779), - [sym_map] = STATE(3779), - [sym__nullary_operator] = STATE(3779), - [sym_unary_operator] = STATE(3779), - [sym_binary_operator] = STATE(3779), + [sym_boolean] = STATE(3985), + [sym_nil] = STATE(3985), + [sym__atom] = STATE(3985), + [sym_quoted_atom] = STATE(3985), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3985), + [sym_charlist] = STATE(3985), + [sym_sigil] = STATE(3985), + [sym_keywords] = STATE(3194), + [sym_pair] = STATE(3234), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3985), + [sym_tuple] = STATE(3985), + [sym_bitstring] = STATE(3985), + [sym_map] = STATE(3985), + [sym__nullary_operator] = STATE(3985), + [sym_unary_operator] = STATE(3985), + [sym_binary_operator] = STATE(3985), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3779), - [sym_call] = STATE(3779), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3985), + [sym_call] = STATE(3985), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3779), - [sym_anonymous_function] = STATE(3779), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3985), + [sym_anonymous_function] = STATE(3985), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1337), - [sym_integer] = ACTIONS(1337), - [sym_float] = ACTIONS(1337), - [sym_char] = ACTIONS(1337), + [sym_alias] = ACTIONS(1325), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1325), + [sym_char] = ACTIONS(1325), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1337), + [sym_atom] = ACTIONS(1325), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -65528,59 +65294,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [268] = { - [sym__expression] = STATE(1582), - [sym_block] = STATE(1582), + [sym__expression] = STATE(1768), + [sym_block] = STATE(1768), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1582), - [sym_nil] = STATE(1582), - [sym__atom] = STATE(1582), - [sym_quoted_atom] = STATE(1582), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(1768), + [sym_nil] = STATE(1768), + [sym__atom] = STATE(1768), + [sym_quoted_atom] = STATE(1768), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1582), - [sym_charlist] = STATE(1582), - [sym_sigil] = STATE(1582), - [sym_keywords] = STATE(1521), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1582), - [sym_tuple] = STATE(1582), - [sym_bitstring] = STATE(1582), - [sym_map] = STATE(1582), - [sym__nullary_operator] = STATE(1582), - [sym_unary_operator] = STATE(1582), - [sym_binary_operator] = STATE(1582), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1768), + [sym_charlist] = STATE(1768), + [sym_sigil] = STATE(1768), + [sym_keywords] = STATE(1411), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1768), + [sym_tuple] = STATE(1768), + [sym_bitstring] = STATE(1768), + [sym_map] = STATE(1768), + [sym__nullary_operator] = STATE(1768), + [sym_unary_operator] = STATE(1768), + [sym_binary_operator] = STATE(1768), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1582), - [sym_call] = STATE(1582), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1768), + [sym_call] = STATE(1768), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1582), - [sym_anonymous_function] = STATE(1582), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1768), + [sym_anonymous_function] = STATE(1768), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1339), - [sym_integer] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [sym_char] = ACTIONS(1339), + [sym_alias] = ACTIONS(1327), + [sym_integer] = ACTIONS(1327), + [sym_float] = ACTIONS(1327), + [sym_char] = ACTIONS(1327), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1339), + [sym_atom] = ACTIONS(1327), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -65595,7 +65361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(259), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(265), [anon_sym_PLUS] = ACTIONS(267), [anon_sym_DASH] = ACTIONS(267), @@ -65657,17 +65423,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4524), [sym__atom] = STATE(4524), [sym_quoted_atom] = STATE(4524), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4524), [sym_charlist] = STATE(4524), [sym_sigil] = STATE(4524), - [sym_keywords] = STATE(3366), - [sym_pair] = STATE(4309), - [sym__keyword] = STATE(622), - [sym_quoted_keyword] = STATE(622), + [sym_keywords] = STATE(3194), + [sym_pair] = STATE(4081), + [sym__keyword] = STATE(507), + [sym_quoted_keyword] = STATE(507), [sym_list] = STATE(4524), [sym_tuple] = STATE(4524), [sym_bitstring] = STATE(4524), @@ -65678,31 +65444,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4524), [sym_call] = STATE(4524), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4524), [sym_anonymous_function] = STATE(4524), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1343), - [sym_integer] = ACTIONS(1343), - [sym_float] = ACTIONS(1343), - [sym_char] = ACTIONS(1343), + [sym_alias] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1329), + [sym_char] = ACTIONS(1329), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1343), + [sym_atom] = ACTIONS(1329), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -65714,18 +65480,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(1065), - [sym_keyword] = ACTIONS(1345), + [sym_keyword] = ACTIONS(1331), [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -65767,7 +65533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, @@ -65779,17 +65545,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4519), [sym__atom] = STATE(4519), [sym_quoted_atom] = STATE(4519), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4519), [sym_charlist] = STATE(4519), [sym_sigil] = STATE(4519), - [sym_keywords] = STATE(3392), - [sym_pair] = STATE(4309), - [sym__keyword] = STATE(622), - [sym_quoted_keyword] = STATE(622), + [sym_keywords] = STATE(3195), + [sym_pair] = STATE(4081), + [sym__keyword] = STATE(507), + [sym_quoted_keyword] = STATE(507), [sym_list] = STATE(4519), [sym_tuple] = STATE(4519), [sym_bitstring] = STATE(4519), @@ -65800,31 +65566,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4519), [sym_call] = STATE(4519), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4519), [sym_anonymous_function] = STATE(4519), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1355), - [sym_integer] = ACTIONS(1355), - [sym_float] = ACTIONS(1355), - [sym_char] = ACTIONS(1355), + [sym_alias] = ACTIONS(1341), + [sym_integer] = ACTIONS(1341), + [sym_float] = ACTIONS(1341), + [sym_char] = ACTIONS(1341), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1355), + [sym_atom] = ACTIONS(1341), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -65836,18 +65602,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(1065), - [sym_keyword] = ACTIONS(1345), + [sym_keyword] = ACTIONS(1331), [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -65889,64 +65655,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [271] = { - [sym__expression] = STATE(2898), - [sym_block] = STATE(2898), + [sym__expression] = STATE(2380), + [sym_block] = STATE(2380), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2898), - [sym_nil] = STATE(2898), - [sym__atom] = STATE(2898), - [sym_quoted_atom] = STATE(2898), + [sym_boolean] = STATE(2380), + [sym_nil] = STATE(2380), + [sym__atom] = STATE(2380), + [sym_quoted_atom] = STATE(2380), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2898), - [sym_charlist] = STATE(2898), - [sym_sigil] = STATE(2898), - [sym_keywords] = STATE(2219), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2898), - [sym_tuple] = STATE(2898), - [sym_bitstring] = STATE(2898), - [sym_map] = STATE(2898), - [sym__nullary_operator] = STATE(2898), - [sym_unary_operator] = STATE(2898), - [sym_binary_operator] = STATE(2898), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2380), + [sym_charlist] = STATE(2380), + [sym_sigil] = STATE(2380), + [sym_keywords] = STATE(2175), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2380), + [sym_tuple] = STATE(2380), + [sym_bitstring] = STATE(2380), + [sym_map] = STATE(2380), + [sym__nullary_operator] = STATE(2380), + [sym_unary_operator] = STATE(2380), + [sym_binary_operator] = STATE(2380), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2898), - [sym_call] = STATE(2898), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2380), + [sym_call] = STATE(2380), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2898), - [sym_anonymous_function] = STATE(2898), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2380), + [sym_anonymous_function] = STATE(2380), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [sym_char] = ACTIONS(1357), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1357), + [sym_atom] = ACTIONS(1343), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -66016,59 +65782,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [272] = { - [sym__expression] = STATE(4494), - [sym_block] = STATE(4494), + [sym__expression] = STATE(4463), + [sym_block] = STATE(4463), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4494), - [sym_nil] = STATE(4494), - [sym__atom] = STATE(4494), - [sym_quoted_atom] = STATE(4494), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4494), - [sym_charlist] = STATE(4494), - [sym_sigil] = STATE(4494), - [sym_keywords] = STATE(4493), - [sym_pair] = STATE(4055), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4494), - [sym_tuple] = STATE(4494), - [sym_bitstring] = STATE(4494), - [sym_map] = STATE(4494), - [sym__nullary_operator] = STATE(4494), - [sym_unary_operator] = STATE(4494), - [sym_binary_operator] = STATE(4494), + [sym_boolean] = STATE(4463), + [sym_nil] = STATE(4463), + [sym__atom] = STATE(4463), + [sym_quoted_atom] = STATE(4463), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4463), + [sym_charlist] = STATE(4463), + [sym_sigil] = STATE(4463), + [sym_keywords] = STATE(4460), + [sym_pair] = STATE(4096), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4463), + [sym_tuple] = STATE(4463), + [sym_bitstring] = STATE(4463), + [sym_map] = STATE(4463), + [sym__nullary_operator] = STATE(4463), + [sym_unary_operator] = STATE(4463), + [sym_binary_operator] = STATE(4463), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4494), - [sym_call] = STATE(4494), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4463), + [sym_call] = STATE(4463), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4494), - [sym_anonymous_function] = STATE(4494), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4463), + [sym_anonymous_function] = STATE(4463), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(1359), - [sym_integer] = ACTIONS(1359), - [sym_float] = ACTIONS(1359), - [sym_char] = ACTIONS(1359), + [sym_alias] = ACTIONS(1345), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1345), + [sym_char] = ACTIONS(1345), [anon_sym_true] = ACTIONS(1097), [anon_sym_false] = ACTIONS(1097), [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(1359), + [sym_atom] = ACTIONS(1345), [anon_sym_DQUOTE] = ACTIONS(1101), [anon_sym_SQUOTE] = ACTIONS(1103), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), @@ -66138,59 +65904,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [273] = { - [sym__expression] = STATE(4485), - [sym_block] = STATE(4485), + [sym__expression] = STATE(4452), + [sym_block] = STATE(4452), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4485), - [sym_nil] = STATE(4485), - [sym__atom] = STATE(4485), - [sym_quoted_atom] = STATE(4485), - [sym__quoted_i_double] = STATE(4204), - [sym__quoted_i_single] = STATE(4205), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4485), - [sym_charlist] = STATE(4485), - [sym_sigil] = STATE(4485), - [sym_keywords] = STATE(4484), - [sym_pair] = STATE(4055), - [sym__keyword] = STATE(909), - [sym_quoted_keyword] = STATE(909), - [sym_list] = STATE(4485), - [sym_tuple] = STATE(4485), - [sym_bitstring] = STATE(4485), - [sym_map] = STATE(4485), - [sym__nullary_operator] = STATE(4485), - [sym_unary_operator] = STATE(4485), - [sym_binary_operator] = STATE(4485), + [sym_boolean] = STATE(4452), + [sym_nil] = STATE(4452), + [sym__atom] = STATE(4452), + [sym_quoted_atom] = STATE(4452), + [sym__quoted_i_double] = STATE(4075), + [sym__quoted_i_single] = STATE(4074), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4452), + [sym_charlist] = STATE(4452), + [sym_sigil] = STATE(4452), + [sym_keywords] = STATE(4449), + [sym_pair] = STATE(4096), + [sym__keyword] = STATE(605), + [sym_quoted_keyword] = STATE(605), + [sym_list] = STATE(4452), + [sym_tuple] = STATE(4452), + [sym_bitstring] = STATE(4452), + [sym_map] = STATE(4452), + [sym__nullary_operator] = STATE(4452), + [sym_unary_operator] = STATE(4452), + [sym_binary_operator] = STATE(4452), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4485), - [sym_call] = STATE(4485), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4452), + [sym_call] = STATE(4452), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4485), - [sym_anonymous_function] = STATE(4485), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4452), + [sym_anonymous_function] = STATE(4452), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(1361), - [sym_integer] = ACTIONS(1361), - [sym_float] = ACTIONS(1361), - [sym_char] = ACTIONS(1361), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), [anon_sym_true] = ACTIONS(1097), [anon_sym_false] = ACTIONS(1097), [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(1361), + [sym_atom] = ACTIONS(1347), [anon_sym_DQUOTE] = ACTIONS(1101), [anon_sym_SQUOTE] = ACTIONS(1103), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), @@ -66260,59 +66026,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [274] = { - [sym__expression] = STATE(3764), - [sym_block] = STATE(3764), + [sym__expression] = STATE(3991), + [sym_block] = STATE(3991), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3764), - [sym_nil] = STATE(3764), - [sym__atom] = STATE(3764), - [sym_quoted_atom] = STATE(3764), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3764), - [sym_charlist] = STATE(3764), - [sym_sigil] = STATE(3764), - [sym_keywords] = STATE(3392), - [sym_pair] = STATE(3437), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3764), - [sym_tuple] = STATE(3764), - [sym_bitstring] = STATE(3764), - [sym_map] = STATE(3764), - [sym__nullary_operator] = STATE(3764), - [sym_unary_operator] = STATE(3764), - [sym_binary_operator] = STATE(3764), + [sym_boolean] = STATE(3991), + [sym_nil] = STATE(3991), + [sym__atom] = STATE(3991), + [sym_quoted_atom] = STATE(3991), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3991), + [sym_charlist] = STATE(3991), + [sym_sigil] = STATE(3991), + [sym_keywords] = STATE(3195), + [sym_pair] = STATE(3234), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3991), + [sym_tuple] = STATE(3991), + [sym_bitstring] = STATE(3991), + [sym_map] = STATE(3991), + [sym__nullary_operator] = STATE(3991), + [sym_unary_operator] = STATE(3991), + [sym_binary_operator] = STATE(3991), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3764), - [sym_call] = STATE(3764), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3991), + [sym_call] = STATE(3991), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3764), - [sym_anonymous_function] = STATE(3764), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3991), + [sym_anonymous_function] = STATE(3991), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1363), - [sym_integer] = ACTIONS(1363), - [sym_float] = ACTIONS(1363), - [sym_char] = ACTIONS(1363), + [sym_alias] = ACTIONS(1349), + [sym_integer] = ACTIONS(1349), + [sym_float] = ACTIONS(1349), + [sym_char] = ACTIONS(1349), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1363), + [sym_atom] = ACTIONS(1349), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -66382,59 +66148,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [275] = { - [sym__expression] = STATE(2962), - [sym_block] = STATE(2962), + [sym__expression] = STATE(3309), + [sym_block] = STATE(3309), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2962), - [sym_nil] = STATE(2962), - [sym__atom] = STATE(2962), - [sym_quoted_atom] = STATE(2962), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(3309), + [sym_nil] = STATE(3309), + [sym__atom] = STATE(3309), + [sym_quoted_atom] = STATE(3309), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2962), - [sym_charlist] = STATE(2962), - [sym_sigil] = STATE(2962), - [sym_keywords] = STATE(1521), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(2962), - [sym_tuple] = STATE(2962), - [sym_bitstring] = STATE(2962), - [sym_map] = STATE(2962), - [sym__nullary_operator] = STATE(2962), - [sym_unary_operator] = STATE(2962), - [sym_binary_operator] = STATE(2962), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3309), + [sym_charlist] = STATE(3309), + [sym_sigil] = STATE(3309), + [sym_keywords] = STATE(1411), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(3309), + [sym_tuple] = STATE(3309), + [sym_bitstring] = STATE(3309), + [sym_map] = STATE(3309), + [sym__nullary_operator] = STATE(3309), + [sym_unary_operator] = STATE(3309), + [sym_binary_operator] = STATE(3309), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2962), - [sym_call] = STATE(2962), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3309), + [sym_call] = STATE(3309), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2962), - [sym_anonymous_function] = STATE(2962), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3309), + [sym_anonymous_function] = STATE(3309), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(450), [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), + [sym_alias] = ACTIONS(1351), + [sym_integer] = ACTIONS(1351), + [sym_float] = ACTIONS(1351), + [sym_char] = ACTIONS(1351), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1365), + [sym_atom] = ACTIONS(1351), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -66449,7 +66215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(456), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(458), [anon_sym_PLUS] = ACTIONS(463), [anon_sym_DASH] = ACTIONS(463), @@ -66504,82 +66270,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [276] = { - [sym__expression] = STATE(1749), - [sym_block] = STATE(1749), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1749), - [sym_nil] = STATE(1749), - [sym__atom] = STATE(1749), - [sym_quoted_atom] = STATE(1749), - [sym__quoted_i_double] = STATE(1194), - [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1749), - [sym_charlist] = STATE(1749), - [sym_sigil] = STATE(1749), - [sym_keywords] = STATE(1468), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1749), - [sym_tuple] = STATE(1749), - [sym_bitstring] = STATE(1749), - [sym_map] = STATE(1749), - [sym__nullary_operator] = STATE(1749), - [sym_unary_operator] = STATE(1749), - [sym_binary_operator] = STATE(1749), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1749), - [sym_call] = STATE(1749), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1749), - [sym_anonymous_function] = STATE(1749), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1367), - [sym_integer] = ACTIONS(1367), - [sym_float] = ACTIONS(1367), - [sym_char] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [sym__terminator] = STATE(351), + [sym__expression] = STATE(3038), + [sym_block] = STATE(3038), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(3038), + [sym_nil] = STATE(3038), + [sym__atom] = STATE(3038), + [sym_quoted_atom] = STATE(3038), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(3038), + [sym_charlist] = STATE(3038), + [sym_sigil] = STATE(3038), + [sym_list] = STATE(3038), + [sym_tuple] = STATE(3038), + [sym_bitstring] = STATE(3038), + [sym_map] = STATE(3038), + [sym__nullary_operator] = STATE(3038), + [sym_unary_operator] = STATE(3038), + [sym_binary_operator] = STATE(3038), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(3038), + [sym_call] = STATE(3038), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(3038), + [sym_body] = STATE(4825), + [sym_anonymous_function] = STATE(3038), + [aux_sym__terminator_repeat1] = STATE(1034), + [aux_sym__terminator_token1] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RPAREN] = ACTIONS(1039), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(1357), + [sym_integer] = ACTIONS(1357), + [sym_float] = ACTIONS(1357), + [sym_char] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [sym_keyword] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -66617,56 +66383,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(958), }, [277] = { - [sym__expression] = STATE(2361), - [sym_block] = STATE(2361), + [sym__expression] = STATE(2509), + [sym_block] = STATE(2509), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2361), - [sym_nil] = STATE(2361), - [sym__atom] = STATE(2361), - [sym_quoted_atom] = STATE(2361), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2361), - [sym_charlist] = STATE(2361), - [sym_sigil] = STATE(2361), - [sym_keywords] = STATE(1219), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2361), - [sym_tuple] = STATE(2361), - [sym_bitstring] = STATE(2361), - [sym_map] = STATE(2361), - [sym__nullary_operator] = STATE(2361), - [sym_unary_operator] = STATE(2361), - [sym_binary_operator] = STATE(2361), + [sym_boolean] = STATE(2509), + [sym_nil] = STATE(2509), + [sym__atom] = STATE(2509), + [sym_quoted_atom] = STATE(2509), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2509), + [sym_charlist] = STATE(2509), + [sym_sigil] = STATE(2509), + [sym_keywords] = STATE(1283), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2509), + [sym_tuple] = STATE(2509), + [sym_bitstring] = STATE(2509), + [sym_map] = STATE(2509), + [sym__nullary_operator] = STATE(2509), + [sym_unary_operator] = STATE(2509), + [sym_binary_operator] = STATE(2509), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2361), - [sym_call] = STATE(2361), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2509), + [sym_call] = STATE(2509), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2361), - [sym_anonymous_function] = STATE(2361), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2509), + [sym_anonymous_function] = STATE(2509), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), @@ -66748,59 +66514,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [278] = { - [sym__expression] = STATE(2898), - [sym_block] = STATE(2898), + [sym__expression] = STATE(2380), + [sym_block] = STATE(2380), [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2898), - [sym_nil] = STATE(2898), - [sym__atom] = STATE(2898), - [sym_quoted_atom] = STATE(2898), + [sym_boolean] = STATE(2380), + [sym_nil] = STATE(2380), + [sym__atom] = STATE(2380), + [sym_quoted_atom] = STATE(2380), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2898), - [sym_charlist] = STATE(2898), - [sym_sigil] = STATE(2898), - [sym_keywords] = STATE(2222), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), - [sym_list] = STATE(2898), - [sym_tuple] = STATE(2898), - [sym_bitstring] = STATE(2898), - [sym_map] = STATE(2898), - [sym__nullary_operator] = STATE(2898), - [sym_unary_operator] = STATE(2898), - [sym_binary_operator] = STATE(2898), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2380), + [sym_charlist] = STATE(2380), + [sym_sigil] = STATE(2380), + [sym_keywords] = STATE(2147), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), + [sym_list] = STATE(2380), + [sym_tuple] = STATE(2380), + [sym_bitstring] = STATE(2380), + [sym_map] = STATE(2380), + [sym__nullary_operator] = STATE(2380), + [sym_unary_operator] = STATE(2380), + [sym_binary_operator] = STATE(2380), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2898), - [sym_call] = STATE(2898), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(2380), + [sym_call] = STATE(2380), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2898), - [sym_anonymous_function] = STATE(2898), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2380), + [sym_anonymous_function] = STATE(2380), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [sym_char] = ACTIONS(1357), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1357), + [sym_atom] = ACTIONS(1343), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -66870,47 +66636,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [279] = { - [sym__expression] = STATE(4161), - [sym_block] = STATE(4161), + [sym__expression] = STATE(4165), + [sym_block] = STATE(4165), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4161), - [sym_nil] = STATE(4161), - [sym__atom] = STATE(4161), - [sym_quoted_atom] = STATE(4161), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4161), - [sym_charlist] = STATE(4161), - [sym_sigil] = STATE(4161), - [sym_keywords] = STATE(4094), - [sym_pair] = STATE(3941), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4161), - [sym_tuple] = STATE(4161), - [sym_bitstring] = STATE(4161), - [sym_map] = STATE(4161), - [sym__nullary_operator] = STATE(4161), - [sym_unary_operator] = STATE(4161), - [sym_binary_operator] = STATE(4161), + [sym_boolean] = STATE(4165), + [sym_nil] = STATE(4165), + [sym__atom] = STATE(4165), + [sym_quoted_atom] = STATE(4165), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4165), + [sym_charlist] = STATE(4165), + [sym_sigil] = STATE(4165), + [sym_keywords] = STATE(4166), + [sym_pair] = STATE(3729), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4165), + [sym_tuple] = STATE(4165), + [sym_bitstring] = STATE(4165), + [sym_map] = STATE(4165), + [sym__nullary_operator] = STATE(4165), + [sym_unary_operator] = STATE(4165), + [sym_binary_operator] = STATE(4165), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4161), - [sym_call] = STATE(4161), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4165), + [sym_call] = STATE(4165), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4161), - [sym_anonymous_function] = STATE(4161), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4165), + [sym_anonymous_function] = STATE(4165), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), @@ -66992,47 +66758,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [280] = { - [sym__expression] = STATE(2361), - [sym_block] = STATE(2361), + [sym__expression] = STATE(2509), + [sym_block] = STATE(2509), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2361), - [sym_nil] = STATE(2361), - [sym__atom] = STATE(2361), - [sym_quoted_atom] = STATE(2361), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2361), - [sym_charlist] = STATE(2361), - [sym_sigil] = STATE(2361), - [sym_keywords] = STATE(1312), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2361), - [sym_tuple] = STATE(2361), - [sym_bitstring] = STATE(2361), - [sym_map] = STATE(2361), - [sym__nullary_operator] = STATE(2361), - [sym_unary_operator] = STATE(2361), - [sym_binary_operator] = STATE(2361), + [sym_boolean] = STATE(2509), + [sym_nil] = STATE(2509), + [sym__atom] = STATE(2509), + [sym_quoted_atom] = STATE(2509), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2509), + [sym_charlist] = STATE(2509), + [sym_sigil] = STATE(2509), + [sym_keywords] = STATE(1249), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2509), + [sym_tuple] = STATE(2509), + [sym_bitstring] = STATE(2509), + [sym_map] = STATE(2509), + [sym__nullary_operator] = STATE(2509), + [sym_unary_operator] = STATE(2509), + [sym_binary_operator] = STATE(2509), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2361), - [sym_call] = STATE(2361), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2509), + [sym_call] = STATE(2509), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2361), - [sym_anonymous_function] = STATE(2361), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2509), + [sym_anonymous_function] = STATE(2509), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), @@ -67114,82 +66880,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [281] = { - [sym__expression] = STATE(1754), - [sym_block] = STATE(1754), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1754), - [sym_nil] = STATE(1754), - [sym__atom] = STATE(1754), - [sym_quoted_atom] = STATE(1754), - [sym__quoted_i_double] = STATE(1194), - [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1754), - [sym_charlist] = STATE(1754), - [sym_sigil] = STATE(1754), - [sym_keywords] = STATE(1467), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1754), - [sym_tuple] = STATE(1754), - [sym_bitstring] = STATE(1754), - [sym_map] = STATE(1754), - [sym__nullary_operator] = STATE(1754), - [sym_unary_operator] = STATE(1754), - [sym_binary_operator] = STATE(1754), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1754), - [sym_call] = STATE(1754), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1754), - [sym_anonymous_function] = STATE(1754), + [sym__expression] = STATE(4178), + [sym_block] = STATE(4178), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4178), + [sym_nil] = STATE(4178), + [sym__atom] = STATE(4178), + [sym_quoted_atom] = STATE(4178), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4178), + [sym_charlist] = STATE(4178), + [sym_sigil] = STATE(4178), + [sym_keywords] = STATE(4050), + [sym_pair] = STATE(3729), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4178), + [sym_tuple] = STATE(4178), + [sym_bitstring] = STATE(4178), + [sym_map] = STATE(4178), + [sym__nullary_operator] = STATE(4178), + [sym_unary_operator] = STATE(4178), + [sym_binary_operator] = STATE(4178), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4178), + [sym_call] = STATE(4178), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4178), + [sym_anonymous_function] = STATE(4178), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1377), [sym_integer] = ACTIONS(1377), [sym_float] = ACTIONS(1377), [sym_char] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), [sym_atom] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [sym_keyword] = ACTIONS(259), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(824), + [sym_keyword] = ACTIONS(87), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -67227,68 +66993,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(844), }, [282] = { - [sym__terminator] = STATE(350), - [sym__expression] = STATE(2972), - [sym_block] = STATE(2972), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(2972), - [sym_nil] = STATE(2972), - [sym__atom] = STATE(2972), - [sym_quoted_atom] = STATE(2972), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2972), - [sym_charlist] = STATE(2972), - [sym_sigil] = STATE(2972), - [sym_list] = STATE(2972), - [sym_tuple] = STATE(2972), - [sym_bitstring] = STATE(2972), - [sym_map] = STATE(2972), - [sym__nullary_operator] = STATE(2972), - [sym_unary_operator] = STATE(2972), - [sym_binary_operator] = STATE(2972), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2972), - [sym_call] = STATE(2972), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2972), - [sym_body] = STATE(4827), - [sym_anonymous_function] = STATE(2972), - [aux_sym__terminator_repeat1] = STATE(1032), - [aux_sym__terminator_token1] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), + [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [sym_char] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(920), + [sym_integer] = ACTIONS(920), + [sym_float] = ACTIONS(920), + [sym_char] = ACTIONS(920), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1385), + [sym_atom] = ACTIONS(920), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -67299,18 +67061,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(938), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -67348,69 +67110,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_end] = ACTIONS(1041), + [anon_sym_after] = ACTIONS(1379), + [anon_sym_catch] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1379), [anon_sym_fn] = ACTIONS(954), + [anon_sym_rescue] = ACTIONS(1379), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [283] = { - [sym__expression] = STATE(4000), - [sym_block] = STATE(4000), + [sym__expression] = STATE(3699), + [sym_block] = STATE(3699), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4000), - [sym_nil] = STATE(4000), - [sym__atom] = STATE(4000), - [sym_quoted_atom] = STATE(4000), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4000), - [sym_charlist] = STATE(4000), - [sym_sigil] = STATE(4000), - [sym_keywords] = STATE(1571), - [sym_pair] = STATE(3466), - [sym__keyword] = STATE(713), - [sym_quoted_keyword] = STATE(713), - [sym_list] = STATE(4000), - [sym_tuple] = STATE(4000), - [sym_bitstring] = STATE(4000), - [sym_map] = STATE(4000), - [sym__nullary_operator] = STATE(4000), - [sym_unary_operator] = STATE(4000), - [sym_binary_operator] = STATE(4000), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4000), - [sym_call] = STATE(4000), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3699), + [sym_nil] = STATE(3699), + [sym__atom] = STATE(3699), + [sym_quoted_atom] = STATE(3699), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3699), + [sym_charlist] = STATE(3699), + [sym_sigil] = STATE(3699), + [sym_keywords] = STATE(1698), + [sym_pair] = STATE(3442), + [sym__keyword] = STATE(530), + [sym_quoted_keyword] = STATE(530), + [sym_list] = STATE(3699), + [sym_tuple] = STATE(3699), + [sym_bitstring] = STATE(3699), + [sym_map] = STATE(3699), + [sym__nullary_operator] = STATE(3699), + [sym_unary_operator] = STATE(3699), + [sym_binary_operator] = STATE(3699), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3699), + [sym_call] = STATE(3699), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4000), - [sym_anonymous_function] = STATE(4000), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3699), + [sym_anonymous_function] = STATE(3699), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1399), - [sym_integer] = ACTIONS(1399), - [sym_float] = ACTIONS(1399), - [sym_char] = ACTIONS(1399), + [sym_alias] = ACTIONS(1383), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1383), + [sym_char] = ACTIONS(1383), [anon_sym_true] = ACTIONS(69), [anon_sym_false] = ACTIONS(69), [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(1399), + [sym_atom] = ACTIONS(1383), [anon_sym_DQUOTE] = ACTIONS(73), [anon_sym_SQUOTE] = ACTIONS(75), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), @@ -67422,7 +67188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(690), - [sym_keyword] = ACTIONS(1401), + [sym_keyword] = ACTIONS(1385), [anon_sym_LT_LT] = ACTIONS(89), [anon_sym_PERCENT] = ACTIONS(91), [anon_sym_DOT_DOT] = ACTIONS(93), @@ -67480,59 +67246,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [284] = { - [sym__expression] = STATE(4006), - [sym_block] = STATE(4006), + [sym__expression] = STATE(3686), + [sym_block] = STATE(3686), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4006), - [sym_nil] = STATE(4006), - [sym__atom] = STATE(4006), - [sym_quoted_atom] = STATE(4006), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4006), - [sym_charlist] = STATE(4006), - [sym_sigil] = STATE(4006), - [sym_keywords] = STATE(1794), - [sym_pair] = STATE(3466), - [sym__keyword] = STATE(713), - [sym_quoted_keyword] = STATE(713), - [sym_list] = STATE(4006), - [sym_tuple] = STATE(4006), - [sym_bitstring] = STATE(4006), - [sym_map] = STATE(4006), - [sym__nullary_operator] = STATE(4006), - [sym_unary_operator] = STATE(4006), - [sym_binary_operator] = STATE(4006), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4006), - [sym_call] = STATE(4006), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3686), + [sym_nil] = STATE(3686), + [sym__atom] = STATE(3686), + [sym_quoted_atom] = STATE(3686), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3686), + [sym_charlist] = STATE(3686), + [sym_sigil] = STATE(3686), + [sym_keywords] = STATE(1699), + [sym_pair] = STATE(3442), + [sym__keyword] = STATE(530), + [sym_quoted_keyword] = STATE(530), + [sym_list] = STATE(3686), + [sym_tuple] = STATE(3686), + [sym_bitstring] = STATE(3686), + [sym_map] = STATE(3686), + [sym__nullary_operator] = STATE(3686), + [sym_unary_operator] = STATE(3686), + [sym_binary_operator] = STATE(3686), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3686), + [sym_call] = STATE(3686), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4006), - [sym_anonymous_function] = STATE(4006), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3686), + [sym_anonymous_function] = STATE(3686), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1403), - [sym_integer] = ACTIONS(1403), - [sym_float] = ACTIONS(1403), - [sym_char] = ACTIONS(1403), + [sym_alias] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1387), + [sym_char] = ACTIONS(1387), [anon_sym_true] = ACTIONS(69), [anon_sym_false] = ACTIONS(69), [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(1403), + [sym_atom] = ACTIONS(1387), [anon_sym_DQUOTE] = ACTIONS(73), [anon_sym_SQUOTE] = ACTIONS(75), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), @@ -67544,7 +67310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(690), - [sym_keyword] = ACTIONS(1401), + [sym_keyword] = ACTIONS(1385), [anon_sym_LT_LT] = ACTIONS(89), [anon_sym_PERCENT] = ACTIONS(91), [anon_sym_DOT_DOT] = ACTIONS(93), @@ -67603,58 +67369,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [285] = { [sym__terminator] = STATE(350), - [sym__expression] = STATE(2972), - [sym_block] = STATE(2972), + [sym__expression] = STATE(3351), + [sym_block] = STATE(3351), [sym_identifier] = STATE(54), - [sym_boolean] = STATE(2972), - [sym_nil] = STATE(2972), - [sym__atom] = STATE(2972), - [sym_quoted_atom] = STATE(2972), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(3351), + [sym_nil] = STATE(3351), + [sym__atom] = STATE(3351), + [sym_quoted_atom] = STATE(3351), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2972), - [sym_charlist] = STATE(2972), - [sym_sigil] = STATE(2972), - [sym_list] = STATE(2972), - [sym_tuple] = STATE(2972), - [sym_bitstring] = STATE(2972), - [sym_map] = STATE(2972), - [sym__nullary_operator] = STATE(2972), - [sym_unary_operator] = STATE(2972), - [sym_binary_operator] = STATE(2972), + [sym_string] = STATE(3351), + [sym_charlist] = STATE(3351), + [sym_sigil] = STATE(3351), + [sym_list] = STATE(3351), + [sym_tuple] = STATE(3351), + [sym_bitstring] = STATE(3351), + [sym_map] = STATE(3351), + [sym__nullary_operator] = STATE(3351), + [sym_unary_operator] = STATE(3351), + [sym_binary_operator] = STATE(3351), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2972), - [sym_call] = STATE(2972), + [sym_dot] = STATE(3351), + [sym_call] = STATE(3351), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2972), - [sym_body] = STATE(4828), - [sym_anonymous_function] = STATE(2972), - [aux_sym__terminator_repeat1] = STATE(1032), - [aux_sym__terminator_token1] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1381), + [sym_access_call] = STATE(3351), + [sym_body] = STATE(4825), + [sym_anonymous_function] = STATE(3351), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(1385), - [sym_integer] = ACTIONS(1385), - [sym_float] = ACTIONS(1385), - [sym_char] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1385), + [sym_atom] = ACTIONS(1395), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -67665,18 +67431,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -67719,64 +67485,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [286] = { - [sym__expression] = STATE(4188), - [sym_block] = STATE(4188), + [sym__expression] = STATE(4363), + [sym_block] = STATE(4363), [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4188), - [sym_nil] = STATE(4188), - [sym__atom] = STATE(4188), - [sym_quoted_atom] = STATE(4188), - [sym__quoted_i_double] = STATE(3654), - [sym__quoted_i_single] = STATE(3655), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4188), - [sym_charlist] = STATE(4188), - [sym_sigil] = STATE(4188), - [sym_keywords] = STATE(4187), - [sym_pair] = STATE(3846), + [sym_boolean] = STATE(4363), + [sym_nil] = STATE(4363), + [sym__atom] = STATE(4363), + [sym_quoted_atom] = STATE(4363), + [sym__quoted_i_double] = STATE(4040), + [sym__quoted_i_single] = STATE(4039), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4363), + [sym_charlist] = STATE(4363), + [sym_sigil] = STATE(4363), + [sym_keywords] = STATE(4364), + [sym_pair] = STATE(3932), [sym__keyword] = STATE(665), [sym_quoted_keyword] = STATE(665), - [sym_list] = STATE(4188), - [sym_tuple] = STATE(4188), - [sym_bitstring] = STATE(4188), - [sym_map] = STATE(4188), - [sym__nullary_operator] = STATE(4188), - [sym_unary_operator] = STATE(4188), - [sym_binary_operator] = STATE(4188), + [sym_list] = STATE(4363), + [sym_tuple] = STATE(4363), + [sym_bitstring] = STATE(4363), + [sym_map] = STATE(4363), + [sym__nullary_operator] = STATE(4363), + [sym_unary_operator] = STATE(4363), + [sym_binary_operator] = STATE(4363), [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4188), - [sym_call] = STATE(4188), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym_dot] = STATE(4363), + [sym_call] = STATE(4363), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4188), - [sym_anonymous_function] = STATE(4188), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4363), + [sym_anonymous_function] = STATE(4363), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(1405), - [sym_integer] = ACTIONS(1405), - [sym_float] = ACTIONS(1405), - [sym_char] = ACTIONS(1405), + [sym_alias] = ACTIONS(1407), + [sym_integer] = ACTIONS(1407), + [sym_float] = ACTIONS(1407), + [sym_char] = ACTIONS(1407), [anon_sym_true] = ACTIONS(19), [anon_sym_false] = ACTIONS(19), [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(1405), + [sym_atom] = ACTIONS(1407), [anon_sym_DQUOTE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), @@ -67788,7 +67554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(37), - [sym_keyword] = ACTIONS(1407), + [sym_keyword] = ACTIONS(1409), [anon_sym_LT_LT] = ACTIONS(39), [anon_sym_PERCENT] = ACTIONS(41), [anon_sym_DOT_DOT] = ACTIONS(43), @@ -67846,43 +67612,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [287] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -67954,12 +67720,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_end] = ACTIONS(1409), + [anon_sym_after] = ACTIONS(1411), + [anon_sym_catch] = ACTIONS(1411), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_end] = ACTIONS(1411), [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1409), + [anon_sym_rescue] = ACTIONS(1411), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -67968,59 +67734,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [288] = { - [sym__expression] = STATE(3131), - [sym_block] = STATE(3131), + [sym__expression] = STATE(3283), + [sym_block] = STATE(3283), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3131), - [sym_nil] = STATE(3131), - [sym__atom] = STATE(3131), - [sym_quoted_atom] = STATE(3131), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3131), - [sym_charlist] = STATE(3131), - [sym_sigil] = STATE(3131), - [sym_keywords] = STATE(3132), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(3131), - [sym_tuple] = STATE(3131), - [sym_bitstring] = STATE(3131), - [sym_map] = STATE(3131), - [sym__nullary_operator] = STATE(3131), - [sym_unary_operator] = STATE(3131), - [sym_binary_operator] = STATE(3131), + [sym_boolean] = STATE(3283), + [sym_nil] = STATE(3283), + [sym__atom] = STATE(3283), + [sym_quoted_atom] = STATE(3283), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3283), + [sym_charlist] = STATE(3283), + [sym_sigil] = STATE(3283), + [sym_keywords] = STATE(3284), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(3283), + [sym_tuple] = STATE(3283), + [sym_bitstring] = STATE(3283), + [sym_map] = STATE(3283), + [sym__nullary_operator] = STATE(3283), + [sym_unary_operator] = STATE(3283), + [sym_binary_operator] = STATE(3283), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3131), - [sym_call] = STATE(3131), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(3283), + [sym_call] = STATE(3283), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3131), - [sym_anonymous_function] = STATE(3131), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3283), + [sym_anonymous_function] = STATE(3283), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(486), [aux_sym_identifier_token1] = ACTIONS(488), [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1411), - [sym_integer] = ACTIONS(1411), - [sym_float] = ACTIONS(1411), - [sym_char] = ACTIONS(1411), + [sym_alias] = ACTIONS(1413), + [sym_integer] = ACTIONS(1413), + [sym_float] = ACTIONS(1413), + [sym_char] = ACTIONS(1413), [anon_sym_true] = ACTIONS(492), [anon_sym_false] = ACTIONS(492), [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1411), + [sym_atom] = ACTIONS(1413), [anon_sym_DQUOTE] = ACTIONS(496), [anon_sym_SQUOTE] = ACTIONS(498), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), @@ -68035,7 +67801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(510), [anon_sym_LT_LT] = ACTIONS(512), [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1415), [anon_sym_AMP] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(518), @@ -68090,43 +67856,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [289] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -68198,12 +67964,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1415), - [anon_sym_catch] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1415), - [anon_sym_end] = ACTIONS(1415), + [anon_sym_after] = ACTIONS(1417), + [anon_sym_catch] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_end] = ACTIONS(1417), [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1415), + [anon_sym_rescue] = ACTIONS(1417), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -68212,59 +67978,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [290] = { - [sym__expression] = STATE(4443), - [sym_block] = STATE(4443), + [sym__expression] = STATE(4441), + [sym_block] = STATE(4441), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4443), - [sym_nil] = STATE(4443), - [sym__atom] = STATE(4443), - [sym_quoted_atom] = STATE(4443), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4443), - [sym_charlist] = STATE(4443), - [sym_sigil] = STATE(4443), - [sym_keywords] = STATE(6883), - [sym_pair] = STATE(6567), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(4443), - [sym_tuple] = STATE(4443), - [sym_bitstring] = STATE(4443), - [sym_map] = STATE(4443), - [sym__nullary_operator] = STATE(4443), - [sym_unary_operator] = STATE(4443), - [sym_binary_operator] = STATE(4443), + [sym_boolean] = STATE(4441), + [sym_nil] = STATE(4441), + [sym__atom] = STATE(4441), + [sym_quoted_atom] = STATE(4441), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4441), + [sym_charlist] = STATE(4441), + [sym_sigil] = STATE(4441), + [sym_keywords] = STATE(6873), + [sym_pair] = STATE(6594), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(4441), + [sym_tuple] = STATE(4441), + [sym_bitstring] = STATE(4441), + [sym_map] = STATE(4441), + [sym__nullary_operator] = STATE(4441), + [sym_unary_operator] = STATE(4441), + [sym_binary_operator] = STATE(4441), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4443), - [sym_call] = STATE(4443), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4441), + [sym_call] = STATE(4441), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4443), - [sym_anonymous_function] = STATE(4443), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4441), + [sym_anonymous_function] = STATE(4441), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1417), - [sym_integer] = ACTIONS(1417), - [sym_float] = ACTIONS(1417), - [sym_char] = ACTIONS(1417), + [sym_alias] = ACTIONS(1419), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym_char] = ACTIONS(1419), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1417), + [sym_atom] = ACTIONS(1419), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -68334,59 +68100,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [291] = { - [sym__expression] = STATE(1507), - [sym_block] = STATE(1507), + [sym__expression] = STATE(1426), + [sym_block] = STATE(1426), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1507), - [sym_nil] = STATE(1507), - [sym__atom] = STATE(1507), - [sym_quoted_atom] = STATE(1507), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1507), - [sym_charlist] = STATE(1507), - [sym_sigil] = STATE(1507), - [sym_keywords] = STATE(1312), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1507), - [sym_tuple] = STATE(1507), - [sym_bitstring] = STATE(1507), - [sym_map] = STATE(1507), - [sym__nullary_operator] = STATE(1507), - [sym_unary_operator] = STATE(1507), - [sym_binary_operator] = STATE(1507), + [sym_boolean] = STATE(1426), + [sym_nil] = STATE(1426), + [sym__atom] = STATE(1426), + [sym_quoted_atom] = STATE(1426), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1426), + [sym_charlist] = STATE(1426), + [sym_sigil] = STATE(1426), + [sym_keywords] = STATE(1249), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_bitstring] = STATE(1426), + [sym_map] = STATE(1426), + [sym__nullary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_binary_operator] = STATE(1426), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1507), - [sym_call] = STATE(1507), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1426), + [sym_call] = STATE(1426), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1507), - [sym_anonymous_function] = STATE(1507), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1426), + [sym_anonymous_function] = STATE(1426), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1419), - [sym_integer] = ACTIONS(1419), - [sym_float] = ACTIONS(1419), - [sym_char] = ACTIONS(1419), + [sym_alias] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1421), + [sym_char] = ACTIONS(1421), [anon_sym_true] = ACTIONS(195), [anon_sym_false] = ACTIONS(195), [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1419), + [sym_atom] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), @@ -68456,59 +68222,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [292] = { - [sym__expression] = STATE(3926), - [sym_block] = STATE(3926), + [sym__expression] = STATE(3871), + [sym_block] = STATE(3871), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3926), - [sym_nil] = STATE(3926), - [sym__atom] = STATE(3926), - [sym_quoted_atom] = STATE(3926), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3926), - [sym_charlist] = STATE(3926), - [sym_sigil] = STATE(3926), - [sym_keywords] = STATE(3559), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3926), - [sym_tuple] = STATE(3926), - [sym_bitstring] = STATE(3926), - [sym_map] = STATE(3926), - [sym__nullary_operator] = STATE(3926), - [sym_unary_operator] = STATE(3926), - [sym_binary_operator] = STATE(3926), + [sym_boolean] = STATE(3871), + [sym_nil] = STATE(3871), + [sym__atom] = STATE(3871), + [sym_quoted_atom] = STATE(3871), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3871), + [sym_charlist] = STATE(3871), + [sym_sigil] = STATE(3871), + [sym_keywords] = STATE(3672), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3871), + [sym_tuple] = STATE(3871), + [sym_bitstring] = STATE(3871), + [sym_map] = STATE(3871), + [sym__nullary_operator] = STATE(3871), + [sym_unary_operator] = STATE(3871), + [sym_binary_operator] = STATE(3871), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3926), - [sym_call] = STATE(3926), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3871), + [sym_call] = STATE(3871), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3926), - [sym_anonymous_function] = STATE(3926), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3871), + [sym_anonymous_function] = STATE(3871), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(1421), - [sym_integer] = ACTIONS(1421), - [sym_float] = ACTIONS(1421), - [sym_char] = ACTIONS(1421), + [sym_alias] = ACTIONS(1423), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1423), + [sym_char] = ACTIONS(1423), [anon_sym_true] = ACTIONS(598), [anon_sym_false] = ACTIONS(598), [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(1421), + [sym_atom] = ACTIONS(1423), [anon_sym_DQUOTE] = ACTIONS(602), [anon_sym_SQUOTE] = ACTIONS(604), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), @@ -68523,7 +68289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(616), [anon_sym_LT_LT] = ACTIONS(618), [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(624), [anon_sym_DASH] = ACTIONS(624), @@ -68578,59 +68344,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [293] = { - [sym__expression] = STATE(3307), - [sym_block] = STATE(3307), + [sym__expression] = STATE(3150), + [sym_block] = STATE(3150), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3307), - [sym_nil] = STATE(3307), - [sym__atom] = STATE(3307), - [sym_quoted_atom] = STATE(3307), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3307), - [sym_charlist] = STATE(3307), - [sym_sigil] = STATE(3307), - [sym_keywords] = STATE(2942), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(3307), - [sym_tuple] = STATE(3307), - [sym_bitstring] = STATE(3307), - [sym_map] = STATE(3307), - [sym__nullary_operator] = STATE(3307), - [sym_unary_operator] = STATE(3307), - [sym_binary_operator] = STATE(3307), + [sym_boolean] = STATE(3150), + [sym_nil] = STATE(3150), + [sym__atom] = STATE(3150), + [sym_quoted_atom] = STATE(3150), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3150), + [sym_charlist] = STATE(3150), + [sym_sigil] = STATE(3150), + [sym_keywords] = STATE(3449), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(3150), + [sym_tuple] = STATE(3150), + [sym_bitstring] = STATE(3150), + [sym_map] = STATE(3150), + [sym__nullary_operator] = STATE(3150), + [sym_unary_operator] = STATE(3150), + [sym_binary_operator] = STATE(3150), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3307), - [sym_call] = STATE(3307), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(3150), + [sym_call] = STATE(3150), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3307), - [sym_anonymous_function] = STATE(3307), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3150), + [sym_anonymous_function] = STATE(3150), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(486), [aux_sym_identifier_token1] = ACTIONS(488), [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1425), - [sym_integer] = ACTIONS(1425), - [sym_float] = ACTIONS(1425), - [sym_char] = ACTIONS(1425), + [sym_alias] = ACTIONS(1427), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym_char] = ACTIONS(1427), [anon_sym_true] = ACTIONS(492), [anon_sym_false] = ACTIONS(492), [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1425), + [sym_atom] = ACTIONS(1427), [anon_sym_DQUOTE] = ACTIONS(496), [anon_sym_SQUOTE] = ACTIONS(498), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), @@ -68645,7 +68411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(510), [anon_sym_LT_LT] = ACTIONS(512), [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1415), [anon_sym_AMP] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(518), @@ -68700,43 +68466,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [294] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -68808,12 +68574,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1427), - [anon_sym_catch] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_end] = ACTIONS(1427), + [anon_sym_after] = ACTIONS(1429), + [anon_sym_catch] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_end] = ACTIONS(1429), [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1427), + [anon_sym_rescue] = ACTIONS(1429), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -68822,77 +68588,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [295] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym__expression] = STATE(3296), + [sym_block] = STATE(3296), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3296), + [sym_nil] = STATE(3296), + [sym__atom] = STATE(3296), + [sym_quoted_atom] = STATE(3296), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3296), + [sym_charlist] = STATE(3296), + [sym_sigil] = STATE(3296), + [sym_keywords] = STATE(3298), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(3296), + [sym_tuple] = STATE(3296), + [sym_bitstring] = STATE(3296), + [sym_map] = STATE(3296), + [sym__nullary_operator] = STATE(3296), + [sym_unary_operator] = STATE(3296), + [sym_binary_operator] = STATE(3296), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3296), + [sym_call] = STATE(3296), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3296), + [sym_anonymous_function] = STATE(3296), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(920), - [sym_integer] = ACTIONS(920), - [sym_float] = ACTIONS(920), - [sym_char] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(1431), + [sym_integer] = ACTIONS(1431), + [sym_float] = ACTIONS(1431), + [sym_char] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(508), + [sym_keyword] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -68930,73 +68701,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_end] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(532), }, [296] = { - [sym__expression] = STATE(4382), - [sym_block] = STATE(4382), + [sym__expression] = STATE(4343), + [sym_block] = STATE(4343), [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4382), - [sym_nil] = STATE(4382), - [sym__atom] = STATE(4382), - [sym_quoted_atom] = STATE(4382), - [sym__quoted_i_double] = STATE(3654), - [sym__quoted_i_single] = STATE(3655), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4382), - [sym_charlist] = STATE(4382), - [sym_sigil] = STATE(4382), - [sym_keywords] = STATE(4370), - [sym_pair] = STATE(3846), + [sym_boolean] = STATE(4343), + [sym_nil] = STATE(4343), + [sym__atom] = STATE(4343), + [sym_quoted_atom] = STATE(4343), + [sym__quoted_i_double] = STATE(4040), + [sym__quoted_i_single] = STATE(4039), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4343), + [sym_charlist] = STATE(4343), + [sym_sigil] = STATE(4343), + [sym_keywords] = STATE(4346), + [sym_pair] = STATE(3932), [sym__keyword] = STATE(665), [sym_quoted_keyword] = STATE(665), - [sym_list] = STATE(4382), - [sym_tuple] = STATE(4382), - [sym_bitstring] = STATE(4382), - [sym_map] = STATE(4382), - [sym__nullary_operator] = STATE(4382), - [sym_unary_operator] = STATE(4382), - [sym_binary_operator] = STATE(4382), + [sym_list] = STATE(4343), + [sym_tuple] = STATE(4343), + [sym_bitstring] = STATE(4343), + [sym_map] = STATE(4343), + [sym__nullary_operator] = STATE(4343), + [sym_unary_operator] = STATE(4343), + [sym_binary_operator] = STATE(4343), [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4382), - [sym_call] = STATE(4382), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym_dot] = STATE(4343), + [sym_call] = STATE(4343), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4382), - [sym_anonymous_function] = STATE(4382), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4343), + [sym_anonymous_function] = STATE(4343), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(1431), - [sym_integer] = ACTIONS(1431), - [sym_float] = ACTIONS(1431), - [sym_char] = ACTIONS(1431), + [sym_alias] = ACTIONS(1433), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1433), + [sym_char] = ACTIONS(1433), [anon_sym_true] = ACTIONS(19), [anon_sym_false] = ACTIONS(19), [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(1431), + [sym_atom] = ACTIONS(1433), [anon_sym_DQUOTE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), @@ -69008,7 +68774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(37), - [sym_keyword] = ACTIONS(1407), + [sym_keyword] = ACTIONS(1409), [anon_sym_LT_LT] = ACTIONS(39), [anon_sym_PERCENT] = ACTIONS(41), [anon_sym_DOT_DOT] = ACTIONS(43), @@ -69066,59 +68832,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [297] = { - [sym__expression] = STATE(3926), - [sym_block] = STATE(3926), + [sym__expression] = STATE(3871), + [sym_block] = STATE(3871), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3926), - [sym_nil] = STATE(3926), - [sym__atom] = STATE(3926), - [sym_quoted_atom] = STATE(3926), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3926), - [sym_charlist] = STATE(3926), - [sym_sigil] = STATE(3926), - [sym_keywords] = STATE(3605), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3926), - [sym_tuple] = STATE(3926), - [sym_bitstring] = STATE(3926), - [sym_map] = STATE(3926), - [sym__nullary_operator] = STATE(3926), - [sym_unary_operator] = STATE(3926), - [sym_binary_operator] = STATE(3926), + [sym_boolean] = STATE(3871), + [sym_nil] = STATE(3871), + [sym__atom] = STATE(3871), + [sym_quoted_atom] = STATE(3871), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3871), + [sym_charlist] = STATE(3871), + [sym_sigil] = STATE(3871), + [sym_keywords] = STATE(3702), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3871), + [sym_tuple] = STATE(3871), + [sym_bitstring] = STATE(3871), + [sym_map] = STATE(3871), + [sym__nullary_operator] = STATE(3871), + [sym_unary_operator] = STATE(3871), + [sym_binary_operator] = STATE(3871), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3926), - [sym_call] = STATE(3926), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3871), + [sym_call] = STATE(3871), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3926), - [sym_anonymous_function] = STATE(3926), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3871), + [sym_anonymous_function] = STATE(3871), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(1421), - [sym_integer] = ACTIONS(1421), - [sym_float] = ACTIONS(1421), - [sym_char] = ACTIONS(1421), + [sym_alias] = ACTIONS(1423), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1423), + [sym_char] = ACTIONS(1423), [anon_sym_true] = ACTIONS(598), [anon_sym_false] = ACTIONS(598), [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(1421), + [sym_atom] = ACTIONS(1423), [anon_sym_DQUOTE] = ACTIONS(602), [anon_sym_SQUOTE] = ACTIONS(604), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), @@ -69133,7 +68899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(616), [anon_sym_LT_LT] = ACTIONS(618), [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(624), [anon_sym_DASH] = ACTIONS(624), @@ -69188,43 +68954,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [298] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -69296,12 +69062,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1433), - [anon_sym_catch] = ACTIONS(1433), - [anon_sym_else] = ACTIONS(1433), - [anon_sym_end] = ACTIONS(1433), + [anon_sym_after] = ACTIONS(1435), + [anon_sym_catch] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_end] = ACTIONS(1435), [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1433), + [anon_sym_rescue] = ACTIONS(1435), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -69310,43 +69076,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [299] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -69418,12 +69184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1435), - [anon_sym_catch] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1435), - [anon_sym_end] = ACTIONS(1435), + [anon_sym_after] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_end] = ACTIONS(1437), [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1435), + [anon_sym_rescue] = ACTIONS(1437), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -69432,59 +69198,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [300] = { - [sym__expression] = STATE(1507), - [sym_block] = STATE(1507), + [sym__expression] = STATE(1426), + [sym_block] = STATE(1426), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1507), - [sym_nil] = STATE(1507), - [sym__atom] = STATE(1507), - [sym_quoted_atom] = STATE(1507), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1507), - [sym_charlist] = STATE(1507), - [sym_sigil] = STATE(1507), - [sym_keywords] = STATE(1219), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1507), - [sym_tuple] = STATE(1507), - [sym_bitstring] = STATE(1507), - [sym_map] = STATE(1507), - [sym__nullary_operator] = STATE(1507), - [sym_unary_operator] = STATE(1507), - [sym_binary_operator] = STATE(1507), + [sym_boolean] = STATE(1426), + [sym_nil] = STATE(1426), + [sym__atom] = STATE(1426), + [sym_quoted_atom] = STATE(1426), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1426), + [sym_charlist] = STATE(1426), + [sym_sigil] = STATE(1426), + [sym_keywords] = STATE(1283), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_bitstring] = STATE(1426), + [sym_map] = STATE(1426), + [sym__nullary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_binary_operator] = STATE(1426), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1507), - [sym_call] = STATE(1507), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1426), + [sym_call] = STATE(1426), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1507), - [sym_anonymous_function] = STATE(1507), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1426), + [sym_anonymous_function] = STATE(1426), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1419), - [sym_integer] = ACTIONS(1419), - [sym_float] = ACTIONS(1419), - [sym_char] = ACTIONS(1419), + [sym_alias] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1421), + [sym_char] = ACTIONS(1421), [anon_sym_true] = ACTIONS(195), [anon_sym_false] = ACTIONS(195), [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1419), + [sym_atom] = ACTIONS(1421), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), @@ -69554,59 +69320,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [301] = { - [sym__expression] = STATE(3591), - [sym_block] = STATE(3591), + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3591), - [sym_nil] = STATE(3591), - [sym__atom] = STATE(3591), - [sym_quoted_atom] = STATE(3591), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3591), - [sym_charlist] = STATE(3591), - [sym_sigil] = STATE(3591), - [sym_keywords] = STATE(2222), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(3591), - [sym_tuple] = STATE(3591), - [sym_bitstring] = STATE(3591), - [sym_map] = STATE(3591), - [sym__nullary_operator] = STATE(3591), - [sym_unary_operator] = STATE(3591), - [sym_binary_operator] = STATE(3591), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_keywords] = STATE(2147), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym__nullary_operator] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3591), - [sym_call] = STATE(3591), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3591), - [sym_anonymous_function] = STATE(3591), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1437), - [sym_integer] = ACTIONS(1437), - [sym_float] = ACTIONS(1437), - [sym_char] = ACTIONS(1437), + [sym_alias] = ACTIONS(1439), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1439), + [sym_char] = ACTIONS(1439), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1437), + [sym_atom] = ACTIONS(1439), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -69676,59 +69442,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [302] = { - [sym__expression] = STATE(2962), - [sym_block] = STATE(2962), + [sym__expression] = STATE(3309), + [sym_block] = STATE(3309), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2962), - [sym_nil] = STATE(2962), - [sym__atom] = STATE(2962), - [sym_quoted_atom] = STATE(2962), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(3309), + [sym_nil] = STATE(3309), + [sym__atom] = STATE(3309), + [sym_quoted_atom] = STATE(3309), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2962), - [sym_charlist] = STATE(2962), - [sym_sigil] = STATE(2962), - [sym_keywords] = STATE(1520), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(2962), - [sym_tuple] = STATE(2962), - [sym_bitstring] = STATE(2962), - [sym_map] = STATE(2962), - [sym__nullary_operator] = STATE(2962), - [sym_unary_operator] = STATE(2962), - [sym_binary_operator] = STATE(2962), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3309), + [sym_charlist] = STATE(3309), + [sym_sigil] = STATE(3309), + [sym_keywords] = STATE(1412), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(3309), + [sym_tuple] = STATE(3309), + [sym_bitstring] = STATE(3309), + [sym_map] = STATE(3309), + [sym__nullary_operator] = STATE(3309), + [sym_unary_operator] = STATE(3309), + [sym_binary_operator] = STATE(3309), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2962), - [sym_call] = STATE(2962), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3309), + [sym_call] = STATE(3309), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2962), - [sym_anonymous_function] = STATE(2962), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3309), + [sym_anonymous_function] = STATE(3309), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(450), [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), + [sym_alias] = ACTIONS(1351), + [sym_integer] = ACTIONS(1351), + [sym_float] = ACTIONS(1351), + [sym_char] = ACTIONS(1351), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1365), + [sym_atom] = ACTIONS(1351), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -69743,7 +69509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(456), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(458), [anon_sym_PLUS] = ACTIONS(463), [anon_sym_DASH] = ACTIONS(463), @@ -69798,43 +69564,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [303] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -69906,12 +69672,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_after] = ACTIONS(1439), - [anon_sym_catch] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1439), - [anon_sym_end] = ACTIONS(1439), + [anon_sym_after] = ACTIONS(1441), + [anon_sym_catch] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_end] = ACTIONS(1441), [anon_sym_fn] = ACTIONS(954), - [anon_sym_rescue] = ACTIONS(1439), + [anon_sym_rescue] = ACTIONS(1441), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), @@ -69920,82 +69686,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [304] = { - [sym__expression] = STATE(3137), - [sym_block] = STATE(3137), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3137), - [sym_nil] = STATE(3137), - [sym__atom] = STATE(3137), - [sym_quoted_atom] = STATE(3137), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3137), - [sym_charlist] = STATE(3137), - [sym_sigil] = STATE(3137), - [sym_keywords] = STATE(3138), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(3137), - [sym_tuple] = STATE(3137), - [sym_bitstring] = STATE(3137), - [sym_map] = STATE(3137), - [sym__nullary_operator] = STATE(3137), - [sym_unary_operator] = STATE(3137), - [sym_binary_operator] = STATE(3137), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3137), - [sym_call] = STATE(3137), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3137), - [sym_anonymous_function] = STATE(3137), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1441), - [sym_integer] = ACTIONS(1441), - [sym_float] = ACTIONS(1441), - [sym_char] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [sym__terminator] = STATE(350), + [sym__expression] = STATE(3351), + [sym_block] = STATE(3351), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(3351), + [sym_nil] = STATE(3351), + [sym__atom] = STATE(3351), + [sym_quoted_atom] = STATE(3351), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(3351), + [sym_charlist] = STATE(3351), + [sym_sigil] = STATE(3351), + [sym_list] = STATE(3351), + [sym_tuple] = STATE(3351), + [sym_bitstring] = STATE(3351), + [sym_map] = STATE(3351), + [sym__nullary_operator] = STATE(3351), + [sym_unary_operator] = STATE(3351), + [sym_binary_operator] = STATE(3351), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(3351), + [sym_call] = STATE(3351), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(3351), + [sym_body] = STATE(4828), + [sym_anonymous_function] = STATE(3351), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [sym_keyword] = ACTIONS(510), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -70033,56 +69798,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_end] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(958), }, [305] = { - [sym__expression] = STATE(3550), - [sym_block] = STATE(3550), + [sym__expression] = STATE(3625), + [sym_block] = STATE(3625), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3550), - [sym_nil] = STATE(3550), - [sym__atom] = STATE(3550), - [sym_quoted_atom] = STATE(3550), + [sym_boolean] = STATE(3625), + [sym_nil] = STATE(3625), + [sym__atom] = STATE(3625), + [sym_quoted_atom] = STATE(3625), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3550), - [sym_charlist] = STATE(3550), - [sym_sigil] = STATE(3550), - [sym_keywords] = STATE(2177), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(3550), - [sym_tuple] = STATE(3550), - [sym_bitstring] = STATE(3550), - [sym_map] = STATE(3550), - [sym__nullary_operator] = STATE(3550), - [sym_unary_operator] = STATE(3550), - [sym_binary_operator] = STATE(3550), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3625), + [sym_charlist] = STATE(3625), + [sym_sigil] = STATE(3625), + [sym_keywords] = STATE(2235), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(3625), + [sym_tuple] = STATE(3625), + [sym_bitstring] = STATE(3625), + [sym_map] = STATE(3625), + [sym__nullary_operator] = STATE(3625), + [sym_unary_operator] = STATE(3625), + [sym_binary_operator] = STATE(3625), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3550), - [sym_call] = STATE(3550), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3625), + [sym_call] = STATE(3625), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3550), - [sym_anonymous_function] = STATE(3550), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3625), + [sym_anonymous_function] = STATE(3625), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), @@ -70164,82 +69930,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [306] = { - [sym__expression] = STATE(4107), - [sym_block] = STATE(4107), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4107), - [sym_nil] = STATE(4107), - [sym__atom] = STATE(4107), - [sym_quoted_atom] = STATE(4107), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4107), - [sym_charlist] = STATE(4107), - [sym_sigil] = STATE(4107), - [sym_keywords] = STATE(4134), - [sym_pair] = STATE(3941), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4107), - [sym_tuple] = STATE(4107), - [sym_bitstring] = STATE(4107), - [sym_map] = STATE(4107), - [sym__nullary_operator] = STATE(4107), - [sym_unary_operator] = STATE(4107), - [sym_binary_operator] = STATE(4107), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4107), - [sym_call] = STATE(4107), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4107), - [sym_anonymous_function] = STATE(4107), + [sym__expression] = STATE(2423), + [sym_block] = STATE(2423), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2423), + [sym_nil] = STATE(2423), + [sym__atom] = STATE(2423), + [sym_quoted_atom] = STATE(2423), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2423), + [sym_charlist] = STATE(2423), + [sym_sigil] = STATE(2423), + [sym_keywords] = STATE(1258), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2423), + [sym_tuple] = STATE(2423), + [sym_bitstring] = STATE(2423), + [sym_map] = STATE(2423), + [sym__nullary_operator] = STATE(2423), + [sym_unary_operator] = STATE(2423), + [sym_binary_operator] = STATE(2423), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2423), + [sym_call] = STATE(2423), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2423), + [sym_anonymous_function] = STATE(2423), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(1445), [sym_integer] = ACTIONS(1445), [sym_float] = ACTIONS(1445), [sym_char] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [sym_keyword] = ACTIONS(87), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(471), + [sym_keyword] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -70277,68 +70043,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(231), }, [307] = { - [sym__expression] = STATE(3591), - [sym_block] = STATE(3591), + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3591), - [sym_nil] = STATE(3591), - [sym__atom] = STATE(3591), - [sym_quoted_atom] = STATE(3591), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3591), - [sym_charlist] = STATE(3591), - [sym_sigil] = STATE(3591), - [sym_keywords] = STATE(2219), - [sym_pair] = STATE(2958), - [sym__keyword] = STATE(733), - [sym_quoted_keyword] = STATE(733), - [sym_list] = STATE(3591), - [sym_tuple] = STATE(3591), - [sym_bitstring] = STATE(3591), - [sym_map] = STATE(3591), - [sym__nullary_operator] = STATE(3591), - [sym_unary_operator] = STATE(3591), - [sym_binary_operator] = STATE(3591), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_keywords] = STATE(2175), + [sym_pair] = STATE(3494), + [sym__keyword] = STATE(525), + [sym_quoted_keyword] = STATE(525), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym__nullary_operator] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3591), - [sym_call] = STATE(3591), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3591), - [sym_anonymous_function] = STATE(3591), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1437), - [sym_integer] = ACTIONS(1437), - [sym_float] = ACTIONS(1437), - [sym_char] = ACTIONS(1437), + [sym_alias] = ACTIONS(1439), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1439), + [sym_char] = ACTIONS(1439), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1437), + [sym_atom] = ACTIONS(1439), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -70408,47 +70174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [308] = { - [sym__expression] = STATE(4157), - [sym_block] = STATE(4157), + [sym__expression] = STATE(4115), + [sym_block] = STATE(4115), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4157), - [sym_nil] = STATE(4157), - [sym__atom] = STATE(4157), - [sym_quoted_atom] = STATE(4157), - [sym__quoted_i_double] = STATE(1613), - [sym__quoted_i_single] = STATE(1614), + [sym_boolean] = STATE(4115), + [sym_nil] = STATE(4115), + [sym__atom] = STATE(4115), + [sym_quoted_atom] = STATE(4115), + [sym__quoted_i_double] = STATE(1707), + [sym__quoted_i_single] = STATE(1708), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4157), - [sym_charlist] = STATE(4157), - [sym_sigil] = STATE(4157), + [sym_string] = STATE(4115), + [sym_charlist] = STATE(4115), + [sym_sigil] = STATE(4115), [sym_keywords] = STATE(2069), - [sym_pair] = STATE(3750), - [sym__keyword] = STATE(629), - [sym_quoted_keyword] = STATE(629), - [sym_list] = STATE(4157), - [sym_tuple] = STATE(4157), - [sym_bitstring] = STATE(4157), - [sym_map] = STATE(4157), - [sym__nullary_operator] = STATE(4157), - [sym_unary_operator] = STATE(4157), - [sym_binary_operator] = STATE(4157), + [sym_pair] = STATE(3608), + [sym__keyword] = STATE(509), + [sym_quoted_keyword] = STATE(509), + [sym_list] = STATE(4115), + [sym_tuple] = STATE(4115), + [sym_bitstring] = STATE(4115), + [sym_map] = STATE(4115), + [sym__nullary_operator] = STATE(4115), + [sym_unary_operator] = STATE(4115), + [sym_binary_operator] = STATE(4115), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4157), - [sym_call] = STATE(4157), + [sym_dot] = STATE(4115), + [sym_call] = STATE(4115), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4157), - [sym_anonymous_function] = STATE(4157), + [sym_access_call] = STATE(4115), + [sym_anonymous_function] = STATE(4115), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(686), @@ -70471,19 +70237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [sym_keyword] = ACTIONS(1449), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -70525,48 +70291,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [309] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -70652,47 +70418,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [310] = { - [sym__expression] = STATE(4174), - [sym_block] = STATE(4174), + [sym__expression] = STATE(4121), + [sym_block] = STATE(4121), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4174), - [sym_nil] = STATE(4174), - [sym__atom] = STATE(4174), - [sym_quoted_atom] = STATE(4174), - [sym__quoted_i_double] = STATE(1613), - [sym__quoted_i_single] = STATE(1614), + [sym_boolean] = STATE(4121), + [sym_nil] = STATE(4121), + [sym__atom] = STATE(4121), + [sym_quoted_atom] = STATE(4121), + [sym__quoted_i_double] = STATE(1707), + [sym__quoted_i_single] = STATE(1708), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4174), - [sym_charlist] = STATE(4174), - [sym_sigil] = STATE(4174), + [sym_string] = STATE(4121), + [sym_charlist] = STATE(4121), + [sym_sigil] = STATE(4121), [sym_keywords] = STATE(2075), - [sym_pair] = STATE(3750), - [sym__keyword] = STATE(629), - [sym_quoted_keyword] = STATE(629), - [sym_list] = STATE(4174), - [sym_tuple] = STATE(4174), - [sym_bitstring] = STATE(4174), - [sym_map] = STATE(4174), - [sym__nullary_operator] = STATE(4174), - [sym_unary_operator] = STATE(4174), - [sym_binary_operator] = STATE(4174), + [sym_pair] = STATE(3608), + [sym__keyword] = STATE(509), + [sym_quoted_keyword] = STATE(509), + [sym_list] = STATE(4121), + [sym_tuple] = STATE(4121), + [sym_bitstring] = STATE(4121), + [sym_map] = STATE(4121), + [sym__nullary_operator] = STATE(4121), + [sym_unary_operator] = STATE(4121), + [sym_binary_operator] = STATE(4121), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4174), - [sym_call] = STATE(4174), + [sym_dot] = STATE(4121), + [sym_call] = STATE(4121), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4174), - [sym_anonymous_function] = STATE(4174), + [sym_access_call] = STATE(4121), + [sym_anonymous_function] = STATE(4121), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(686), @@ -70715,19 +70481,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [sym_keyword] = ACTIONS(1449), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -70769,52 +70535,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [311] = { - [sym__expression] = STATE(1555), - [sym_block] = STATE(1555), + [sym__expression] = STATE(1518), + [sym_block] = STATE(1518), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1555), - [sym_nil] = STATE(1555), - [sym__atom] = STATE(1555), - [sym_quoted_atom] = STATE(1555), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1555), - [sym_charlist] = STATE(1555), - [sym_sigil] = STATE(1555), - [sym_keywords] = STATE(1256), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1555), - [sym_tuple] = STATE(1555), - [sym_bitstring] = STATE(1555), - [sym_map] = STATE(1555), - [sym__nullary_operator] = STATE(1555), - [sym_unary_operator] = STATE(1555), - [sym_binary_operator] = STATE(1555), + [sym_boolean] = STATE(1518), + [sym_nil] = STATE(1518), + [sym__atom] = STATE(1518), + [sym_quoted_atom] = STATE(1518), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1518), + [sym_charlist] = STATE(1518), + [sym_sigil] = STATE(1518), + [sym_keywords] = STATE(1258), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1518), + [sym_tuple] = STATE(1518), + [sym_bitstring] = STATE(1518), + [sym_map] = STATE(1518), + [sym__nullary_operator] = STATE(1518), + [sym_unary_operator] = STATE(1518), + [sym_binary_operator] = STATE(1518), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1555), - [sym_call] = STATE(1555), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1518), + [sym_call] = STATE(1518), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1555), - [sym_anonymous_function] = STATE(1555), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1518), + [sym_anonymous_function] = STATE(1518), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(191), @@ -70896,47 +70662,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [312] = { - [sym__expression] = STATE(1560), - [sym_block] = STATE(1560), + [sym__expression] = STATE(1513), + [sym_block] = STATE(1513), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1560), - [sym_nil] = STATE(1560), - [sym__atom] = STATE(1560), - [sym_quoted_atom] = STATE(1560), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1560), - [sym_charlist] = STATE(1560), - [sym_sigil] = STATE(1560), - [sym_keywords] = STATE(1255), - [sym_pair] = STATE(1250), - [sym__keyword] = STATE(721), - [sym_quoted_keyword] = STATE(721), - [sym_list] = STATE(1560), - [sym_tuple] = STATE(1560), - [sym_bitstring] = STATE(1560), - [sym_map] = STATE(1560), - [sym__nullary_operator] = STATE(1560), - [sym_unary_operator] = STATE(1560), - [sym_binary_operator] = STATE(1560), + [sym_boolean] = STATE(1513), + [sym_nil] = STATE(1513), + [sym__atom] = STATE(1513), + [sym_quoted_atom] = STATE(1513), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1513), + [sym_charlist] = STATE(1513), + [sym_sigil] = STATE(1513), + [sym_keywords] = STATE(1256), + [sym_pair] = STATE(1324), + [sym__keyword] = STATE(511), + [sym_quoted_keyword] = STATE(511), + [sym_list] = STATE(1513), + [sym_tuple] = STATE(1513), + [sym_bitstring] = STATE(1513), + [sym_map] = STATE(1513), + [sym__nullary_operator] = STATE(1513), + [sym_unary_operator] = STATE(1513), + [sym_binary_operator] = STATE(1513), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1560), - [sym_call] = STATE(1560), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1513), + [sym_call] = STATE(1513), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1560), - [sym_anonymous_function] = STATE(1560), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1513), + [sym_anonymous_function] = STATE(1513), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(191), @@ -71018,47 +70784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [313] = { - [sym__expression] = STATE(3769), - [sym_block] = STATE(3769), + [sym__expression] = STATE(3613), + [sym_block] = STATE(3613), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3769), - [sym_nil] = STATE(3769), - [sym__atom] = STATE(3769), - [sym_quoted_atom] = STATE(3769), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3769), - [sym_charlist] = STATE(3769), - [sym_sigil] = STATE(3769), - [sym__keywords_with_trailing_separator] = STATE(6972), + [sym_boolean] = STATE(3613), + [sym_nil] = STATE(3613), + [sym__atom] = STATE(3613), + [sym_quoted_atom] = STATE(3613), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3613), + [sym_charlist] = STATE(3613), + [sym_sigil] = STATE(3613), + [sym__keywords_with_trailing_separator] = STATE(6950), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3769), - [sym_tuple] = STATE(3769), - [sym_bitstring] = STATE(3769), - [sym_map] = STATE(3769), - [sym__nullary_operator] = STATE(3769), - [sym_unary_operator] = STATE(3769), - [sym_binary_operator] = STATE(3769), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3613), + [sym_tuple] = STATE(3613), + [sym_bitstring] = STATE(3613), + [sym_map] = STATE(3613), + [sym__nullary_operator] = STATE(3613), + [sym_unary_operator] = STATE(3613), + [sym_binary_operator] = STATE(3613), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3769), - [sym_call] = STATE(3769), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3613), + [sym_call] = STATE(3613), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3769), - [sym_anonymous_function] = STATE(3769), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3613), + [sym_anonymous_function] = STATE(3613), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -71140,47 +70906,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [314] = { - [sym__expression] = STATE(4399), - [sym_block] = STATE(4399), + [sym__expression] = STATE(4199), + [sym_block] = STATE(4199), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4399), - [sym_nil] = STATE(4399), - [sym__atom] = STATE(4399), - [sym_quoted_atom] = STATE(4399), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4399), - [sym_charlist] = STATE(4399), - [sym_sigil] = STATE(4399), - [sym_keywords] = STATE(6241), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4399), - [sym_tuple] = STATE(4399), - [sym_bitstring] = STATE(4399), - [sym_map] = STATE(4399), - [sym__nullary_operator] = STATE(4399), - [sym_unary_operator] = STATE(4399), - [sym_binary_operator] = STATE(4399), + [sym_boolean] = STATE(4199), + [sym_nil] = STATE(4199), + [sym__atom] = STATE(4199), + [sym_quoted_atom] = STATE(4199), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4199), + [sym_charlist] = STATE(4199), + [sym_sigil] = STATE(4199), + [sym_keywords] = STATE(6345), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4199), + [sym_tuple] = STATE(4199), + [sym_bitstring] = STATE(4199), + [sym_map] = STATE(4199), + [sym__nullary_operator] = STATE(4199), + [sym_unary_operator] = STATE(4199), + [sym_binary_operator] = STATE(4199), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4399), - [sym_call] = STATE(4399), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4199), + [sym_call] = STATE(4199), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4399), - [sym_anonymous_function] = STATE(4399), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4199), + [sym_anonymous_function] = STATE(4199), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), @@ -71262,47 +71028,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [315] = { - [sym__expression] = STATE(4496), - [sym_block] = STATE(4496), + [sym__expression] = STATE(4536), + [sym_block] = STATE(4536), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4496), - [sym_nil] = STATE(4496), - [sym__atom] = STATE(4496), - [sym_quoted_atom] = STATE(4496), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4496), - [sym_charlist] = STATE(4496), - [sym_sigil] = STATE(4496), - [sym_keywords] = STATE(6810), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4496), - [sym_tuple] = STATE(4496), - [sym_bitstring] = STATE(4496), - [sym_map] = STATE(4496), - [sym__nullary_operator] = STATE(4496), - [sym_unary_operator] = STATE(4496), - [sym_binary_operator] = STATE(4496), + [sym_boolean] = STATE(4536), + [sym_nil] = STATE(4536), + [sym__atom] = STATE(4536), + [sym_quoted_atom] = STATE(4536), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4536), + [sym_charlist] = STATE(4536), + [sym_sigil] = STATE(4536), + [sym_keywords] = STATE(6846), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4536), + [sym_tuple] = STATE(4536), + [sym_bitstring] = STATE(4536), + [sym_map] = STATE(4536), + [sym__nullary_operator] = STATE(4536), + [sym_unary_operator] = STATE(4536), + [sym_binary_operator] = STATE(4536), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4496), - [sym_call] = STATE(4496), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4536), + [sym_call] = STATE(4536), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4496), - [sym_anonymous_function] = STATE(4496), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4536), + [sym_anonymous_function] = STATE(4536), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), @@ -71384,47 +71150,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [316] = { - [sym__expression] = STATE(3401), - [sym_block] = STATE(3401), + [sym__expression] = STATE(3479), + [sym_block] = STATE(3479), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3401), - [sym_nil] = STATE(3401), - [sym__atom] = STATE(3401), - [sym_quoted_atom] = STATE(3401), + [sym_boolean] = STATE(3479), + [sym_nil] = STATE(3479), + [sym__atom] = STATE(3479), + [sym_quoted_atom] = STATE(3479), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3401), - [sym_charlist] = STATE(3401), - [sym_sigil] = STATE(3401), - [sym_keywords] = STATE(2995), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), - [sym_list] = STATE(3401), - [sym_tuple] = STATE(3401), - [sym_bitstring] = STATE(3401), - [sym_map] = STATE(3401), - [sym__nullary_operator] = STATE(3401), - [sym_unary_operator] = STATE(3401), - [sym_binary_operator] = STATE(3401), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3479), + [sym_charlist] = STATE(3479), + [sym_sigil] = STATE(3479), + [sym_keywords] = STATE(3443), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(3479), + [sym_tuple] = STATE(3479), + [sym_bitstring] = STATE(3479), + [sym_map] = STATE(3479), + [sym__nullary_operator] = STATE(3479), + [sym_unary_operator] = STATE(3479), + [sym_binary_operator] = STATE(3479), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3401), - [sym_call] = STATE(3401), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(3479), + [sym_call] = STATE(3479), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3401), - [sym_anonymous_function] = STATE(3401), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3479), + [sym_anonymous_function] = STATE(3479), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), @@ -71506,43 +71272,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [317] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -71628,47 +71394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [318] = { - [sym__expression] = STATE(3401), - [sym_block] = STATE(3401), + [sym__expression] = STATE(3479), + [sym_block] = STATE(3479), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3401), - [sym_nil] = STATE(3401), - [sym__atom] = STATE(3401), - [sym_quoted_atom] = STATE(3401), + [sym_boolean] = STATE(3479), + [sym_nil] = STATE(3479), + [sym__atom] = STATE(3479), + [sym_quoted_atom] = STATE(3479), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3401), - [sym_charlist] = STATE(3401), - [sym_sigil] = STATE(3401), - [sym_keywords] = STATE(3004), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), - [sym_list] = STATE(3401), - [sym_tuple] = STATE(3401), - [sym_bitstring] = STATE(3401), - [sym_map] = STATE(3401), - [sym__nullary_operator] = STATE(3401), - [sym_unary_operator] = STATE(3401), - [sym_binary_operator] = STATE(3401), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3479), + [sym_charlist] = STATE(3479), + [sym_sigil] = STATE(3479), + [sym_keywords] = STATE(3352), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), + [sym_list] = STATE(3479), + [sym_tuple] = STATE(3479), + [sym_bitstring] = STATE(3479), + [sym_map] = STATE(3479), + [sym__nullary_operator] = STATE(3479), + [sym_unary_operator] = STATE(3479), + [sym_binary_operator] = STATE(3479), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3401), - [sym_call] = STATE(3401), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(3479), + [sym_call] = STATE(3479), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3401), - [sym_anonymous_function] = STATE(3401), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3479), + [sym_anonymous_function] = STATE(3479), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), @@ -71750,47 +71516,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [319] = { - [sym__expression] = STATE(2156), - [sym_block] = STATE(2156), + [sym__expression] = STATE(2155), + [sym_block] = STATE(2155), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2156), - [sym_nil] = STATE(2156), - [sym__atom] = STATE(2156), - [sym_quoted_atom] = STATE(2156), - [sym__quoted_i_double] = STATE(1613), - [sym__quoted_i_single] = STATE(1614), + [sym_boolean] = STATE(2155), + [sym_nil] = STATE(2155), + [sym__atom] = STATE(2155), + [sym_quoted_atom] = STATE(2155), + [sym__quoted_i_double] = STATE(1707), + [sym__quoted_i_single] = STATE(1708), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2156), - [sym_charlist] = STATE(2156), - [sym_sigil] = STATE(2156), + [sym_string] = STATE(2155), + [sym_charlist] = STATE(2155), + [sym_sigil] = STATE(2155), [sym_keywords] = STATE(2075), - [sym_pair] = STATE(1863), - [sym__keyword] = STATE(611), - [sym_quoted_keyword] = STATE(611), - [sym_list] = STATE(2156), - [sym_tuple] = STATE(2156), - [sym_bitstring] = STATE(2156), - [sym_map] = STATE(2156), - [sym__nullary_operator] = STATE(2156), - [sym_unary_operator] = STATE(2156), - [sym_binary_operator] = STATE(2156), + [sym_pair] = STATE(1939), + [sym__keyword] = STATE(499), + [sym_quoted_keyword] = STATE(499), + [sym_list] = STATE(2155), + [sym_tuple] = STATE(2155), + [sym_bitstring] = STATE(2155), + [sym_map] = STATE(2155), + [sym__nullary_operator] = STATE(2155), + [sym_unary_operator] = STATE(2155), + [sym_binary_operator] = STATE(2155), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2156), - [sym_call] = STATE(2156), + [sym_dot] = STATE(2155), + [sym_call] = STATE(2155), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2156), - [sym_anonymous_function] = STATE(2156), + [sym_access_call] = STATE(2155), + [sym_anonymous_function] = STATE(2155), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -71872,47 +71638,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [320] = { - [sym__expression] = STATE(2148), - [sym_block] = STATE(2148), + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2148), - [sym_nil] = STATE(2148), - [sym__atom] = STATE(2148), - [sym_quoted_atom] = STATE(2148), - [sym__quoted_i_double] = STATE(1613), - [sym__quoted_i_single] = STATE(1614), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym__atom] = STATE(2150), + [sym_quoted_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(1707), + [sym__quoted_i_single] = STATE(1708), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2148), - [sym_charlist] = STATE(2148), - [sym_sigil] = STATE(2148), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), [sym_keywords] = STATE(2069), - [sym_pair] = STATE(1863), - [sym__keyword] = STATE(611), - [sym_quoted_keyword] = STATE(611), - [sym_list] = STATE(2148), - [sym_tuple] = STATE(2148), - [sym_bitstring] = STATE(2148), - [sym_map] = STATE(2148), - [sym__nullary_operator] = STATE(2148), - [sym_unary_operator] = STATE(2148), - [sym_binary_operator] = STATE(2148), + [sym_pair] = STATE(1939), + [sym__keyword] = STATE(499), + [sym_quoted_keyword] = STATE(499), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym__nullary_operator] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2148), - [sym_call] = STATE(2148), + [sym_dot] = STATE(2150), + [sym_call] = STATE(2150), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2148), - [sym_anonymous_function] = STATE(2148), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -71994,47 +71760,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [321] = { - [sym__expression] = STATE(2388), - [sym_block] = STATE(2388), + [sym__expression] = STATE(2429), + [sym_block] = STATE(2429), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2388), - [sym_nil] = STATE(2388), - [sym__atom] = STATE(2388), - [sym_quoted_atom] = STATE(2388), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2388), - [sym_charlist] = STATE(2388), - [sym_sigil] = STATE(2388), - [sym_keywords] = STATE(1255), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2388), - [sym_tuple] = STATE(2388), - [sym_bitstring] = STATE(2388), - [sym_map] = STATE(2388), - [sym__nullary_operator] = STATE(2388), - [sym_unary_operator] = STATE(2388), - [sym_binary_operator] = STATE(2388), + [sym_boolean] = STATE(2429), + [sym_nil] = STATE(2429), + [sym__atom] = STATE(2429), + [sym_quoted_atom] = STATE(2429), + [sym__quoted_i_double] = STATE(1135), + [sym__quoted_i_single] = STATE(1137), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2429), + [sym_charlist] = STATE(2429), + [sym_sigil] = STATE(2429), + [sym_keywords] = STATE(1256), + [sym_pair] = STATE(2182), + [sym__keyword] = STATE(589), + [sym_quoted_keyword] = STATE(589), + [sym_list] = STATE(2429), + [sym_tuple] = STATE(2429), + [sym_bitstring] = STATE(2429), + [sym_map] = STATE(2429), + [sym__nullary_operator] = STATE(2429), + [sym_unary_operator] = STATE(2429), + [sym_binary_operator] = STATE(2429), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2388), - [sym_call] = STATE(2388), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2429), + [sym_call] = STATE(2429), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2388), - [sym_anonymous_function] = STATE(2388), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2429), + [sym_anonymous_function] = STATE(2429), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), @@ -72116,82 +71882,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [322] = { - [sym__expression] = STATE(2381), - [sym_block] = STATE(2381), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2381), - [sym_nil] = STATE(2381), - [sym__atom] = STATE(2381), - [sym_quoted_atom] = STATE(2381), - [sym__quoted_i_double] = STATE(1105), - [sym__quoted_i_single] = STATE(1092), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2381), - [sym_charlist] = STATE(2381), - [sym_sigil] = STATE(2381), - [sym_keywords] = STATE(1256), - [sym_pair] = STATE(2207), - [sym__keyword] = STATE(490), - [sym_quoted_keyword] = STATE(490), - [sym_list] = STATE(2381), - [sym_tuple] = STATE(2381), - [sym_bitstring] = STATE(2381), - [sym_map] = STATE(2381), - [sym__nullary_operator] = STATE(2381), - [sym_unary_operator] = STATE(2381), - [sym_binary_operator] = STATE(2381), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2381), - [sym_call] = STATE(2381), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2381), - [sym_anonymous_function] = STATE(2381), + [sym__expression] = STATE(1584), + [sym_block] = STATE(1584), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1584), + [sym_nil] = STATE(1584), + [sym__atom] = STATE(1584), + [sym_quoted_atom] = STATE(1584), + [sym__quoted_i_double] = STATE(1192), + [sym__quoted_i_single] = STATE(1193), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1584), + [sym_charlist] = STATE(1584), + [sym_sigil] = STATE(1584), + [sym_keywords] = STATE(1395), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1584), + [sym_tuple] = STATE(1584), + [sym_bitstring] = STATE(1584), + [sym_map] = STATE(1584), + [sym__nullary_operator] = STATE(1584), + [sym_unary_operator] = STATE(1584), + [sym_binary_operator] = STATE(1584), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1584), + [sym_call] = STATE(1584), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1584), + [sym_anonymous_function] = STATE(1584), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(1477), [sym_integer] = ACTIONS(1477), [sym_float] = ACTIONS(1477), [sym_char] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [sym_keyword] = ACTIONS(473), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(257), + [sym_keyword] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -72229,13 +71995,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(281), }, [323] = { [sym__expression] = STATE(2548), @@ -72247,15 +72013,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_atom] = STATE(2548), [sym__quoted_i_double] = STATE(1985), [sym__quoted_i_single] = STATE(1986), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), [sym_string] = STATE(2548), [sym_charlist] = STATE(2548), [sym_sigil] = STATE(2548), - [sym_keywords] = STATE(2176), - [sym_pair] = STATE(2197), - [sym__keyword] = STATE(600), - [sym_quoted_keyword] = STATE(600), + [sym_keywords] = STATE(2236), + [sym_pair] = STATE(2136), + [sym__keyword] = STATE(583), + [sym_quoted_keyword] = STATE(583), [sym_list] = STATE(2548), [sym_tuple] = STATE(2548), [sym_bitstring] = STATE(2548), @@ -72266,17 +72032,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6938), [sym_dot] = STATE(2548), [sym_call] = STATE(2548), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), [sym_access_call] = STATE(2548), [sym_anonymous_function] = STATE(2548), [aux_sym__terminator_token1] = ACTIONS(3), @@ -72360,43 +72126,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [324] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -72482,47 +72248,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [325] = { - [sym__expression] = STATE(3418), - [sym_block] = STATE(3418), + [sym__expression] = STATE(3213), + [sym_block] = STATE(3213), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3418), - [sym_nil] = STATE(3418), - [sym__atom] = STATE(3418), - [sym_quoted_atom] = STATE(3418), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(3213), + [sym_nil] = STATE(3213), + [sym__atom] = STATE(3213), + [sym_quoted_atom] = STATE(3213), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3418), - [sym_charlist] = STATE(3418), - [sym_sigil] = STATE(3418), - [sym_keywords] = STATE(1468), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(3418), - [sym_tuple] = STATE(3418), - [sym_bitstring] = STATE(3418), - [sym_map] = STATE(3418), - [sym__nullary_operator] = STATE(3418), - [sym_unary_operator] = STATE(3418), - [sym_binary_operator] = STATE(3418), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3213), + [sym_charlist] = STATE(3213), + [sym_sigil] = STATE(3213), + [sym_keywords] = STATE(1395), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(3213), + [sym_tuple] = STATE(3213), + [sym_bitstring] = STATE(3213), + [sym_map] = STATE(3213), + [sym__nullary_operator] = STATE(3213), + [sym_unary_operator] = STATE(3213), + [sym_binary_operator] = STATE(3213), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3418), - [sym_call] = STATE(3418), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3213), + [sym_call] = STATE(3213), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3418), - [sym_anonymous_function] = STATE(3418), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3213), + [sym_anonymous_function] = STATE(3213), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(450), @@ -72549,7 +72315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(456), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(458), [anon_sym_PLUS] = ACTIONS(463), [anon_sym_DASH] = ACTIONS(463), @@ -72604,47 +72370,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [326] = { - [sym__expression] = STATE(3427), - [sym_block] = STATE(3427), + [sym__expression] = STATE(3218), + [sym_block] = STATE(3218), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3427), - [sym_nil] = STATE(3427), - [sym__atom] = STATE(3427), - [sym_quoted_atom] = STATE(3427), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(3218), + [sym_nil] = STATE(3218), + [sym__atom] = STATE(3218), + [sym_quoted_atom] = STATE(3218), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3427), - [sym_charlist] = STATE(3427), - [sym_sigil] = STATE(3427), - [sym_keywords] = STATE(1467), - [sym_pair] = STATE(2906), - [sym__keyword] = STATE(862), - [sym_quoted_keyword] = STATE(862), - [sym_list] = STATE(3427), - [sym_tuple] = STATE(3427), - [sym_bitstring] = STATE(3427), - [sym_map] = STATE(3427), - [sym__nullary_operator] = STATE(3427), - [sym_unary_operator] = STATE(3427), - [sym_binary_operator] = STATE(3427), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3218), + [sym_charlist] = STATE(3218), + [sym_sigil] = STATE(3218), + [sym_keywords] = STATE(1396), + [sym_pair] = STATE(2617), + [sym__keyword] = STATE(519), + [sym_quoted_keyword] = STATE(519), + [sym_list] = STATE(3218), + [sym_tuple] = STATE(3218), + [sym_bitstring] = STATE(3218), + [sym_map] = STATE(3218), + [sym__nullary_operator] = STATE(3218), + [sym_unary_operator] = STATE(3218), + [sym_binary_operator] = STATE(3218), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3427), - [sym_call] = STATE(3427), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3218), + [sym_call] = STATE(3218), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3427), - [sym_anonymous_function] = STATE(3427), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3218), + [sym_anonymous_function] = STATE(3218), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(450), @@ -72671,7 +72437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(456), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(458), [anon_sym_PLUS] = ACTIONS(463), [anon_sym_DASH] = ACTIONS(463), @@ -72726,47 +72492,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [327] = { - [sym__expression] = STATE(4496), - [sym_block] = STATE(4496), + [sym__expression] = STATE(4536), + [sym_block] = STATE(4536), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4496), - [sym_nil] = STATE(4496), - [sym__atom] = STATE(4496), - [sym_quoted_atom] = STATE(4496), - [sym__quoted_i_double] = STATE(3729), - [sym__quoted_i_single] = STATE(3722), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4496), - [sym_charlist] = STATE(4496), - [sym_sigil] = STATE(4496), - [sym_keywords] = STATE(6775), - [sym_pair] = STATE(5918), - [sym__keyword] = STATE(906), - [sym_quoted_keyword] = STATE(906), - [sym_list] = STATE(4496), - [sym_tuple] = STATE(4496), - [sym_bitstring] = STATE(4496), - [sym_map] = STATE(4496), - [sym__nullary_operator] = STATE(4496), - [sym_unary_operator] = STATE(4496), - [sym_binary_operator] = STATE(4496), + [sym_boolean] = STATE(4536), + [sym_nil] = STATE(4536), + [sym__atom] = STATE(4536), + [sym_quoted_atom] = STATE(4536), + [sym__quoted_i_double] = STATE(3532), + [sym__quoted_i_single] = STATE(3531), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4536), + [sym_charlist] = STATE(4536), + [sym_sigil] = STATE(4536), + [sym_keywords] = STATE(6823), + [sym_pair] = STATE(5847), + [sym__keyword] = STATE(517), + [sym_quoted_keyword] = STATE(517), + [sym_list] = STATE(4536), + [sym_tuple] = STATE(4536), + [sym_bitstring] = STATE(4536), + [sym_map] = STATE(4536), + [sym__nullary_operator] = STATE(4536), + [sym_unary_operator] = STATE(4536), + [sym_binary_operator] = STATE(4536), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4496), - [sym_call] = STATE(4496), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4536), + [sym_call] = STATE(4536), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4496), - [sym_anonymous_function] = STATE(4496), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4536), + [sym_anonymous_function] = STATE(4536), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), @@ -72848,47 +72614,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [328] = { - [sym__expression] = STATE(3463), - [sym_block] = STATE(3463), + [sym__expression] = STATE(3430), + [sym_block] = STATE(3430), [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3463), - [sym_nil] = STATE(3463), - [sym__atom] = STATE(3463), - [sym_quoted_atom] = STATE(3463), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(3430), + [sym_nil] = STATE(3430), + [sym__atom] = STATE(3430), + [sym_quoted_atom] = STATE(3430), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3463), - [sym_charlist] = STATE(3463), - [sym_sigil] = STATE(3463), - [sym_keywords] = STATE(1468), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), - [sym_list] = STATE(3463), - [sym_tuple] = STATE(3463), - [sym_bitstring] = STATE(3463), - [sym_map] = STATE(3463), - [sym__nullary_operator] = STATE(3463), - [sym_unary_operator] = STATE(3463), - [sym_binary_operator] = STATE(3463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3430), + [sym_charlist] = STATE(3430), + [sym_sigil] = STATE(3430), + [sym_keywords] = STATE(1395), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), + [sym_list] = STATE(3430), + [sym_tuple] = STATE(3430), + [sym_bitstring] = STATE(3430), + [sym_map] = STATE(3430), + [sym__nullary_operator] = STATE(3430), + [sym_unary_operator] = STATE(3430), + [sym_binary_operator] = STATE(3430), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3463), - [sym_call] = STATE(3463), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3430), + [sym_call] = STATE(3430), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3463), - [sym_anonymous_function] = STATE(3463), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3430), + [sym_anonymous_function] = STATE(3430), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(431), @@ -72915,7 +72681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(437), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(444), [anon_sym_DASH] = ACTIONS(444), @@ -72970,47 +72736,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [329] = { - [sym__expression] = STATE(3474), - [sym_block] = STATE(3474), + [sym__expression] = STATE(3435), + [sym_block] = STATE(3435), [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3474), - [sym_nil] = STATE(3474), - [sym__atom] = STATE(3474), - [sym_quoted_atom] = STATE(3474), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(3435), + [sym_nil] = STATE(3435), + [sym__atom] = STATE(3435), + [sym_quoted_atom] = STATE(3435), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3474), - [sym_charlist] = STATE(3474), - [sym_sigil] = STATE(3474), - [sym_keywords] = STATE(1467), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), - [sym_list] = STATE(3474), - [sym_tuple] = STATE(3474), - [sym_bitstring] = STATE(3474), - [sym_map] = STATE(3474), - [sym__nullary_operator] = STATE(3474), - [sym_unary_operator] = STATE(3474), - [sym_binary_operator] = STATE(3474), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3435), + [sym_charlist] = STATE(3435), + [sym_sigil] = STATE(3435), + [sym_keywords] = STATE(1396), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), + [sym_list] = STATE(3435), + [sym_tuple] = STATE(3435), + [sym_bitstring] = STATE(3435), + [sym_map] = STATE(3435), + [sym__nullary_operator] = STATE(3435), + [sym_unary_operator] = STATE(3435), + [sym_binary_operator] = STATE(3435), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3474), - [sym_call] = STATE(3474), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3435), + [sym_call] = STATE(3435), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3474), - [sym_anonymous_function] = STATE(3474), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3435), + [sym_anonymous_function] = STATE(3435), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(431), @@ -73037,7 +72803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(437), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(444), [anon_sym_DASH] = ACTIONS(444), @@ -73092,59 +72858,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [330] = { - [sym__expression] = STATE(1582), - [sym_block] = STATE(1582), + [sym__expression] = STATE(1768), + [sym_block] = STATE(1768), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1582), - [sym_nil] = STATE(1582), - [sym__atom] = STATE(1582), - [sym_quoted_atom] = STATE(1582), - [sym__quoted_i_double] = STATE(1194), + [sym_boolean] = STATE(1768), + [sym_nil] = STATE(1768), + [sym__atom] = STATE(1768), + [sym_quoted_atom] = STATE(1768), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1582), - [sym_charlist] = STATE(1582), - [sym_sigil] = STATE(1582), - [sym_keywords] = STATE(1520), - [sym_pair] = STATE(1509), - [sym__keyword] = STATE(617), - [sym_quoted_keyword] = STATE(617), - [sym_list] = STATE(1582), - [sym_tuple] = STATE(1582), - [sym_bitstring] = STATE(1582), - [sym_map] = STATE(1582), - [sym__nullary_operator] = STATE(1582), - [sym_unary_operator] = STATE(1582), - [sym_binary_operator] = STATE(1582), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1768), + [sym_charlist] = STATE(1768), + [sym_sigil] = STATE(1768), + [sym_keywords] = STATE(1412), + [sym_pair] = STATE(1355), + [sym__keyword] = STATE(503), + [sym_quoted_keyword] = STATE(503), + [sym_list] = STATE(1768), + [sym_tuple] = STATE(1768), + [sym_bitstring] = STATE(1768), + [sym_map] = STATE(1768), + [sym__nullary_operator] = STATE(1768), + [sym_unary_operator] = STATE(1768), + [sym_binary_operator] = STATE(1768), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1582), - [sym_call] = STATE(1582), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1768), + [sym_call] = STATE(1768), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1582), - [sym_anonymous_function] = STATE(1582), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1768), + [sym_anonymous_function] = STATE(1768), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1339), - [sym_integer] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [sym_char] = ACTIONS(1339), + [sym_alias] = ACTIONS(1327), + [sym_integer] = ACTIONS(1327), + [sym_float] = ACTIONS(1327), + [sym_char] = ACTIONS(1327), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1339), + [sym_atom] = ACTIONS(1327), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -73159,7 +72925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(259), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(265), [anon_sym_PLUS] = ACTIONS(267), [anon_sym_DASH] = ACTIONS(267), @@ -73214,49 +72980,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [331] = { - [sym__expression] = STATE(2088), - [sym_block] = STATE(2088), + [sym__expression] = STATE(1952), + [sym_block] = STATE(1952), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2088), - [sym_nil] = STATE(2088), - [sym__atom] = STATE(2088), - [sym_quoted_atom] = STATE(2088), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2088), - [sym_charlist] = STATE(2088), - [sym_sigil] = STATE(2088), - [sym_keywords] = STATE(1571), - [sym_pair] = STATE(1575), - [sym__keyword] = STATE(614), - [sym_quoted_keyword] = STATE(614), - [sym_list] = STATE(2088), - [sym_tuple] = STATE(2088), - [sym_bitstring] = STATE(2088), - [sym_map] = STATE(2088), - [sym__nullary_operator] = STATE(2088), - [sym_unary_operator] = STATE(2088), - [sym_binary_operator] = STATE(2088), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2088), - [sym_call] = STATE(2088), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1952), + [sym_nil] = STATE(1952), + [sym__atom] = STATE(1952), + [sym_quoted_atom] = STATE(1952), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1952), + [sym_charlist] = STATE(1952), + [sym_sigil] = STATE(1952), + [sym_keywords] = STATE(1698), + [sym_pair] = STATE(1790), + [sym__keyword] = STATE(501), + [sym_quoted_keyword] = STATE(501), + [sym_list] = STATE(1952), + [sym_tuple] = STATE(1952), + [sym_bitstring] = STATE(1952), + [sym_map] = STATE(1952), + [sym__nullary_operator] = STATE(1952), + [sym_unary_operator] = STATE(1952), + [sym_binary_operator] = STATE(1952), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1952), + [sym_call] = STATE(1952), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2088), - [sym_anonymous_function] = STATE(2088), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1952), + [sym_anonymous_function] = STATE(1952), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1491), @@ -73336,49 +73102,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [332] = { - [sym__expression] = STATE(2113), - [sym_block] = STATE(2113), + [sym__expression] = STATE(1957), + [sym_block] = STATE(1957), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2113), - [sym_nil] = STATE(2113), - [sym__atom] = STATE(2113), - [sym_quoted_atom] = STATE(2113), - [sym__quoted_i_double] = STATE(1537), - [sym__quoted_i_single] = STATE(1541), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2113), - [sym_charlist] = STATE(2113), - [sym_sigil] = STATE(2113), - [sym_keywords] = STATE(1794), - [sym_pair] = STATE(1575), - [sym__keyword] = STATE(614), - [sym_quoted_keyword] = STATE(614), - [sym_list] = STATE(2113), - [sym_tuple] = STATE(2113), - [sym_bitstring] = STATE(2113), - [sym_map] = STATE(2113), - [sym__nullary_operator] = STATE(2113), - [sym_unary_operator] = STATE(2113), - [sym_binary_operator] = STATE(2113), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2113), - [sym_call] = STATE(2113), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1957), + [sym_nil] = STATE(1957), + [sym__atom] = STATE(1957), + [sym_quoted_atom] = STATE(1957), + [sym__quoted_i_double] = STATE(1417), + [sym__quoted_i_single] = STATE(1421), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1957), + [sym_charlist] = STATE(1957), + [sym_sigil] = STATE(1957), + [sym_keywords] = STATE(1699), + [sym_pair] = STATE(1790), + [sym__keyword] = STATE(501), + [sym_quoted_keyword] = STATE(501), + [sym_list] = STATE(1957), + [sym_tuple] = STATE(1957), + [sym_bitstring] = STATE(1957), + [sym_map] = STATE(1957), + [sym__nullary_operator] = STATE(1957), + [sym_unary_operator] = STATE(1957), + [sym_binary_operator] = STATE(1957), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1957), + [sym_call] = STATE(1957), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2113), - [sym_anonymous_function] = STATE(2113), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1957), + [sym_anonymous_function] = STATE(1957), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1495), @@ -73458,43 +73224,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [333] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -73580,43 +73346,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [334] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), @@ -73711,15 +73477,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_atom] = STATE(3265), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), [sym_string] = STATE(3265), [sym_charlist] = STATE(3265), [sym_sigil] = STATE(3265), [sym_keywords] = STATE(3030), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), [sym_list] = STATE(3265), [sym_tuple] = STATE(3265), [sym_bitstring] = STATE(3265), @@ -73730,17 +73496,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6952), [sym_dot] = STATE(3265), [sym_call] = STATE(3265), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), [sym_access_call] = STATE(3265), [sym_anonymous_function] = STATE(3265), [aux_sym__terminator_token1] = ACTIONS(3), @@ -73831,17 +73597,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(3489), [sym__atom] = STATE(3489), [sym_quoted_atom] = STATE(3489), - [sym__quoted_i_double] = STATE(1194), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), [sym_string] = STATE(3489), [sym_charlist] = STATE(3489), [sym_sigil] = STATE(3489), - [sym_keywords] = STATE(1521), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), + [sym_keywords] = STATE(1411), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), [sym_list] = STATE(3489), [sym_tuple] = STATE(3489), [sym_bitstring] = STATE(3489), @@ -73852,17 +73618,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6959), [sym_dot] = STATE(3489), [sym_call] = STATE(3489), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), [sym_access_call] = STATE(3489), [sym_anonymous_function] = STATE(3489), [aux_sym__terminator_token1] = ACTIONS(3), @@ -73891,7 +73657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(437), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(444), [anon_sym_DASH] = ACTIONS(444), @@ -73955,15 +73721,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_atom] = STATE(3259), [sym__quoted_i_double] = STATE(2466), [sym__quoted_i_single] = STATE(2467), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), [sym_string] = STATE(3259), [sym_charlist] = STATE(3259), [sym_sigil] = STATE(3259), [sym_keywords] = STATE(3024), - [sym_pair] = STATE(2681), - [sym__keyword] = STATE(606), - [sym_quoted_keyword] = STATE(606), + [sym_pair] = STATE(2604), + [sym__keyword] = STATE(560), + [sym_quoted_keyword] = STATE(560), [sym_list] = STATE(3259), [sym_tuple] = STATE(3259), [sym_bitstring] = STATE(3259), @@ -73974,17 +73740,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6952), [sym_dot] = STATE(3259), [sym_call] = STATE(3259), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), [sym_access_call] = STATE(3259), [sym_anonymous_function] = STATE(3259), [aux_sym__terminator_token1] = ACTIONS(3), @@ -74068,59 +73834,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [338] = { - [sym__expression] = STATE(3307), - [sym_block] = STATE(3307), + [sym__expression] = STATE(3150), + [sym_block] = STATE(3150), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3307), - [sym_nil] = STATE(3307), - [sym__atom] = STATE(3307), - [sym_quoted_atom] = STATE(3307), - [sym__quoted_i_double] = STATE(2470), - [sym__quoted_i_single] = STATE(2540), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3307), - [sym_charlist] = STATE(3307), - [sym_sigil] = STATE(3307), - [sym_keywords] = STATE(2994), - [sym_pair] = STATE(2682), - [sym__keyword] = STATE(702), - [sym_quoted_keyword] = STATE(702), - [sym_list] = STATE(3307), - [sym_tuple] = STATE(3307), - [sym_bitstring] = STATE(3307), - [sym_map] = STATE(3307), - [sym__nullary_operator] = STATE(3307), - [sym_unary_operator] = STATE(3307), - [sym_binary_operator] = STATE(3307), + [sym_boolean] = STATE(3150), + [sym_nil] = STATE(3150), + [sym__atom] = STATE(3150), + [sym_quoted_atom] = STATE(3150), + [sym__quoted_i_double] = STATE(2787), + [sym__quoted_i_single] = STATE(2356), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3150), + [sym_charlist] = STATE(3150), + [sym_sigil] = STATE(3150), + [sym_keywords] = STATE(3054), + [sym_pair] = STATE(2599), + [sym__keyword] = STATE(594), + [sym_quoted_keyword] = STATE(594), + [sym_list] = STATE(3150), + [sym_tuple] = STATE(3150), + [sym_bitstring] = STATE(3150), + [sym_map] = STATE(3150), + [sym__nullary_operator] = STATE(3150), + [sym_unary_operator] = STATE(3150), + [sym_binary_operator] = STATE(3150), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3307), - [sym_call] = STATE(3307), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(3150), + [sym_call] = STATE(3150), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3307), - [sym_anonymous_function] = STATE(3307), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3150), + [sym_anonymous_function] = STATE(3150), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(486), [aux_sym_identifier_token1] = ACTIONS(488), [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1425), - [sym_integer] = ACTIONS(1425), - [sym_float] = ACTIONS(1425), - [sym_char] = ACTIONS(1425), + [sym_alias] = ACTIONS(1427), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym_char] = ACTIONS(1427), [anon_sym_true] = ACTIONS(492), [anon_sym_false] = ACTIONS(492), [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1425), + [sym_atom] = ACTIONS(1427), [anon_sym_DQUOTE] = ACTIONS(496), [anon_sym_SQUOTE] = ACTIONS(498), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), @@ -74135,7 +73901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(510), [anon_sym_LT_LT] = ACTIONS(512), [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1415), [anon_sym_AMP] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(518), @@ -74197,17 +73963,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(3489), [sym__atom] = STATE(3489), [sym_quoted_atom] = STATE(3489), - [sym__quoted_i_double] = STATE(1194), + [sym__quoted_i_double] = STATE(1192), [sym__quoted_i_single] = STATE(1193), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), [sym_string] = STATE(3489), [sym_charlist] = STATE(3489), [sym_sigil] = STATE(3489), - [sym_keywords] = STATE(1520), - [sym_pair] = STATE(2448), - [sym__keyword] = STATE(618), - [sym_quoted_keyword] = STATE(618), + [sym_keywords] = STATE(1412), + [sym_pair] = STATE(2576), + [sym__keyword] = STATE(547), + [sym_quoted_keyword] = STATE(547), [sym_list] = STATE(3489), [sym_tuple] = STATE(3489), [sym_bitstring] = STATE(3489), @@ -74218,17 +73984,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6959), [sym_dot] = STATE(3489), [sym_call] = STATE(3489), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), [sym_access_call] = STATE(3489), [sym_anonymous_function] = STATE(3489), [aux_sym__terminator_token1] = ACTIONS(3), @@ -74257,7 +74023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(437), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(444), [anon_sym_DASH] = ACTIONS(444), @@ -74312,51 +74078,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [340] = { - [sym__expression] = STATE(4350), - [sym_block] = STATE(4350), + [sym__expression] = STATE(4140), + [sym_block] = STATE(4140), [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4350), - [sym_nil] = STATE(4350), - [sym__atom] = STATE(4350), - [sym_quoted_atom] = STATE(4350), - [sym__quoted_i_double] = STATE(1613), - [sym__quoted_i_single] = STATE(1614), + [sym_boolean] = STATE(4140), + [sym_nil] = STATE(4140), + [sym__atom] = STATE(4140), + [sym_quoted_atom] = STATE(4140), + [sym__quoted_i_double] = STATE(1707), + [sym__quoted_i_single] = STATE(1708), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4350), - [sym_charlist] = STATE(4350), - [sym_sigil] = STATE(4350), + [sym_string] = STATE(4140), + [sym_charlist] = STATE(4140), + [sym_sigil] = STATE(4140), [sym_keywords] = STATE(2075), - [sym_pair] = STATE(3558), - [sym__keyword] = STATE(620), - [sym_quoted_keyword] = STATE(620), - [sym_list] = STATE(4350), - [sym_tuple] = STATE(4350), - [sym_bitstring] = STATE(4350), - [sym_map] = STATE(4350), - [sym__nullary_operator] = STATE(4350), - [sym_unary_operator] = STATE(4350), - [sym_binary_operator] = STATE(4350), + [sym_pair] = STATE(3885), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(4140), + [sym_tuple] = STATE(4140), + [sym_bitstring] = STATE(4140), + [sym_map] = STATE(4140), + [sym__nullary_operator] = STATE(4140), + [sym_unary_operator] = STATE(4140), + [sym_binary_operator] = STATE(4140), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4350), - [sym_call] = STATE(4350), + [sym_dot] = STATE(4140), + [sym_call] = STATE(4140), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4350), - [sym_anonymous_function] = STATE(4350), + [sym_access_call] = STATE(4140), + [sym_anonymous_function] = STATE(4140), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1507), [sym_integer] = ACTIONS(1507), [sym_float] = ACTIONS(1507), @@ -74375,19 +74141,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [sym_keyword] = ACTIONS(1509), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -74429,56 +74195,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [341] = { - [sym__expression] = STATE(4110), - [sym_block] = STATE(4110), + [sym__expression] = STATE(4134), + [sym_block] = STATE(4134), [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4110), - [sym_nil] = STATE(4110), - [sym__atom] = STATE(4110), - [sym_quoted_atom] = STATE(4110), - [sym__quoted_i_double] = STATE(1613), - [sym__quoted_i_single] = STATE(1614), + [sym_boolean] = STATE(4134), + [sym_nil] = STATE(4134), + [sym__atom] = STATE(4134), + [sym_quoted_atom] = STATE(4134), + [sym__quoted_i_double] = STATE(1707), + [sym__quoted_i_single] = STATE(1708), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4110), - [sym_charlist] = STATE(4110), - [sym_sigil] = STATE(4110), + [sym_string] = STATE(4134), + [sym_charlist] = STATE(4134), + [sym_sigil] = STATE(4134), [sym_keywords] = STATE(2069), - [sym_pair] = STATE(3558), - [sym__keyword] = STATE(620), - [sym_quoted_keyword] = STATE(620), - [sym_list] = STATE(4110), - [sym_tuple] = STATE(4110), - [sym_bitstring] = STATE(4110), - [sym_map] = STATE(4110), - [sym__nullary_operator] = STATE(4110), - [sym_unary_operator] = STATE(4110), - [sym_binary_operator] = STATE(4110), + [sym_pair] = STATE(3885), + [sym__keyword] = STATE(505), + [sym_quoted_keyword] = STATE(505), + [sym_list] = STATE(4134), + [sym_tuple] = STATE(4134), + [sym_bitstring] = STATE(4134), + [sym_map] = STATE(4134), + [sym__nullary_operator] = STATE(4134), + [sym_unary_operator] = STATE(4134), + [sym_binary_operator] = STATE(4134), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4110), - [sym_call] = STATE(4110), + [sym_dot] = STATE(4134), + [sym_call] = STATE(4134), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4110), - [sym_anonymous_function] = STATE(4110), + [sym_access_call] = STATE(4134), + [sym_anonymous_function] = STATE(4134), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1511), [sym_integer] = ACTIONS(1511), [sym_float] = ACTIONS(1511), @@ -74497,19 +74263,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [sym_keyword] = ACTIONS(1509), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -74551,65 +74317,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [342] = { [sym__terminator] = STATE(351), - [sym__expression] = STATE(3483), - [sym_block] = STATE(3483), + [sym__expression] = STATE(3038), + [sym_block] = STATE(3038), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(3483), - [sym_nil] = STATE(3483), - [sym__atom] = STATE(3483), - [sym_quoted_atom] = STATE(3483), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(3038), + [sym_nil] = STATE(3038), + [sym__atom] = STATE(3038), + [sym_quoted_atom] = STATE(3038), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(3483), - [sym_charlist] = STATE(3483), - [sym_sigil] = STATE(3483), - [sym_list] = STATE(3483), - [sym_tuple] = STATE(3483), - [sym_bitstring] = STATE(3483), - [sym_map] = STATE(3483), - [sym__nullary_operator] = STATE(3483), - [sym_unary_operator] = STATE(3483), - [sym_binary_operator] = STATE(3483), + [sym_string] = STATE(3038), + [sym_charlist] = STATE(3038), + [sym_sigil] = STATE(3038), + [sym_list] = STATE(3038), + [sym_tuple] = STATE(3038), + [sym_bitstring] = STATE(3038), + [sym_map] = STATE(3038), + [sym__nullary_operator] = STATE(3038), + [sym_unary_operator] = STATE(3038), + [sym_binary_operator] = STATE(3038), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(3483), - [sym_call] = STATE(3483), + [sym_dot] = STATE(3038), + [sym_call] = STATE(3038), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(3483), - [sym_body] = STATE(4827), - [sym_anonymous_function] = STATE(3483), - [aux_sym__terminator_repeat1] = STATE(1029), - [aux_sym__terminator_token1] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1321), + [sym_access_call] = STATE(3038), + [sym_body] = STATE(4828), + [sym_anonymous_function] = STATE(3038), + [aux_sym__terminator_repeat1] = STATE(1034), + [aux_sym__terminator_token1] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1355), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1041), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1323), - [sym_integer] = ACTIONS(1323), - [sym_float] = ACTIONS(1323), - [sym_char] = ACTIONS(1323), + [sym_alias] = ACTIONS(1357), + [sym_integer] = ACTIONS(1357), + [sym_float] = ACTIONS(1357), + [sym_char] = ACTIONS(1357), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1323), + [sym_atom] = ACTIONS(1357), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -74620,18 +74386,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -74673,52 +74439,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [343] = { - [sym__expression] = STATE(3879), - [sym_block] = STATE(3879), + [sym__expression] = STATE(3956), + [sym_block] = STATE(3956), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3879), - [sym_nil] = STATE(3879), - [sym__atom] = STATE(3879), - [sym_quoted_atom] = STATE(3879), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3879), - [sym_charlist] = STATE(3879), - [sym_sigil] = STATE(3879), - [sym_keywords] = STATE(3880), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3879), - [sym_tuple] = STATE(3879), - [sym_bitstring] = STATE(3879), - [sym_map] = STATE(3879), - [sym__nullary_operator] = STATE(3879), - [sym_unary_operator] = STATE(3879), - [sym_binary_operator] = STATE(3879), + [sym_boolean] = STATE(3956), + [sym_nil] = STATE(3956), + [sym__atom] = STATE(3956), + [sym_quoted_atom] = STATE(3956), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3956), + [sym_charlist] = STATE(3956), + [sym_sigil] = STATE(3956), + [sym_keywords] = STATE(3955), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3956), + [sym_tuple] = STATE(3956), + [sym_bitstring] = STATE(3956), + [sym_map] = STATE(3956), + [sym__nullary_operator] = STATE(3956), + [sym_unary_operator] = STATE(3956), + [sym_binary_operator] = STATE(3956), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3879), - [sym_call] = STATE(3879), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3956), + [sym_call] = STATE(3956), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3879), - [sym_anonymous_function] = STATE(3879), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3956), + [sym_anonymous_function] = STATE(3956), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), @@ -74745,7 +74511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(616), [anon_sym_LT_LT] = ACTIONS(618), [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(624), [anon_sym_DASH] = ACTIONS(624), @@ -74800,47 +74566,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [344] = { - [sym__expression] = STATE(3873), - [sym_block] = STATE(3873), + [sym__expression] = STATE(3966), + [sym_block] = STATE(3966), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3873), - [sym_nil] = STATE(3873), - [sym__atom] = STATE(3873), - [sym_quoted_atom] = STATE(3873), - [sym__quoted_i_double] = STATE(3448), - [sym__quoted_i_single] = STATE(3449), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3873), - [sym_charlist] = STATE(3873), - [sym_sigil] = STATE(3873), - [sym_keywords] = STATE(3874), - [sym_pair] = STATE(3396), - [sym__keyword] = STATE(604), - [sym_quoted_keyword] = STATE(604), - [sym_list] = STATE(3873), - [sym_tuple] = STATE(3873), - [sym_bitstring] = STATE(3873), - [sym_map] = STATE(3873), - [sym__nullary_operator] = STATE(3873), - [sym_unary_operator] = STATE(3873), - [sym_binary_operator] = STATE(3873), + [sym_boolean] = STATE(3966), + [sym_nil] = STATE(3966), + [sym__atom] = STATE(3966), + [sym_quoted_atom] = STATE(3966), + [sym__quoted_i_double] = STATE(3341), + [sym__quoted_i_single] = STATE(3342), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3966), + [sym_charlist] = STATE(3966), + [sym_sigil] = STATE(3966), + [sym_keywords] = STATE(3965), + [sym_pair] = STATE(3155), + [sym__keyword] = STATE(575), + [sym_quoted_keyword] = STATE(575), + [sym_list] = STATE(3966), + [sym_tuple] = STATE(3966), + [sym_bitstring] = STATE(3966), + [sym_map] = STATE(3966), + [sym__nullary_operator] = STATE(3966), + [sym_unary_operator] = STATE(3966), + [sym_binary_operator] = STATE(3966), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3873), - [sym_call] = STATE(3873), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(3966), + [sym_call] = STATE(3966), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3873), - [sym_anonymous_function] = STATE(3873), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3966), + [sym_anonymous_function] = STATE(3966), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(592), [aux_sym_identifier_token1] = ACTIONS(594), @@ -74867,7 +74633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword] = ACTIONS(616), [anon_sym_LT_LT] = ACTIONS(618), [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(624), [anon_sym_DASH] = ACTIONS(624), @@ -74922,47 +74688,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(634), }, [345] = { - [sym__expression] = STATE(3769), - [sym_block] = STATE(3769), + [sym__expression] = STATE(3613), + [sym_block] = STATE(3613), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3769), - [sym_nil] = STATE(3769), - [sym__atom] = STATE(3769), - [sym_quoted_atom] = STATE(3769), - [sym__quoted_i_double] = STATE(2684), - [sym__quoted_i_single] = STATE(2683), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3769), - [sym_charlist] = STATE(3769), - [sym_sigil] = STATE(3769), - [sym__keywords_with_trailing_separator] = STATE(6862), + [sym_boolean] = STATE(3613), + [sym_nil] = STATE(3613), + [sym__atom] = STATE(3613), + [sym_quoted_atom] = STATE(3613), + [sym__quoted_i_double] = STATE(2601), + [sym__quoted_i_single] = STATE(2600), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3613), + [sym_charlist] = STATE(3613), + [sym_sigil] = STATE(3613), + [sym__keywords_with_trailing_separator] = STATE(6947), [sym_pair] = STATE(5781), - [sym__keyword] = STATE(546), - [sym_quoted_keyword] = STATE(546), - [sym_list] = STATE(3769), - [sym_tuple] = STATE(3769), - [sym_bitstring] = STATE(3769), - [sym_map] = STATE(3769), - [sym__nullary_operator] = STATE(3769), - [sym_unary_operator] = STATE(3769), - [sym_binary_operator] = STATE(3769), + [sym__keyword] = STATE(742), + [sym_quoted_keyword] = STATE(742), + [sym_list] = STATE(3613), + [sym_tuple] = STATE(3613), + [sym_bitstring] = STATE(3613), + [sym_map] = STATE(3613), + [sym__nullary_operator] = STATE(3613), + [sym_unary_operator] = STATE(3613), + [sym_binary_operator] = STATE(3613), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3769), - [sym_call] = STATE(3769), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3613), + [sym_call] = STATE(3613), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3769), - [sym_anonymous_function] = STATE(3769), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3613), + [sym_anonymous_function] = STATE(3613), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -75044,43 +74810,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [346] = { - [sym__expression] = STATE(4488), - [sym_block] = STATE(4488), + [sym__expression] = STATE(4492), + [sym_block] = STATE(4492), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4488), - [sym_nil] = STATE(4488), - [sym__atom] = STATE(4488), - [sym_quoted_atom] = STATE(4488), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4492), + [sym_nil] = STATE(4492), + [sym__atom] = STATE(4492), + [sym_quoted_atom] = STATE(4492), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4488), - [sym_charlist] = STATE(4488), - [sym_sigil] = STATE(4488), - [sym_list] = STATE(4488), - [sym_tuple] = STATE(4488), - [sym_bitstring] = STATE(4488), - [sym_map] = STATE(4488), - [sym__nullary_operator] = STATE(4488), - [sym_unary_operator] = STATE(4488), - [sym_binary_operator] = STATE(4488), + [sym_string] = STATE(4492), + [sym_charlist] = STATE(4492), + [sym_sigil] = STATE(4492), + [sym_list] = STATE(4492), + [sym_tuple] = STATE(4492), + [sym_bitstring] = STATE(4492), + [sym_map] = STATE(4492), + [sym__nullary_operator] = STATE(4492), + [sym_unary_operator] = STATE(4492), + [sym_binary_operator] = STATE(4492), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4488), - [sym_call] = STATE(4488), + [sym_dot] = STATE(4492), + [sym_call] = STATE(4492), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4488), - [sym_anonymous_function] = STATE(4488), + [sym_access_call] = STATE(4492), + [sym_anonymous_function] = STATE(4492), [aux_sym__terminator_token1] = ACTIONS(1293), [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_LPAREN] = ACTIONS(918), @@ -75105,18 +74871,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75158,7 +74924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -75170,8 +74936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4490), [sym__atom] = STATE(4490), [sym_quoted_atom] = STATE(4490), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), [sym_string] = STATE(4490), @@ -75190,21 +74956,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_access_call] = STATE(4490), [sym_anonymous_function] = STATE(4490), [aux_sym__terminator_token1] = ACTIONS(1307), [anon_sym_SEMI] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1519), [sym_integer] = ACTIONS(1519), [sym_float] = ACTIONS(1519), @@ -75223,18 +74989,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75277,7 +75043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -75289,8 +75055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4490), [sym__atom] = STATE(4490), [sym_quoted_atom] = STATE(4490), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), [sym_string] = STATE(4490), @@ -75309,21 +75075,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_access_call] = STATE(4490), [sym_anonymous_function] = STATE(4490), [aux_sym__terminator_token1] = ACTIONS(1311), [anon_sym_SEMI] = ACTIONS(1313), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1519), [sym_integer] = ACTIONS(1519), [sym_float] = ACTIONS(1519), @@ -75342,18 +75108,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75396,7 +75162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -75408,8 +75174,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4490), [sym__atom] = STATE(4490), [sym_quoted_atom] = STATE(4490), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), [sym_string] = STATE(4490), @@ -75428,21 +75194,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_access_call] = STATE(4490), [sym_anonymous_function] = STATE(4490), [aux_sym__terminator_token1] = ACTIONS(1293), [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1519), [sym_integer] = ACTIONS(1519), [sym_float] = ACTIONS(1519), @@ -75461,18 +75227,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75515,53 +75281,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [350] = { - [sym__expression] = STATE(2941), - [sym_block] = STATE(2941), + [sym__expression] = STATE(3343), + [sym_block] = STATE(3343), [sym_identifier] = STATE(54), - [sym_boolean] = STATE(2941), - [sym_nil] = STATE(2941), - [sym__atom] = STATE(2941), - [sym_quoted_atom] = STATE(2941), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(3343), + [sym_nil] = STATE(3343), + [sym__atom] = STATE(3343), + [sym_quoted_atom] = STATE(3343), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2941), - [sym_charlist] = STATE(2941), - [sym_sigil] = STATE(2941), - [sym_list] = STATE(2941), - [sym_tuple] = STATE(2941), - [sym_bitstring] = STATE(2941), - [sym_map] = STATE(2941), - [sym__nullary_operator] = STATE(2941), - [sym_unary_operator] = STATE(2941), - [sym_binary_operator] = STATE(2941), + [sym_string] = STATE(3343), + [sym_charlist] = STATE(3343), + [sym_sigil] = STATE(3343), + [sym_list] = STATE(3343), + [sym_tuple] = STATE(3343), + [sym_bitstring] = STATE(3343), + [sym_map] = STATE(3343), + [sym__nullary_operator] = STATE(3343), + [sym_unary_operator] = STATE(3343), + [sym_binary_operator] = STATE(3343), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2941), - [sym_call] = STATE(2941), + [sym_dot] = STATE(3343), + [sym_call] = STATE(3343), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2941), - [sym_anonymous_function] = STATE(2941), + [sym_access_call] = STATE(3343), + [sym_anonymous_function] = STATE(3343), [aux_sym__terminator_token1] = ACTIONS(1301), [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1521), [sym_integer] = ACTIONS(1521), [sym_float] = ACTIONS(1521), @@ -75580,18 +75346,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75634,48 +75400,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [351] = { - [sym__expression] = STATE(3298), - [sym_block] = STATE(3298), + [sym__expression] = STATE(3039), + [sym_block] = STATE(3039), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(3298), - [sym_nil] = STATE(3298), - [sym__atom] = STATE(3298), - [sym_quoted_atom] = STATE(3298), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(3039), + [sym_nil] = STATE(3039), + [sym__atom] = STATE(3039), + [sym_quoted_atom] = STATE(3039), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(3298), - [sym_charlist] = STATE(3298), - [sym_sigil] = STATE(3298), - [sym_list] = STATE(3298), - [sym_tuple] = STATE(3298), - [sym_bitstring] = STATE(3298), - [sym_map] = STATE(3298), - [sym__nullary_operator] = STATE(3298), - [sym_unary_operator] = STATE(3298), - [sym_binary_operator] = STATE(3298), + [sym_string] = STATE(3039), + [sym_charlist] = STATE(3039), + [sym_sigil] = STATE(3039), + [sym_list] = STATE(3039), + [sym_tuple] = STATE(3039), + [sym_bitstring] = STATE(3039), + [sym_map] = STATE(3039), + [sym__nullary_operator] = STATE(3039), + [sym_unary_operator] = STATE(3039), + [sym_binary_operator] = STATE(3039), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(3298), - [sym_call] = STATE(3298), + [sym_dot] = STATE(3039), + [sym_call] = STATE(3039), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(3298), - [sym_anonymous_function] = STATE(3298), + [sym_access_call] = STATE(3039), + [sym_anonymous_function] = STATE(3039), [aux_sym__terminator_token1] = ACTIONS(1301), [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_LPAREN] = ACTIONS(918), @@ -75700,18 +75466,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75753,48 +75519,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [352] = { - [sym__expression] = STATE(4488), - [sym_block] = STATE(4488), + [sym__expression] = STATE(4492), + [sym_block] = STATE(4492), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4488), - [sym_nil] = STATE(4488), - [sym__atom] = STATE(4488), - [sym_quoted_atom] = STATE(4488), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4492), + [sym_nil] = STATE(4492), + [sym__atom] = STATE(4492), + [sym_quoted_atom] = STATE(4492), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4488), - [sym_charlist] = STATE(4488), - [sym_sigil] = STATE(4488), - [sym_list] = STATE(4488), - [sym_tuple] = STATE(4488), - [sym_bitstring] = STATE(4488), - [sym_map] = STATE(4488), - [sym__nullary_operator] = STATE(4488), - [sym_unary_operator] = STATE(4488), - [sym_binary_operator] = STATE(4488), + [sym_string] = STATE(4492), + [sym_charlist] = STATE(4492), + [sym_sigil] = STATE(4492), + [sym_list] = STATE(4492), + [sym_tuple] = STATE(4492), + [sym_bitstring] = STATE(4492), + [sym_map] = STATE(4492), + [sym__nullary_operator] = STATE(4492), + [sym_unary_operator] = STATE(4492), + [sym_binary_operator] = STATE(4492), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4488), - [sym_call] = STATE(4488), + [sym_dot] = STATE(4492), + [sym_call] = STATE(4492), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4488), - [sym_anonymous_function] = STATE(4488), + [sym_access_call] = STATE(4492), + [sym_anonymous_function] = STATE(4492), [aux_sym__terminator_token1] = ACTIONS(1311), [anon_sym_SEMI] = ACTIONS(1313), [anon_sym_LPAREN] = ACTIONS(918), @@ -75819,18 +75585,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75872,48 +75638,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [353] = { - [sym__expression] = STATE(4488), - [sym_block] = STATE(4488), + [sym__expression] = STATE(4492), + [sym_block] = STATE(4492), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4488), - [sym_nil] = STATE(4488), - [sym__atom] = STATE(4488), - [sym_quoted_atom] = STATE(4488), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4492), + [sym_nil] = STATE(4492), + [sym__atom] = STATE(4492), + [sym_quoted_atom] = STATE(4492), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4488), - [sym_charlist] = STATE(4488), - [sym_sigil] = STATE(4488), - [sym_list] = STATE(4488), - [sym_tuple] = STATE(4488), - [sym_bitstring] = STATE(4488), - [sym_map] = STATE(4488), - [sym__nullary_operator] = STATE(4488), - [sym_unary_operator] = STATE(4488), - [sym_binary_operator] = STATE(4488), + [sym_string] = STATE(4492), + [sym_charlist] = STATE(4492), + [sym_sigil] = STATE(4492), + [sym_list] = STATE(4492), + [sym_tuple] = STATE(4492), + [sym_bitstring] = STATE(4492), + [sym_map] = STATE(4492), + [sym__nullary_operator] = STATE(4492), + [sym_unary_operator] = STATE(4492), + [sym_binary_operator] = STATE(4492), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4488), - [sym_call] = STATE(4488), + [sym_dot] = STATE(4492), + [sym_call] = STATE(4492), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4488), - [sym_anonymous_function] = STATE(4488), + [sym_access_call] = STATE(4492), + [sym_anonymous_function] = STATE(4492), [aux_sym__terminator_token1] = ACTIONS(1307), [anon_sym_SEMI] = ACTIONS(1309), [anon_sym_LPAREN] = ACTIONS(918), @@ -75938,18 +75704,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -75991,7 +75757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -76003,10 +75769,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4456), [sym__atom] = STATE(4456), [sym_quoted_atom] = STATE(4456), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), [sym_string] = STATE(4456), [sym_charlist] = STATE(4456), [sym_sigil] = STATE(4456), @@ -76020,17 +75786,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6916), [sym_dot] = STATE(4456), [sym_call] = STATE(4456), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), [sym_access_call] = STATE(4456), [sym_anonymous_function] = STATE(4456), [ts_builtin_sym_end] = ACTIONS(1525), @@ -76114,78 +75880,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [355] = { - [sym__expression] = STATE(4192), - [sym_block] = STATE(4192), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4192), - [sym_nil] = STATE(4192), - [sym__atom] = STATE(4192), - [sym_quoted_atom] = STATE(4192), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4192), - [sym_charlist] = STATE(4192), - [sym_sigil] = STATE(4192), - [sym_list] = STATE(4192), - [sym_tuple] = STATE(4192), - [sym_bitstring] = STATE(4192), - [sym_map] = STATE(4192), - [sym__nullary_operator] = STATE(4192), - [sym_unary_operator] = STATE(4192), - [sym__capture_expression] = STATE(4386), - [sym_binary_operator] = STATE(4192), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4192), - [sym_call] = STATE(4192), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4192), - [sym_anonymous_function] = STATE(4192), + [sym__expression] = STATE(2549), + [sym_block] = STATE(2549), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2549), + [sym_nil] = STATE(2549), + [sym__atom] = STATE(2549), + [sym_quoted_atom] = STATE(2549), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2549), + [sym_charlist] = STATE(2549), + [sym_sigil] = STATE(2549), + [sym_list] = STATE(2549), + [sym_tuple] = STATE(2549), + [sym_bitstring] = STATE(2549), + [sym_map] = STATE(2549), + [sym__nullary_operator] = STATE(2549), + [sym_unary_operator] = STATE(2549), + [sym__capture_expression] = STATE(1239), + [sym_binary_operator] = STATE(2549), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2549), + [sym_call] = STATE(2549), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2549), + [sym_anonymous_function] = STATE(2549), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1529), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(1531), [sym_integer] = ACTIONS(1533), [sym_float] = ACTIONS(1531), [sym_char] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -76223,52 +75989,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(231), }, [356] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1535), @@ -76292,18 +76058,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -76345,49 +76111,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [357] = { - [sym__expression] = STATE(2967), - [sym_block] = STATE(2967), + [sym__expression] = STATE(2974), + [sym_block] = STATE(2974), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2967), - [sym_nil] = STATE(2967), - [sym__atom] = STATE(2967), - [sym_quoted_atom] = STATE(2967), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2967), - [sym_charlist] = STATE(2967), - [sym_sigil] = STATE(2967), - [sym_list] = STATE(2967), - [sym_tuple] = STATE(2967), - [sym_bitstring] = STATE(2967), - [sym_map] = STATE(2967), - [sym__nullary_operator] = STATE(2967), - [sym_unary_operator] = STATE(2967), - [sym__capture_expression] = STATE(2968), - [sym_binary_operator] = STATE(2967), + [sym_boolean] = STATE(2974), + [sym_nil] = STATE(2974), + [sym__atom] = STATE(2974), + [sym_quoted_atom] = STATE(2974), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2974), + [sym_charlist] = STATE(2974), + [sym_sigil] = STATE(2974), + [sym_list] = STATE(2974), + [sym_tuple] = STATE(2974), + [sym_bitstring] = STATE(2974), + [sym_map] = STATE(2974), + [sym__nullary_operator] = STATE(2974), + [sym_unary_operator] = STATE(2974), + [sym__capture_expression] = STATE(2975), + [sym_binary_operator] = STATE(2974), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2967), - [sym_call] = STATE(2967), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(2974), + [sym_call] = STATE(2974), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(2967), - [sym_anonymous_function] = STATE(2967), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(2974), + [sym_anonymous_function] = STATE(2974), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1539), [aux_sym_identifier_token1] = ACTIONS(361), @@ -76468,44 +76234,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [358] = { - [sym__expression] = STATE(3236), - [sym_block] = STATE(3236), + [sym__expression] = STATE(3307), + [sym_block] = STATE(3307), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3236), - [sym_nil] = STATE(3236), - [sym__atom] = STATE(3236), - [sym_quoted_atom] = STATE(3236), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3236), - [sym_charlist] = STATE(3236), - [sym_sigil] = STATE(3236), - [sym_list] = STATE(3236), - [sym_tuple] = STATE(3236), - [sym_bitstring] = STATE(3236), - [sym_map] = STATE(3236), - [sym__nullary_operator] = STATE(3236), - [sym_unary_operator] = STATE(3236), - [sym__capture_expression] = STATE(1451), - [sym_binary_operator] = STATE(3236), + [sym_boolean] = STATE(3307), + [sym_nil] = STATE(3307), + [sym__atom] = STATE(3307), + [sym_quoted_atom] = STATE(3307), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3307), + [sym_charlist] = STATE(3307), + [sym_sigil] = STATE(3307), + [sym_list] = STATE(3307), + [sym_tuple] = STATE(3307), + [sym_bitstring] = STATE(3307), + [sym_map] = STATE(3307), + [sym__nullary_operator] = STATE(3307), + [sym_unary_operator] = STATE(3307), + [sym__capture_expression] = STATE(1433), + [sym_binary_operator] = STATE(3307), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3236), - [sym_call] = STATE(3236), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3307), + [sym_call] = STATE(3307), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3236), - [sym_anonymous_function] = STATE(3236), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3307), + [sym_anonymous_function] = STATE(3307), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1545), [aux_sym_identifier_token1] = ACTIONS(450), @@ -76531,7 +76297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(458), [anon_sym_PLUS] = ACTIONS(463), [anon_sym_DASH] = ACTIONS(463), @@ -76586,44 +76352,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [359] = { - [sym__expression] = STATE(1802), - [sym_block] = STATE(1802), + [sym__expression] = STATE(1830), + [sym_block] = STATE(1830), [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1802), - [sym_nil] = STATE(1802), - [sym__atom] = STATE(1802), - [sym_quoted_atom] = STATE(1802), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1802), - [sym_charlist] = STATE(1802), - [sym_sigil] = STATE(1802), - [sym_list] = STATE(1802), - [sym_tuple] = STATE(1802), - [sym_bitstring] = STATE(1802), - [sym_map] = STATE(1802), - [sym__nullary_operator] = STATE(1802), - [sym_unary_operator] = STATE(1802), - [sym__capture_expression] = STATE(1760), - [sym_binary_operator] = STATE(1802), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1802), - [sym_call] = STATE(1802), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1830), + [sym_nil] = STATE(1830), + [sym__atom] = STATE(1830), + [sym_quoted_atom] = STATE(1830), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1830), + [sym_charlist] = STATE(1830), + [sym_sigil] = STATE(1830), + [sym_list] = STATE(1830), + [sym_tuple] = STATE(1830), + [sym_bitstring] = STATE(1830), + [sym_map] = STATE(1830), + [sym__nullary_operator] = STATE(1830), + [sym_unary_operator] = STATE(1830), + [sym__capture_expression] = STATE(1733), + [sym_binary_operator] = STATE(1830), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1830), + [sym_call] = STATE(1830), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1802), - [sym_anonymous_function] = STATE(1802), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1830), + [sym_anonymous_function] = STATE(1830), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1551), [aux_sym_identifier_token1] = ACTIONS(65), @@ -76704,78 +76470,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [360] = { - [sym__expression] = STATE(4442), - [sym_block] = STATE(4442), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4442), - [sym_nil] = STATE(4442), - [sym__atom] = STATE(4442), - [sym_quoted_atom] = STATE(4442), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4442), - [sym_charlist] = STATE(4442), - [sym_sigil] = STATE(4442), - [sym_list] = STATE(4442), - [sym_tuple] = STATE(4442), - [sym_bitstring] = STATE(4442), - [sym_map] = STATE(4442), - [sym__nullary_operator] = STATE(4442), - [sym_unary_operator] = STATE(4442), - [sym__capture_expression] = STATE(3445), - [sym_binary_operator] = STATE(4442), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4442), - [sym_call] = STATE(4442), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4442), - [sym_anonymous_function] = STATE(4442), + [sym__expression] = STATE(4397), + [sym_block] = STATE(4397), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4397), + [sym_nil] = STATE(4397), + [sym__atom] = STATE(4397), + [sym_quoted_atom] = STATE(4397), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4397), + [sym_charlist] = STATE(4397), + [sym_sigil] = STATE(4397), + [sym_list] = STATE(4397), + [sym_tuple] = STATE(4397), + [sym_bitstring] = STATE(4397), + [sym_map] = STATE(4397), + [sym__nullary_operator] = STATE(4397), + [sym_unary_operator] = STATE(4397), + [sym__capture_expression] = STATE(2030), + [sym_binary_operator] = STATE(4397), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4397), + [sym_call] = STATE(4397), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4397), + [sym_anonymous_function] = STATE(4397), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1557), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1559), [sym_integer] = ACTIONS(1561), [sym_float] = ACTIONS(1559), [sym_char] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -76813,65 +76579,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(958), }, [361] = { - [sym__expression] = STATE(2144), - [sym_block] = STATE(2144), + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2144), - [sym_nil] = STATE(2144), - [sym__atom] = STATE(2144), - [sym_quoted_atom] = STATE(2144), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2144), - [sym_charlist] = STATE(2144), - [sym_sigil] = STATE(2144), - [sym_list] = STATE(2144), - [sym_tuple] = STATE(2144), - [sym_bitstring] = STATE(2144), - [sym_map] = STATE(2144), - [sym__nullary_operator] = STATE(2144), - [sym_unary_operator] = STATE(2144), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [sym_list] = STATE(2183), + [sym_tuple] = STATE(2183), + [sym_bitstring] = STATE(2183), + [sym_map] = STATE(2183), + [sym__nullary_operator] = STATE(2183), + [sym_unary_operator] = STATE(2183), [sym__capture_expression] = STATE(1997), - [sym_binary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2183), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2144), - [sym_call] = STATE(2144), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2144), - [sym_anonymous_function] = STATE(2144), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1557), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(1565), - [sym_integer] = ACTIONS(1567), - [sym_float] = ACTIONS(1565), - [sym_char] = ACTIONS(1565), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1565), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1565), + [sym_atom] = ACTIONS(1563), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -76940,46 +76706,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [362] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1567), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1537), @@ -77000,18 +76766,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -77053,83 +76819,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [363] = { - [sym__expression] = STATE(4372), - [sym_block] = STATE(4372), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4372), - [sym_nil] = STATE(4372), - [sym__atom] = STATE(4372), - [sym_quoted_atom] = STATE(4372), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4372), - [sym_charlist] = STATE(4372), - [sym_sigil] = STATE(4372), - [sym_list] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_bitstring] = STATE(4372), - [sym_map] = STATE(4372), - [sym__nullary_operator] = STATE(4372), - [sym_unary_operator] = STATE(4372), - [sym__capture_expression] = STATE(1997), - [sym_binary_operator] = STATE(4372), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4372), - [sym_call] = STATE(4372), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4372), - [sym_anonymous_function] = STATE(4372), + [sym__expression] = STATE(4470), + [sym_block] = STATE(4470), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4470), + [sym_nil] = STATE(4470), + [sym__atom] = STATE(4470), + [sym_quoted_atom] = STATE(4470), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4470), + [sym_charlist] = STATE(4470), + [sym_sigil] = STATE(4470), + [sym_list] = STATE(4470), + [sym_tuple] = STATE(4470), + [sym_bitstring] = STATE(4470), + [sym_map] = STATE(4470), + [sym__nullary_operator] = STATE(4470), + [sym_unary_operator] = STATE(4470), + [sym__capture_expression] = STATE(3247), + [sym_binary_operator] = STATE(4470), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4470), + [sym_call] = STATE(4470), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4470), + [sym_anonymous_function] = STATE(4470), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1563), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1569), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1571), - [sym_integer] = ACTIONS(1567), + [sym_integer] = ACTIONS(1573), [sym_float] = ACTIONS(1571), [sym_char] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -77167,59 +76933,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, [364] = { - [sym__expression] = STATE(3236), - [sym_block] = STATE(3236), + [sym__expression] = STATE(3307), + [sym_block] = STATE(3307), [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3236), - [sym_nil] = STATE(3236), - [sym__atom] = STATE(3236), - [sym_quoted_atom] = STATE(3236), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3236), - [sym_charlist] = STATE(3236), - [sym_sigil] = STATE(3236), - [sym_list] = STATE(3236), - [sym_tuple] = STATE(3236), - [sym_bitstring] = STATE(3236), - [sym_map] = STATE(3236), - [sym__nullary_operator] = STATE(3236), - [sym_unary_operator] = STATE(3236), - [sym__capture_expression] = STATE(1456), - [sym_binary_operator] = STATE(3236), + [sym_boolean] = STATE(3307), + [sym_nil] = STATE(3307), + [sym__atom] = STATE(3307), + [sym_quoted_atom] = STATE(3307), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3307), + [sym_charlist] = STATE(3307), + [sym_sigil] = STATE(3307), + [sym_list] = STATE(3307), + [sym_tuple] = STATE(3307), + [sym_bitstring] = STATE(3307), + [sym_map] = STATE(3307), + [sym__nullary_operator] = STATE(3307), + [sym_unary_operator] = STATE(3307), + [sym__capture_expression] = STATE(1404), + [sym_binary_operator] = STATE(3307), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3236), - [sym_call] = STATE(3236), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(3307), + [sym_call] = STATE(3307), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3236), - [sym_anonymous_function] = STATE(3236), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3307), + [sym_anonymous_function] = STATE(3307), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1545), [aux_sym_identifier_token1] = ACTIONS(450), [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(1547), - [sym_integer] = ACTIONS(1573), + [sym_integer] = ACTIONS(1575), [sym_float] = ACTIONS(1547), [sym_char] = ACTIONS(1547), [anon_sym_true] = ACTIONS(241), @@ -77239,7 +77005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(458), [anon_sym_PLUS] = ACTIONS(463), [anon_sym_DASH] = ACTIONS(463), @@ -77294,78 +77060,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [365] = { - [sym__expression] = STATE(4579), - [sym_block] = STATE(4579), - [sym_identifier] = STATE(110), - [sym_boolean] = STATE(4579), - [sym_nil] = STATE(4579), - [sym__atom] = STATE(4561), - [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4579), - [sym_charlist] = STATE(4579), - [sym_sigil] = STATE(4579), - [sym_list] = STATE(4579), - [sym_tuple] = STATE(4579), - [sym_bitstring] = STATE(4579), - [sym_map] = STATE(4579), - [sym_struct] = STATE(6879), - [sym__nullary_operator] = STATE(4579), - [sym_unary_operator] = STATE(4561), - [sym_binary_operator] = STATE(4579), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4561), - [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4579), - [sym_anonymous_function] = STATE(4579), + [sym__expression] = STATE(1830), + [sym_block] = STATE(1830), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1830), + [sym_nil] = STATE(1830), + [sym__atom] = STATE(1830), + [sym_quoted_atom] = STATE(1830), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1830), + [sym_charlist] = STATE(1830), + [sym_sigil] = STATE(1830), + [sym_list] = STATE(1830), + [sym_tuple] = STATE(1830), + [sym_bitstring] = STATE(1830), + [sym_map] = STATE(1830), + [sym__nullary_operator] = STATE(1830), + [sym_unary_operator] = STATE(1830), + [sym__capture_expression] = STATE(1739), + [sym_binary_operator] = STATE(1830), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1830), + [sym_call] = STATE(1830), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1830), + [sym_anonymous_function] = STATE(1830), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1551), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1553), [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1063), + [sym_float] = ACTIONS(1553), + [sym_char] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1553), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -77403,65 +77169,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(117), }, [366] = { - [sym__expression] = STATE(3694), - [sym_block] = STATE(3694), + [sym__expression] = STATE(4026), + [sym_block] = STATE(4026), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3694), - [sym_nil] = STATE(3694), - [sym__atom] = STATE(3694), - [sym_quoted_atom] = STATE(3694), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3694), - [sym_charlist] = STATE(3694), - [sym_sigil] = STATE(3694), - [sym_list] = STATE(3694), - [sym_tuple] = STATE(3694), - [sym_bitstring] = STATE(3694), - [sym_map] = STATE(3694), - [sym__nullary_operator] = STATE(3694), - [sym_unary_operator] = STATE(3694), - [sym__capture_expression] = STATE(3784), - [sym_binary_operator] = STATE(3694), + [sym_boolean] = STATE(4026), + [sym_nil] = STATE(4026), + [sym__atom] = STATE(4026), + [sym_quoted_atom] = STATE(4026), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(4026), + [sym_charlist] = STATE(4026), + [sym_sigil] = STATE(4026), + [sym_list] = STATE(4026), + [sym_tuple] = STATE(4026), + [sym_bitstring] = STATE(4026), + [sym_map] = STATE(4026), + [sym__nullary_operator] = STATE(4026), + [sym_unary_operator] = STATE(4026), + [sym__capture_expression] = STATE(3999), + [sym_binary_operator] = STATE(4026), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3694), - [sym_call] = STATE(3694), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(4026), + [sym_call] = STATE(4026), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3694), - [sym_anonymous_function] = STATE(3694), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(4026), + [sym_anonymous_function] = STATE(4026), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), [aux_sym_identifier_token1] = ACTIONS(594), [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(1583), - [sym_integer] = ACTIONS(1585), - [sym_float] = ACTIONS(1583), - [sym_char] = ACTIONS(1583), + [sym_alias] = ACTIONS(1581), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1581), + [sym_char] = ACTIONS(1581), [anon_sym_true] = ACTIONS(598), [anon_sym_false] = ACTIONS(598), [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(1583), + [sym_atom] = ACTIONS(1581), [anon_sym_DQUOTE] = ACTIONS(602), [anon_sym_SQUOTE] = ACTIONS(604), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), @@ -77475,7 +77241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(614), [anon_sym_LT_LT] = ACTIONS(618), [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(624), [anon_sym_DASH] = ACTIONS(624), @@ -77537,10 +77303,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(3189), [sym__atom] = STATE(3189), [sym_quoted_atom] = STATE(3189), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), [sym_string] = STATE(3189), [sym_charlist] = STATE(3189), [sym_sigil] = STATE(3189), @@ -77550,36 +77316,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3189), [sym__nullary_operator] = STATE(3189), [sym_unary_operator] = STATE(3189), - [sym__capture_expression] = STATE(1456), + [sym__capture_expression] = STATE(1404), [sym_binary_operator] = STATE(3189), [sym_operator_identifier] = STATE(6959), [sym_dot] = STATE(3189), [sym_call] = STATE(3189), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), [sym_access_call] = STATE(3189), [sym_anonymous_function] = STATE(3189), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1545), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(1587), - [sym_integer] = ACTIONS(1573), - [sym_float] = ACTIONS(1587), - [sym_char] = ACTIONS(1587), + [sym_alias] = ACTIONS(1585), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1585), + [sym_char] = ACTIONS(1585), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1587), + [sym_atom] = ACTIONS(1585), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -77593,7 +77359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(435), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(444), [anon_sym_DASH] = ACTIONS(444), @@ -77648,46 +77414,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [368] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1587), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1537), @@ -77708,18 +77474,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -77761,61 +77527,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [369] = { - [sym__expression] = STATE(3694), - [sym_block] = STATE(3694), + [sym__expression] = STATE(4026), + [sym_block] = STATE(4026), [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3694), - [sym_nil] = STATE(3694), - [sym__atom] = STATE(3694), - [sym_quoted_atom] = STATE(3694), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3694), - [sym_charlist] = STATE(3694), - [sym_sigil] = STATE(3694), - [sym_list] = STATE(3694), - [sym_tuple] = STATE(3694), - [sym_bitstring] = STATE(3694), - [sym_map] = STATE(3694), - [sym__nullary_operator] = STATE(3694), - [sym_unary_operator] = STATE(3694), - [sym__capture_expression] = STATE(3695), - [sym_binary_operator] = STATE(3694), + [sym_boolean] = STATE(4026), + [sym_nil] = STATE(4026), + [sym__atom] = STATE(4026), + [sym_quoted_atom] = STATE(4026), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(4026), + [sym_charlist] = STATE(4026), + [sym_sigil] = STATE(4026), + [sym_list] = STATE(4026), + [sym_tuple] = STATE(4026), + [sym_bitstring] = STATE(4026), + [sym_map] = STATE(4026), + [sym__nullary_operator] = STATE(4026), + [sym_unary_operator] = STATE(4026), + [sym__capture_expression] = STATE(4025), + [sym_binary_operator] = STATE(4026), [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3694), - [sym_call] = STATE(3694), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), + [sym_dot] = STATE(4026), + [sym_call] = STATE(4026), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), [sym__remote_call_with_parentheses] = STATE(2694), [sym__remote_dot] = STATE(59), [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3694), - [sym_anonymous_function] = STATE(3694), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(4026), + [sym_anonymous_function] = STATE(4026), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), [aux_sym_identifier_token1] = ACTIONS(594), [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(1583), - [sym_integer] = ACTIONS(1591), - [sym_float] = ACTIONS(1583), - [sym_char] = ACTIONS(1583), + [sym_alias] = ACTIONS(1581), + [sym_integer] = ACTIONS(1589), + [sym_float] = ACTIONS(1581), + [sym_char] = ACTIONS(1581), [anon_sym_true] = ACTIONS(598), [anon_sym_false] = ACTIONS(598), [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(1583), + [sym_atom] = ACTIONS(1581), [anon_sym_DQUOTE] = ACTIONS(602), [anon_sym_SQUOTE] = ACTIONS(604), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), @@ -77829,7 +77595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(614), [anon_sym_LT_LT] = ACTIONS(618), [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(622), [anon_sym_PLUS] = ACTIONS(624), [anon_sym_DASH] = ACTIONS(624), @@ -77891,10 +77657,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -77909,36 +77675,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1595), [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), @@ -77948,14 +77714,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -77997,66 +77763,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [371] = { - [sym__expression] = STATE(4566), - [sym_block] = STATE(4566), + [sym__expression] = STATE(4556), + [sym_block] = STATE(4556), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4566), - [sym_nil] = STATE(4566), - [sym__atom] = STATE(4566), - [sym_quoted_atom] = STATE(4566), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4566), - [sym_charlist] = STATE(4566), - [sym_sigil] = STATE(4566), - [sym_list] = STATE(4566), - [sym_tuple] = STATE(4566), - [sym_bitstring] = STATE(4566), - [sym_map] = STATE(4566), - [sym__nullary_operator] = STATE(4566), - [sym_unary_operator] = STATE(4566), - [sym_binary_operator] = STATE(4566), + [sym_boolean] = STATE(4556), + [sym_nil] = STATE(4556), + [sym__atom] = STATE(4556), + [sym_quoted_atom] = STATE(4556), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4556), + [sym_charlist] = STATE(4556), + [sym_sigil] = STATE(4556), + [sym_list] = STATE(4556), + [sym_tuple] = STATE(4556), + [sym_bitstring] = STATE(4556), + [sym_map] = STATE(4556), + [sym__nullary_operator] = STATE(4556), + [sym_unary_operator] = STATE(4556), + [sym_binary_operator] = STATE(4556), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4566), - [sym_call] = STATE(4566), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4556), + [sym_call] = STATE(4556), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4566), - [sym_anonymous_function] = STATE(4566), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4556), + [sym_anonymous_function] = STATE(4556), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1595), - [sym_integer] = ACTIONS(1595), - [sym_float] = ACTIONS(1595), - [sym_char] = ACTIONS(1595), + [sym_alias] = ACTIONS(1597), + [sym_integer] = ACTIONS(1597), + [sym_float] = ACTIONS(1597), + [sym_char] = ACTIONS(1597), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1595), + [sym_atom] = ACTIONS(1597), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1599), [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), @@ -78127,10 +77893,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(2477), [sym__atom] = STATE(2477), [sym_quoted_atom] = STATE(2477), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), [sym_string] = STATE(2477), [sym_charlist] = STATE(2477), [sym_sigil] = STATE(2477), @@ -78140,36 +77906,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(2477), [sym__nullary_operator] = STATE(2477), [sym_unary_operator] = STATE(2477), - [sym__capture_expression] = STATE(2136), + [sym__capture_expression] = STATE(2247), [sym_binary_operator] = STATE(2477), [sym_operator_identifier] = STATE(6938), [sym_dot] = STATE(2477), [sym_call] = STATE(2477), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), [sym_access_call] = STATE(2477), [sym_anonymous_function] = STATE(2477), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1601), - [sym_integer] = ACTIONS(1603), - [sym_float] = ACTIONS(1601), - [sym_char] = ACTIONS(1601), + [sym_alias] = ACTIONS(1603), + [sym_integer] = ACTIONS(1605), + [sym_float] = ACTIONS(1603), + [sym_char] = ACTIONS(1603), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1601), + [sym_atom] = ACTIONS(1603), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -78238,46 +78004,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [373] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1607), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1537), @@ -78298,18 +78064,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -78351,7 +78117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -78363,10 +78129,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4573), [sym__atom] = STATE(4573), [sym_quoted_atom] = STATE(4573), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4573), [sym_charlist] = STATE(4573), [sym_sigil] = STATE(4573), @@ -78380,37 +78146,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4573), [sym_call] = STATE(4573), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4573), [sym_anonymous_function] = STATE(4573), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1607), - [sym_integer] = ACTIONS(1607), - [sym_float] = ACTIONS(1607), - [sym_char] = ACTIONS(1607), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1609), + [sym_float] = ACTIONS(1609), + [sym_char] = ACTIONS(1609), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1607), + [sym_atom] = ACTIONS(1609), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1611), [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), @@ -78481,10 +78247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(2477), [sym__atom] = STATE(2477), [sym_quoted_atom] = STATE(2477), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), [sym_string] = STATE(2477), [sym_charlist] = STATE(2477), [sym_sigil] = STATE(2477), @@ -78494,36 +78260,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(2477), [sym__nullary_operator] = STATE(2477), [sym_unary_operator] = STATE(2477), - [sym__capture_expression] = STATE(2188), + [sym__capture_expression] = STATE(2259), [sym_binary_operator] = STATE(2477), [sym_operator_identifier] = STATE(6938), [sym_dot] = STATE(2477), [sym_call] = STATE(2477), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), [sym_access_call] = STATE(2477), [sym_anonymous_function] = STATE(2477), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1601), - [sym_integer] = ACTIONS(1611), - [sym_float] = ACTIONS(1601), - [sym_char] = ACTIONS(1601), + [sym_alias] = ACTIONS(1603), + [sym_integer] = ACTIONS(1613), + [sym_float] = ACTIONS(1603), + [sym_char] = ACTIONS(1603), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1601), + [sym_atom] = ACTIONS(1603), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -78592,46 +78358,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [376] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1613), + [anon_sym_RPAREN] = ACTIONS(1615), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1537), @@ -78652,18 +78418,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -78705,61 +78471,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [377] = { - [sym__expression] = STATE(2144), - [sym_block] = STATE(2144), + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2144), - [sym_nil] = STATE(2144), - [sym__atom] = STATE(2144), - [sym_quoted_atom] = STATE(2144), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2144), - [sym_charlist] = STATE(2144), - [sym_sigil] = STATE(2144), - [sym_list] = STATE(2144), - [sym_tuple] = STATE(2144), - [sym_bitstring] = STATE(2144), - [sym_map] = STATE(2144), - [sym__nullary_operator] = STATE(2144), - [sym_unary_operator] = STATE(2144), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [sym_list] = STATE(2183), + [sym_tuple] = STATE(2183), + [sym_bitstring] = STATE(2183), + [sym_map] = STATE(2183), + [sym__nullary_operator] = STATE(2183), + [sym_unary_operator] = STATE(2183), [sym__capture_expression] = STATE(2030), - [sym_binary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2183), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2144), - [sym_call] = STATE(2144), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2144), - [sym_anonymous_function] = STATE(2144), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1557), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(1565), - [sym_integer] = ACTIONS(1615), - [sym_float] = ACTIONS(1565), - [sym_char] = ACTIONS(1565), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1561), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1565), + [sym_atom] = ACTIONS(1563), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -78828,56 +78594,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(958), }, [378] = { - [sym__expression] = STATE(2439), - [sym_block] = STATE(2439), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2439), - [sym_nil] = STATE(2439), - [sym__atom] = STATE(2439), - [sym_quoted_atom] = STATE(2439), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2439), - [sym_charlist] = STATE(2439), - [sym_sigil] = STATE(2439), - [sym_list] = STATE(2439), - [sym_tuple] = STATE(2439), - [sym_bitstring] = STATE(2439), - [sym_map] = STATE(2439), - [sym__nullary_operator] = STATE(2439), - [sym_unary_operator] = STATE(2439), - [sym__capture_expression] = STATE(1227), - [sym_binary_operator] = STATE(2439), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2439), - [sym_call] = STATE(2439), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2439), - [sym_anonymous_function] = STATE(2439), + [sym__expression] = STATE(4500), + [sym_block] = STATE(4500), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4500), + [sym_nil] = STATE(4500), + [sym__atom] = STATE(4500), + [sym_quoted_atom] = STATE(4500), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4500), + [sym_charlist] = STATE(4500), + [sym_sigil] = STATE(4500), + [sym_list] = STATE(4500), + [sym_tuple] = STATE(4500), + [sym_bitstring] = STATE(4500), + [sym_map] = STATE(4500), + [sym__nullary_operator] = STATE(4500), + [sym_unary_operator] = STATE(4500), + [sym__capture_expression] = STATE(4499), + [sym_binary_operator] = STATE(4500), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4500), + [sym_call] = STATE(4500), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4500), + [sym_anonymous_function] = STATE(4500), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1617), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(1619), [sym_integer] = ACTIONS(1621), [sym_float] = ACTIONS(1619), [sym_char] = ACTIONS(1619), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1131), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1133), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(1135), + }, + [379] = { + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RPAREN] = ACTIONS(1623), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(1537), + [sym_integer] = ACTIONS(1537), + [sym_float] = ACTIONS(1537), + [sym_char] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(954), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1367), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(958), + }, + [380] = { + [sym__expression] = STATE(1424), + [sym_block] = STATE(1424), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1424), + [sym_nil] = STATE(1424), + [sym__atom] = STATE(1424), + [sym_quoted_atom] = STATE(1424), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1424), + [sym_charlist] = STATE(1424), + [sym_sigil] = STATE(1424), + [sym_list] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_bitstring] = STATE(1424), + [sym_map] = STATE(1424), + [sym__nullary_operator] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym__capture_expression] = STATE(1248), + [sym_binary_operator] = STATE(1424), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1424), + [sym_call] = STATE(1424), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1424), + [sym_anonymous_function] = STATE(1424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1529), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(1625), + [sym_integer] = ACTIONS(1627), + [sym_float] = ACTIONS(1625), + [sym_char] = ACTIONS(1625), [anon_sym_true] = ACTIONS(195), [anon_sym_false] = ACTIONS(195), [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1619), + [sym_atom] = ACTIONS(1625), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), @@ -78887,255 +78889,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(211), [anon_sym_LT_LT] = ACTIONS(215), [anon_sym_PERCENT] = ACTIONS(217), [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), - }, - [379] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1623), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1537), - [sym_integer] = ACTIONS(1537), - [sym_float] = ACTIONS(1537), - [sym_char] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), - }, - [380] = { - [sym__expression] = STATE(1504), - [sym_block] = STATE(1504), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1504), - [sym_nil] = STATE(1504), - [sym__atom] = STATE(1504), - [sym_quoted_atom] = STATE(1504), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1504), - [sym_charlist] = STATE(1504), - [sym_sigil] = STATE(1504), - [sym_list] = STATE(1504), - [sym_tuple] = STATE(1504), - [sym_bitstring] = STATE(1504), - [sym_map] = STATE(1504), - [sym__nullary_operator] = STATE(1504), - [sym_unary_operator] = STATE(1504), - [sym__capture_expression] = STATE(1168), - [sym_binary_operator] = STATE(1504), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1504), - [sym_call] = STATE(1504), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1504), - [sym_anonymous_function] = STATE(1504), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1617), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1625), - [sym_integer] = ACTIONS(1627), - [sym_float] = ACTIONS(1625), - [sym_char] = ACTIONS(1625), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -79182,56 +78948,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [381] = { - [sym__expression] = STATE(2439), - [sym_block] = STATE(2439), + [sym__expression] = STATE(2549), + [sym_block] = STATE(2549), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2439), - [sym_nil] = STATE(2439), - [sym__atom] = STATE(2439), - [sym_quoted_atom] = STATE(2439), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2439), - [sym_charlist] = STATE(2439), - [sym_sigil] = STATE(2439), - [sym_list] = STATE(2439), - [sym_tuple] = STATE(2439), - [sym_bitstring] = STATE(2439), - [sym_map] = STATE(2439), - [sym__nullary_operator] = STATE(2439), - [sym_unary_operator] = STATE(2439), - [sym__capture_expression] = STATE(1168), - [sym_binary_operator] = STATE(2439), + [sym_boolean] = STATE(2549), + [sym_nil] = STATE(2549), + [sym__atom] = STATE(2549), + [sym_quoted_atom] = STATE(2549), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2549), + [sym_charlist] = STATE(2549), + [sym_sigil] = STATE(2549), + [sym_list] = STATE(2549), + [sym_tuple] = STATE(2549), + [sym_bitstring] = STATE(2549), + [sym_map] = STATE(2549), + [sym__nullary_operator] = STATE(2549), + [sym_unary_operator] = STATE(2549), + [sym__capture_expression] = STATE(1248), + [sym_binary_operator] = STATE(2549), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2439), - [sym_call] = STATE(2439), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2549), + [sym_call] = STATE(2549), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2439), - [sym_anonymous_function] = STATE(2439), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2549), + [sym_anonymous_function] = STATE(2549), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1529), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(1619), + [sym_alias] = ACTIONS(1531), [sym_integer] = ACTIONS(1627), - [sym_float] = ACTIONS(1619), - [sym_char] = ACTIONS(1619), + [sym_float] = ACTIONS(1531), + [sym_char] = ACTIONS(1531), [anon_sym_true] = ACTIONS(195), [anon_sym_false] = ACTIONS(195), [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1619), + [sym_atom] = ACTIONS(1531), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), @@ -79300,50 +79066,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [382] = { - [sym__expression] = STATE(1504), - [sym_block] = STATE(1504), + [sym__expression] = STATE(1424), + [sym_block] = STATE(1424), [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1504), - [sym_nil] = STATE(1504), - [sym__atom] = STATE(1504), - [sym_quoted_atom] = STATE(1504), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1504), - [sym_charlist] = STATE(1504), - [sym_sigil] = STATE(1504), - [sym_list] = STATE(1504), - [sym_tuple] = STATE(1504), - [sym_bitstring] = STATE(1504), - [sym_map] = STATE(1504), - [sym__nullary_operator] = STATE(1504), - [sym_unary_operator] = STATE(1504), - [sym__capture_expression] = STATE(1227), - [sym_binary_operator] = STATE(1504), + [sym_boolean] = STATE(1424), + [sym_nil] = STATE(1424), + [sym__atom] = STATE(1424), + [sym_quoted_atom] = STATE(1424), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1424), + [sym_charlist] = STATE(1424), + [sym_sigil] = STATE(1424), + [sym_list] = STATE(1424), + [sym_tuple] = STATE(1424), + [sym_bitstring] = STATE(1424), + [sym_map] = STATE(1424), + [sym__nullary_operator] = STATE(1424), + [sym_unary_operator] = STATE(1424), + [sym__capture_expression] = STATE(1239), + [sym_binary_operator] = STATE(1424), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1504), - [sym_call] = STATE(1504), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(1424), + [sym_call] = STATE(1424), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1504), - [sym_anonymous_function] = STATE(1504), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1424), + [sym_anonymous_function] = STATE(1424), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_LPAREN] = ACTIONS(1529), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(1625), - [sym_integer] = ACTIONS(1621), + [sym_integer] = ACTIONS(1533), [sym_float] = ACTIONS(1625), [sym_char] = ACTIONS(1625), [anon_sym_true] = ACTIONS(195), @@ -79418,44 +79184,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [383] = { - [sym__expression] = STATE(1580), - [sym_block] = STATE(1580), + [sym__expression] = STATE(1732), + [sym_block] = STATE(1732), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1580), - [sym_nil] = STATE(1580), - [sym__atom] = STATE(1580), - [sym_quoted_atom] = STATE(1580), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1580), - [sym_charlist] = STATE(1580), - [sym_sigil] = STATE(1580), - [sym_list] = STATE(1580), - [sym_tuple] = STATE(1580), - [sym_bitstring] = STATE(1580), - [sym_map] = STATE(1580), - [sym__nullary_operator] = STATE(1580), - [sym_unary_operator] = STATE(1580), - [sym__capture_expression] = STATE(1451), - [sym_binary_operator] = STATE(1580), + [sym_boolean] = STATE(1732), + [sym_nil] = STATE(1732), + [sym__atom] = STATE(1732), + [sym_quoted_atom] = STATE(1732), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1732), + [sym_charlist] = STATE(1732), + [sym_sigil] = STATE(1732), + [sym_list] = STATE(1732), + [sym_tuple] = STATE(1732), + [sym_bitstring] = STATE(1732), + [sym_map] = STATE(1732), + [sym__nullary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1732), + [sym__capture_expression] = STATE(1433), + [sym_binary_operator] = STATE(1732), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1580), - [sym_call] = STATE(1580), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1732), + [sym_call] = STATE(1732), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1580), - [sym_anonymous_function] = STATE(1580), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1732), + [sym_anonymous_function] = STATE(1732), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1545), [aux_sym_identifier_token1] = ACTIONS(191), @@ -79481,7 +79247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(265), [anon_sym_PLUS] = ACTIONS(267), [anon_sym_DASH] = ACTIONS(267), @@ -79536,50 +79302,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [384] = { - [sym__expression] = STATE(4121), - [sym_block] = STATE(4121), + [sym__expression] = STATE(4073), + [sym_block] = STATE(4073), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4121), - [sym_nil] = STATE(4121), - [sym__atom] = STATE(4121), - [sym_quoted_atom] = STATE(4121), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4073), + [sym_nil] = STATE(4073), + [sym__atom] = STATE(4073), + [sym_quoted_atom] = STATE(4073), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4121), - [sym_charlist] = STATE(4121), - [sym_sigil] = STATE(4121), - [sym_list] = STATE(4121), - [sym_tuple] = STATE(4121), - [sym_bitstring] = STATE(4121), - [sym_map] = STATE(4121), - [sym__nullary_operator] = STATE(4121), - [sym_unary_operator] = STATE(4121), + [sym_string] = STATE(4073), + [sym_charlist] = STATE(4073), + [sym_sigil] = STATE(4073), + [sym_list] = STATE(4073), + [sym_tuple] = STATE(4073), + [sym_bitstring] = STATE(4073), + [sym_map] = STATE(4073), + [sym__nullary_operator] = STATE(4073), + [sym_unary_operator] = STATE(4073), [sym__capture_expression] = STATE(2030), - [sym_binary_operator] = STATE(4121), + [sym_binary_operator] = STATE(4073), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4121), - [sym_call] = STATE(4121), + [sym_dot] = STATE(4073), + [sym_call] = STATE(4073), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4121), - [sym_anonymous_function] = STATE(4121), + [sym_access_call] = STATE(4073), + [sym_anonymous_function] = STATE(4073), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1557), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1631), - [sym_integer] = ACTIONS(1615), + [sym_integer] = ACTIONS(1561), [sym_float] = ACTIONS(1631), [sym_char] = ACTIONS(1631), [anon_sym_true] = ACTIONS(922), @@ -79596,18 +79362,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -79649,48 +79415,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [385] = { - [sym__expression] = STATE(4554), - [sym_block] = STATE(4554), + [sym__expression] = STATE(4568), + [sym_block] = STATE(4568), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4554), - [sym_nil] = STATE(4554), - [sym__atom] = STATE(4554), - [sym_quoted_atom] = STATE(4554), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4554), - [sym_charlist] = STATE(4554), - [sym_sigil] = STATE(4554), - [sym_list] = STATE(4554), - [sym_tuple] = STATE(4554), - [sym_bitstring] = STATE(4554), - [sym_map] = STATE(4554), - [sym__nullary_operator] = STATE(4554), - [sym_unary_operator] = STATE(4554), - [sym_binary_operator] = STATE(4554), + [sym_boolean] = STATE(4568), + [sym_nil] = STATE(4568), + [sym__atom] = STATE(4568), + [sym_quoted_atom] = STATE(4568), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4568), + [sym_charlist] = STATE(4568), + [sym_sigil] = STATE(4568), + [sym_list] = STATE(4568), + [sym_tuple] = STATE(4568), + [sym_bitstring] = STATE(4568), + [sym_map] = STATE(4568), + [sym__nullary_operator] = STATE(4568), + [sym_unary_operator] = STATE(4568), + [sym_binary_operator] = STATE(4568), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4554), - [sym_call] = STATE(4554), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4568), + [sym_call] = STATE(4568), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4554), - [sym_anonymous_function] = STATE(4554), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4568), + [sym_anonymous_function] = STATE(4568), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -79772,50 +79538,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [386] = { - [sym__expression] = STATE(1580), - [sym_block] = STATE(1580), + [sym__expression] = STATE(1732), + [sym_block] = STATE(1732), [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1580), - [sym_nil] = STATE(1580), - [sym__atom] = STATE(1580), - [sym_quoted_atom] = STATE(1580), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1580), - [sym_charlist] = STATE(1580), - [sym_sigil] = STATE(1580), - [sym_list] = STATE(1580), - [sym_tuple] = STATE(1580), - [sym_bitstring] = STATE(1580), - [sym_map] = STATE(1580), - [sym__nullary_operator] = STATE(1580), - [sym_unary_operator] = STATE(1580), - [sym__capture_expression] = STATE(1456), - [sym_binary_operator] = STATE(1580), + [sym_boolean] = STATE(1732), + [sym_nil] = STATE(1732), + [sym__atom] = STATE(1732), + [sym_quoted_atom] = STATE(1732), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1732), + [sym_charlist] = STATE(1732), + [sym_sigil] = STATE(1732), + [sym_list] = STATE(1732), + [sym_tuple] = STATE(1732), + [sym_bitstring] = STATE(1732), + [sym_map] = STATE(1732), + [sym__nullary_operator] = STATE(1732), + [sym_unary_operator] = STATE(1732), + [sym__capture_expression] = STATE(1404), + [sym_binary_operator] = STATE(1732), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1580), - [sym_call] = STATE(1580), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym_dot] = STATE(1732), + [sym_call] = STATE(1732), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1580), - [sym_anonymous_function] = STATE(1580), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1732), + [sym_anonymous_function] = STATE(1732), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1545), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(1629), - [sym_integer] = ACTIONS(1573), + [sym_integer] = ACTIONS(1575), [sym_float] = ACTIONS(1629), [sym_char] = ACTIONS(1629), [anon_sym_true] = ACTIONS(241), @@ -79835,7 +79601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(265), [anon_sym_PLUS] = ACTIONS(267), [anon_sym_DASH] = ACTIONS(267), @@ -79890,50 +79656,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [387] = { - [sym__expression] = STATE(4121), - [sym_block] = STATE(4121), + [sym__expression] = STATE(4073), + [sym_block] = STATE(4073), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4121), - [sym_nil] = STATE(4121), - [sym__atom] = STATE(4121), - [sym_quoted_atom] = STATE(4121), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4073), + [sym_nil] = STATE(4073), + [sym__atom] = STATE(4073), + [sym_quoted_atom] = STATE(4073), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4121), - [sym_charlist] = STATE(4121), - [sym_sigil] = STATE(4121), - [sym_list] = STATE(4121), - [sym_tuple] = STATE(4121), - [sym_bitstring] = STATE(4121), - [sym_map] = STATE(4121), - [sym__nullary_operator] = STATE(4121), - [sym_unary_operator] = STATE(4121), + [sym_string] = STATE(4073), + [sym_charlist] = STATE(4073), + [sym_sigil] = STATE(4073), + [sym_list] = STATE(4073), + [sym_tuple] = STATE(4073), + [sym_bitstring] = STATE(4073), + [sym_map] = STATE(4073), + [sym__nullary_operator] = STATE(4073), + [sym_unary_operator] = STATE(4073), [sym__capture_expression] = STATE(1997), - [sym_binary_operator] = STATE(4121), + [sym_binary_operator] = STATE(4073), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4121), - [sym_call] = STATE(4121), + [sym_dot] = STATE(4073), + [sym_call] = STATE(4073), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4121), - [sym_anonymous_function] = STATE(4121), + [sym_access_call] = STATE(4073), + [sym_anonymous_function] = STATE(4073), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1557), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1631), - [sym_integer] = ACTIONS(1567), + [sym_integer] = ACTIONS(1565), [sym_float] = ACTIONS(1631), [sym_char] = ACTIONS(1631), [anon_sym_true] = ACTIONS(922), @@ -79950,18 +79716,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -80003,48 +79769,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [388] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1637), @@ -80068,18 +79834,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -80121,48 +79887,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [389] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1639), @@ -80186,18 +79952,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -80239,48 +80005,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [390] = { - [sym__expression] = STATE(4577), - [sym_block] = STATE(4577), + [sym__expression] = STATE(4569), + [sym_block] = STATE(4569), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4577), - [sym_nil] = STATE(4577), - [sym__atom] = STATE(4577), - [sym_quoted_atom] = STATE(4577), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4577), - [sym_charlist] = STATE(4577), - [sym_sigil] = STATE(4577), - [sym_list] = STATE(4577), - [sym_tuple] = STATE(4577), - [sym_bitstring] = STATE(4577), - [sym_map] = STATE(4577), - [sym__nullary_operator] = STATE(4577), - [sym_unary_operator] = STATE(4577), - [sym_binary_operator] = STATE(4577), + [sym_boolean] = STATE(4569), + [sym_nil] = STATE(4569), + [sym__atom] = STATE(4569), + [sym_quoted_atom] = STATE(4569), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4569), + [sym_charlist] = STATE(4569), + [sym_sigil] = STATE(4569), + [sym_list] = STATE(4569), + [sym_tuple] = STATE(4569), + [sym_bitstring] = STATE(4569), + [sym_map] = STATE(4569), + [sym__nullary_operator] = STATE(4569), + [sym_unary_operator] = STATE(4569), + [sym_binary_operator] = STATE(4569), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4577), - [sym_call] = STATE(4577), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4569), + [sym_call] = STATE(4569), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4577), - [sym_anonymous_function] = STATE(4577), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4569), + [sym_anonymous_function] = STATE(4569), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -80362,44 +80128,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [391] = { - [sym__expression] = STATE(3037), - [sym_block] = STATE(3037), + [sym__expression] = STATE(3291), + [sym_block] = STATE(3291), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3037), - [sym_nil] = STATE(3037), - [sym__atom] = STATE(3037), - [sym_quoted_atom] = STATE(3037), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3037), - [sym_charlist] = STATE(3037), - [sym_sigil] = STATE(3037), - [sym_list] = STATE(3037), - [sym_tuple] = STATE(3037), - [sym_bitstring] = STATE(3037), - [sym_map] = STATE(3037), - [sym__nullary_operator] = STATE(3037), - [sym_unary_operator] = STATE(3037), - [sym__capture_expression] = STATE(3060), - [sym_binary_operator] = STATE(3037), + [sym_boolean] = STATE(3291), + [sym_nil] = STATE(3291), + [sym__atom] = STATE(3291), + [sym_quoted_atom] = STATE(3291), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3291), + [sym_charlist] = STATE(3291), + [sym_sigil] = STATE(3291), + [sym_list] = STATE(3291), + [sym_tuple] = STATE(3291), + [sym_bitstring] = STATE(3291), + [sym_map] = STATE(3291), + [sym__nullary_operator] = STATE(3291), + [sym_unary_operator] = STATE(3291), + [sym__capture_expression] = STATE(3277), + [sym_binary_operator] = STATE(3291), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3037), - [sym_call] = STATE(3037), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(3291), + [sym_call] = STATE(3291), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3037), - [sym_anonymous_function] = STATE(3037), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3291), + [sym_anonymous_function] = STATE(3291), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1645), [aux_sym_identifier_token1] = ACTIONS(488), @@ -80425,7 +80191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(508), [anon_sym_LT_LT] = ACTIONS(512), [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1415), [anon_sym_AMP] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(518), @@ -80480,78 +80246,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [392] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym__expression] = STATE(4579), + [sym_block] = STATE(4579), + [sym_identifier] = STATE(110), + [sym_boolean] = STATE(4579), + [sym_nil] = STATE(4579), + [sym__atom] = STATE(4561), + [sym_quoted_atom] = STATE(4561), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4579), + [sym_charlist] = STATE(4579), + [sym_sigil] = STATE(4579), + [sym_list] = STATE(4579), + [sym_tuple] = STATE(4579), + [sym_bitstring] = STATE(4579), + [sym_map] = STATE(4579), + [sym_struct] = STATE(6883), + [sym__nullary_operator] = STATE(4579), + [sym_unary_operator] = STATE(4561), + [sym_binary_operator] = STATE(4579), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4561), + [sym_call] = STATE(4579), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4579), + [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1651), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1537), - [sym_integer] = ACTIONS(1537), - [sym_float] = ACTIONS(1537), - [sym_char] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -80589,52 +80355,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, [393] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1653), @@ -80658,18 +80424,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -80711,49 +80477,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [394] = { - [sym__expression] = STATE(3037), - [sym_block] = STATE(3037), + [sym__expression] = STATE(3291), + [sym_block] = STATE(3291), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3037), - [sym_nil] = STATE(3037), - [sym__atom] = STATE(3037), - [sym_quoted_atom] = STATE(3037), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3037), - [sym_charlist] = STATE(3037), - [sym_sigil] = STATE(3037), - [sym_list] = STATE(3037), - [sym_tuple] = STATE(3037), - [sym_bitstring] = STATE(3037), - [sym_map] = STATE(3037), - [sym__nullary_operator] = STATE(3037), - [sym_unary_operator] = STATE(3037), - [sym__capture_expression] = STATE(3038), - [sym_binary_operator] = STATE(3037), + [sym_boolean] = STATE(3291), + [sym_nil] = STATE(3291), + [sym__atom] = STATE(3291), + [sym_quoted_atom] = STATE(3291), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3291), + [sym_charlist] = STATE(3291), + [sym_sigil] = STATE(3291), + [sym_list] = STATE(3291), + [sym_tuple] = STATE(3291), + [sym_bitstring] = STATE(3291), + [sym_map] = STATE(3291), + [sym__nullary_operator] = STATE(3291), + [sym_unary_operator] = STATE(3291), + [sym__capture_expression] = STATE(3290), + [sym_binary_operator] = STATE(3291), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3037), - [sym_call] = STATE(3037), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(3291), + [sym_call] = STATE(3291), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3037), - [sym_anonymous_function] = STATE(3037), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3291), + [sym_anonymous_function] = STATE(3291), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1645), [aux_sym_identifier_token1] = ACTIONS(488), @@ -80779,7 +80545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(508), [anon_sym_LT_LT] = ACTIONS(512), [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1415), [anon_sym_AMP] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(518), @@ -80834,43 +80600,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [395] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1657), @@ -80894,18 +80660,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -80947,48 +80713,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [396] = { - [sym__expression] = STATE(4560), - [sym_block] = STATE(4560), + [sym__expression] = STATE(4578), + [sym_block] = STATE(4578), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4560), - [sym_nil] = STATE(4560), - [sym__atom] = STATE(4560), - [sym_quoted_atom] = STATE(4560), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4560), - [sym_charlist] = STATE(4560), - [sym_sigil] = STATE(4560), - [sym_list] = STATE(4560), - [sym_tuple] = STATE(4560), - [sym_bitstring] = STATE(4560), - [sym_map] = STATE(4560), - [sym__nullary_operator] = STATE(4560), - [sym_unary_operator] = STATE(4560), - [sym_binary_operator] = STATE(4560), + [sym_boolean] = STATE(4578), + [sym_nil] = STATE(4578), + [sym__atom] = STATE(4578), + [sym_quoted_atom] = STATE(4578), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4578), + [sym_charlist] = STATE(4578), + [sym_sigil] = STATE(4578), + [sym_list] = STATE(4578), + [sym_tuple] = STATE(4578), + [sym_bitstring] = STATE(4578), + [sym_map] = STATE(4578), + [sym__nullary_operator] = STATE(4578), + [sym_unary_operator] = STATE(4578), + [sym_binary_operator] = STATE(4578), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4560), - [sym_call] = STATE(4560), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4578), + [sym_call] = STATE(4578), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4560), - [sym_anonymous_function] = STATE(4560), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4578), + [sym_anonymous_function] = STATE(4578), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -81070,44 +80836,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [397] = { - [sym__expression] = STATE(4139), - [sym_block] = STATE(4139), + [sym__expression] = STATE(4106), + [sym_block] = STATE(4106), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4139), - [sym_nil] = STATE(4139), - [sym__atom] = STATE(4139), - [sym_quoted_atom] = STATE(4139), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4139), - [sym_charlist] = STATE(4139), - [sym_sigil] = STATE(4139), - [sym_list] = STATE(4139), - [sym_tuple] = STATE(4139), - [sym_bitstring] = STATE(4139), - [sym_map] = STATE(4139), - [sym__nullary_operator] = STATE(4139), - [sym_unary_operator] = STATE(4139), - [sym__capture_expression] = STATE(4116), - [sym_binary_operator] = STATE(4139), + [sym_boolean] = STATE(4106), + [sym_nil] = STATE(4106), + [sym__atom] = STATE(4106), + [sym_quoted_atom] = STATE(4106), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4106), + [sym_charlist] = STATE(4106), + [sym_sigil] = STATE(4106), + [sym_list] = STATE(4106), + [sym_tuple] = STATE(4106), + [sym_bitstring] = STATE(4106), + [sym_map] = STATE(4106), + [sym__nullary_operator] = STATE(4106), + [sym_unary_operator] = STATE(4106), + [sym__capture_expression] = STATE(4091), + [sym_binary_operator] = STATE(4106), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4139), - [sym_call] = STATE(4139), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4106), + [sym_call] = STATE(4106), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4139), - [sym_anonymous_function] = STATE(4139), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4106), + [sym_anonymous_function] = STATE(4106), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1663), [aux_sym_identifier_token1] = ACTIONS(804), @@ -81188,43 +80954,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [398] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1669), @@ -81248,18 +81014,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -81301,48 +81067,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [399] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1671), @@ -81366,18 +81132,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -81419,49 +81185,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [400] = { - [sym__expression] = STATE(4139), - [sym_block] = STATE(4139), + [sym__expression] = STATE(4106), + [sym_block] = STATE(4106), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4139), - [sym_nil] = STATE(4139), - [sym__atom] = STATE(4139), - [sym_quoted_atom] = STATE(4139), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4139), - [sym_charlist] = STATE(4139), - [sym_sigil] = STATE(4139), - [sym_list] = STATE(4139), - [sym_tuple] = STATE(4139), - [sym_bitstring] = STATE(4139), - [sym_map] = STATE(4139), - [sym__nullary_operator] = STATE(4139), - [sym_unary_operator] = STATE(4139), - [sym__capture_expression] = STATE(4138), - [sym_binary_operator] = STATE(4139), + [sym_boolean] = STATE(4106), + [sym_nil] = STATE(4106), + [sym__atom] = STATE(4106), + [sym_quoted_atom] = STATE(4106), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4106), + [sym_charlist] = STATE(4106), + [sym_sigil] = STATE(4106), + [sym_list] = STATE(4106), + [sym_tuple] = STATE(4106), + [sym_bitstring] = STATE(4106), + [sym_map] = STATE(4106), + [sym__nullary_operator] = STATE(4106), + [sym_unary_operator] = STATE(4106), + [sym__capture_expression] = STATE(4105), + [sym_binary_operator] = STATE(4106), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4139), - [sym_call] = STATE(4139), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4106), + [sym_call] = STATE(4106), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4139), - [sym_anonymous_function] = STATE(4139), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4106), + [sym_anonymous_function] = STATE(4106), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1663), [aux_sym_identifier_token1] = ACTIONS(804), @@ -81542,43 +81308,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(844), }, [401] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1675), @@ -81602,18 +81368,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -81655,61 +81421,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [402] = { - [sym__expression] = STATE(4534), - [sym_block] = STATE(4534), + [sym__expression] = STATE(4500), + [sym_block] = STATE(4500), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4534), - [sym_nil] = STATE(4534), - [sym__atom] = STATE(4534), - [sym_quoted_atom] = STATE(4534), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4534), - [sym_charlist] = STATE(4534), - [sym_sigil] = STATE(4534), - [sym_list] = STATE(4534), - [sym_tuple] = STATE(4534), - [sym_bitstring] = STATE(4534), - [sym_map] = STATE(4534), - [sym__nullary_operator] = STATE(4534), - [sym_unary_operator] = STATE(4534), - [sym__capture_expression] = STATE(4511), - [sym_binary_operator] = STATE(4534), + [sym_boolean] = STATE(4500), + [sym_nil] = STATE(4500), + [sym__atom] = STATE(4500), + [sym_quoted_atom] = STATE(4500), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4500), + [sym_charlist] = STATE(4500), + [sym_sigil] = STATE(4500), + [sym_list] = STATE(4500), + [sym_tuple] = STATE(4500), + [sym_bitstring] = STATE(4500), + [sym_map] = STATE(4500), + [sym__nullary_operator] = STATE(4500), + [sym_unary_operator] = STATE(4500), + [sym__capture_expression] = STATE(4471), + [sym_binary_operator] = STATE(4500), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4534), - [sym_call] = STATE(4534), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4500), + [sym_call] = STATE(4500), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4534), - [sym_anonymous_function] = STATE(4534), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4500), + [sym_anonymous_function] = STATE(4500), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1617), [aux_sym_identifier_token1] = ACTIONS(1093), [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(1679), - [sym_integer] = ACTIONS(1681), - [sym_float] = ACTIONS(1679), - [sym_char] = ACTIONS(1679), + [sym_alias] = ACTIONS(1619), + [sym_integer] = ACTIONS(1677), + [sym_float] = ACTIONS(1619), + [sym_char] = ACTIONS(1619), [anon_sym_true] = ACTIONS(1097), [anon_sym_false] = ACTIONS(1097), [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(1679), + [sym_atom] = ACTIONS(1619), [anon_sym_DQUOTE] = ACTIONS(1101), [anon_sym_SQUOTE] = ACTIONS(1103), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), @@ -81778,46 +81544,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [403] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(1683), + [anon_sym_RPAREN] = ACTIONS(1679), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1537), @@ -81838,18 +81604,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -81891,83 +81657,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [404] = { - [sym__expression] = STATE(1802), - [sym_block] = STATE(1802), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1802), - [sym_nil] = STATE(1802), - [sym__atom] = STATE(1802), - [sym_quoted_atom] = STATE(1802), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1802), - [sym_charlist] = STATE(1802), - [sym_sigil] = STATE(1802), - [sym_list] = STATE(1802), - [sym_tuple] = STATE(1802), - [sym_bitstring] = STATE(1802), - [sym_map] = STATE(1802), - [sym__nullary_operator] = STATE(1802), - [sym_unary_operator] = STATE(1802), - [sym__capture_expression] = STATE(1732), - [sym_binary_operator] = STATE(1802), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1802), - [sym_call] = STATE(1802), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1802), - [sym_anonymous_function] = STATE(1802), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1551), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(1553), - [sym_integer] = ACTIONS(1685), - [sym_float] = ACTIONS(1553), - [sym_char] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RPAREN] = ACTIONS(1681), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(1537), + [sym_integer] = ACTIONS(1537), + [sym_float] = ACTIONS(1537), + [sym_char] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -82005,13 +81771,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, [405] = { [sym__expression] = STATE(3189), @@ -82021,10 +81787,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(3189), [sym__atom] = STATE(3189), [sym_quoted_atom] = STATE(3189), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), [sym_string] = STATE(3189), [sym_charlist] = STATE(3189), [sym_sigil] = STATE(3189), @@ -82034,36 +81800,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3189), [sym__nullary_operator] = STATE(3189), [sym_unary_operator] = STATE(3189), - [sym__capture_expression] = STATE(1451), + [sym__capture_expression] = STATE(1433), [sym_binary_operator] = STATE(3189), [sym_operator_identifier] = STATE(6959), [sym_dot] = STATE(3189), [sym_call] = STATE(3189), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), [sym_access_call] = STATE(3189), [sym_anonymous_function] = STATE(3189), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1545), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(1587), + [sym_alias] = ACTIONS(1585), [sym_integer] = ACTIONS(1549), - [sym_float] = ACTIONS(1587), - [sym_char] = ACTIONS(1587), + [sym_float] = ACTIONS(1585), + [sym_char] = ACTIONS(1585), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1587), + [sym_atom] = ACTIONS(1585), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -82077,7 +81843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(435), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT] = ACTIONS(1321), [anon_sym_AMP] = ACTIONS(439), [anon_sym_PLUS] = ACTIONS(444), [anon_sym_DASH] = ACTIONS(444), @@ -82132,56 +81898,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(281), }, [406] = { - [sym__expression] = STATE(4372), - [sym_block] = STATE(4372), + [sym__expression] = STATE(4397), + [sym_block] = STATE(4397), [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4372), - [sym_nil] = STATE(4372), - [sym__atom] = STATE(4372), - [sym_quoted_atom] = STATE(4372), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4397), + [sym_nil] = STATE(4397), + [sym__atom] = STATE(4397), + [sym_quoted_atom] = STATE(4397), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4372), - [sym_charlist] = STATE(4372), - [sym_sigil] = STATE(4372), - [sym_list] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_bitstring] = STATE(4372), - [sym_map] = STATE(4372), - [sym__nullary_operator] = STATE(4372), - [sym_unary_operator] = STATE(4372), - [sym__capture_expression] = STATE(2030), - [sym_binary_operator] = STATE(4372), + [sym_string] = STATE(4397), + [sym_charlist] = STATE(4397), + [sym_sigil] = STATE(4397), + [sym_list] = STATE(4397), + [sym_tuple] = STATE(4397), + [sym_bitstring] = STATE(4397), + [sym_map] = STATE(4397), + [sym__nullary_operator] = STATE(4397), + [sym_unary_operator] = STATE(4397), + [sym__capture_expression] = STATE(1997), + [sym_binary_operator] = STATE(4397), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4372), - [sym_call] = STATE(4372), + [sym_dot] = STATE(4397), + [sym_call] = STATE(4397), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4372), - [sym_anonymous_function] = STATE(4372), + [sym_access_call] = STATE(4397), + [sym_anonymous_function] = STATE(4397), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1563), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(1571), - [sym_integer] = ACTIONS(1615), - [sym_float] = ACTIONS(1571), - [sym_char] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1557), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1559), + [sym_integer] = ACTIONS(1565), + [sym_float] = ACTIONS(1559), + [sym_char] = ACTIONS(1559), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1571), + [sym_atom] = ACTIONS(1559), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -82191,19 +81957,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -82245,61 +82011,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [407] = { - [sym__expression] = STATE(4442), - [sym_block] = STATE(4442), + [sym__expression] = STATE(4470), + [sym_block] = STATE(4470), [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4442), - [sym_nil] = STATE(4442), - [sym__atom] = STATE(4442), - [sym_quoted_atom] = STATE(4442), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4442), - [sym_charlist] = STATE(4442), - [sym_sigil] = STATE(4442), - [sym_list] = STATE(4442), - [sym_tuple] = STATE(4442), - [sym_bitstring] = STATE(4442), - [sym_map] = STATE(4442), - [sym__nullary_operator] = STATE(4442), - [sym_unary_operator] = STATE(4442), - [sym__capture_expression] = STATE(3485), - [sym_binary_operator] = STATE(4442), + [sym_boolean] = STATE(4470), + [sym_nil] = STATE(4470), + [sym__atom] = STATE(4470), + [sym_quoted_atom] = STATE(4470), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4470), + [sym_charlist] = STATE(4470), + [sym_sigil] = STATE(4470), + [sym_list] = STATE(4470), + [sym_tuple] = STATE(4470), + [sym_bitstring] = STATE(4470), + [sym_map] = STATE(4470), + [sym__nullary_operator] = STATE(4470), + [sym_unary_operator] = STATE(4470), + [sym__capture_expression] = STATE(3237), + [sym_binary_operator] = STATE(4470), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4442), - [sym_call] = STATE(4442), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4470), + [sym_call] = STATE(4470), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4442), - [sym_anonymous_function] = STATE(4442), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4470), + [sym_anonymous_function] = STATE(4470), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1559), - [sym_integer] = ACTIONS(1687), - [sym_float] = ACTIONS(1559), - [sym_char] = ACTIONS(1559), + [sym_alias] = ACTIONS(1571), + [sym_integer] = ACTIONS(1683), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1559), + [sym_atom] = ACTIONS(1571), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -82314,14 +82080,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -82363,61 +82129,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [408] = { - [sym__expression] = STATE(3596), - [sym_block] = STATE(3596), + [sym__expression] = STATE(3927), + [sym_block] = STATE(3927), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3596), - [sym_nil] = STATE(3596), - [sym__atom] = STATE(3596), - [sym_quoted_atom] = STATE(3596), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3596), - [sym_charlist] = STATE(3596), - [sym_sigil] = STATE(3596), - [sym_list] = STATE(3596), - [sym_tuple] = STATE(3596), - [sym_bitstring] = STATE(3596), - [sym_map] = STATE(3596), - [sym__nullary_operator] = STATE(3596), - [sym_unary_operator] = STATE(3596), - [sym__capture_expression] = STATE(2188), - [sym_binary_operator] = STATE(3596), + [sym_boolean] = STATE(3927), + [sym_nil] = STATE(3927), + [sym__atom] = STATE(3927), + [sym_quoted_atom] = STATE(3927), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3927), + [sym_charlist] = STATE(3927), + [sym_sigil] = STATE(3927), + [sym_list] = STATE(3927), + [sym_tuple] = STATE(3927), + [sym_bitstring] = STATE(3927), + [sym_map] = STATE(3927), + [sym__nullary_operator] = STATE(3927), + [sym_unary_operator] = STATE(3927), + [sym__capture_expression] = STATE(2259), + [sym_binary_operator] = STATE(3927), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3596), - [sym_call] = STATE(3596), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3927), + [sym_call] = STATE(3927), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3596), - [sym_anonymous_function] = STATE(3596), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3927), + [sym_anonymous_function] = STATE(3927), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1689), - [sym_integer] = ACTIONS(1611), - [sym_float] = ACTIONS(1689), - [sym_char] = ACTIONS(1689), + [sym_alias] = ACTIONS(1685), + [sym_integer] = ACTIONS(1613), + [sym_float] = ACTIONS(1685), + [sym_char] = ACTIONS(1685), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1689), + [sym_atom] = ACTIONS(1685), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -82486,78 +82252,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [409] = { - [sym__expression] = STATE(4534), - [sym_block] = STATE(4534), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4534), - [sym_nil] = STATE(4534), - [sym__atom] = STATE(4534), - [sym_quoted_atom] = STATE(4534), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4534), - [sym_charlist] = STATE(4534), - [sym_sigil] = STATE(4534), - [sym_list] = STATE(4534), - [sym_tuple] = STATE(4534), - [sym_bitstring] = STATE(4534), - [sym_map] = STATE(4534), - [sym__nullary_operator] = STATE(4534), - [sym_unary_operator] = STATE(4534), - [sym__capture_expression] = STATE(4521), - [sym_binary_operator] = STATE(4534), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4534), - [sym_call] = STATE(4534), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4534), - [sym_anonymous_function] = STATE(4534), + [sym__expression] = STATE(4322), + [sym_block] = STATE(4322), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4322), + [sym_nil] = STATE(4322), + [sym__atom] = STATE(4322), + [sym_quoted_atom] = STATE(4322), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4322), + [sym_charlist] = STATE(4322), + [sym_sigil] = STATE(4322), + [sym_list] = STATE(4322), + [sym_tuple] = STATE(4322), + [sym_bitstring] = STATE(4322), + [sym_map] = STATE(4322), + [sym__nullary_operator] = STATE(4322), + [sym_unary_operator] = STATE(4322), + [sym__capture_expression] = STATE(4162), + [sym_binary_operator] = STATE(4322), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4322), + [sym_call] = STATE(4322), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4322), + [sym_anonymous_function] = STATE(4322), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1677), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1687), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1689), [sym_integer] = ACTIONS(1691), - [sym_float] = ACTIONS(1679), - [sym_char] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [sym_float] = ACTIONS(1689), + [sym_char] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -82595,65 +82361,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(57), }, [410] = { - [sym__expression] = STATE(3596), - [sym_block] = STATE(3596), + [sym__expression] = STATE(3927), + [sym_block] = STATE(3927), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3596), - [sym_nil] = STATE(3596), - [sym__atom] = STATE(3596), - [sym_quoted_atom] = STATE(3596), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3596), - [sym_charlist] = STATE(3596), - [sym_sigil] = STATE(3596), - [sym_list] = STATE(3596), - [sym_tuple] = STATE(3596), - [sym_bitstring] = STATE(3596), - [sym_map] = STATE(3596), - [sym__nullary_operator] = STATE(3596), - [sym_unary_operator] = STATE(3596), - [sym__capture_expression] = STATE(2136), - [sym_binary_operator] = STATE(3596), + [sym_boolean] = STATE(3927), + [sym_nil] = STATE(3927), + [sym__atom] = STATE(3927), + [sym_quoted_atom] = STATE(3927), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3927), + [sym_charlist] = STATE(3927), + [sym_sigil] = STATE(3927), + [sym_list] = STATE(3927), + [sym_tuple] = STATE(3927), + [sym_bitstring] = STATE(3927), + [sym_map] = STATE(3927), + [sym__nullary_operator] = STATE(3927), + [sym_unary_operator] = STATE(3927), + [sym__capture_expression] = STATE(2247), + [sym_binary_operator] = STATE(3927), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3596), - [sym_call] = STATE(3596), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(3927), + [sym_call] = STATE(3927), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3596), - [sym_anonymous_function] = STATE(3596), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3927), + [sym_anonymous_function] = STATE(3927), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1601), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1689), - [sym_integer] = ACTIONS(1603), - [sym_float] = ACTIONS(1689), - [sym_char] = ACTIONS(1689), + [sym_alias] = ACTIONS(1685), + [sym_integer] = ACTIONS(1605), + [sym_float] = ACTIONS(1685), + [sym_char] = ACTIONS(1685), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1689), + [sym_atom] = ACTIONS(1685), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -82722,43 +82488,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(407), }, [411] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1693), @@ -82782,18 +82548,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -82835,48 +82601,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [412] = { - [sym__expression] = STATE(4558), - [sym_block] = STATE(4558), + [sym__expression] = STATE(4571), + [sym_block] = STATE(4571), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4558), - [sym_nil] = STATE(4558), - [sym__atom] = STATE(4558), - [sym_quoted_atom] = STATE(4558), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4558), - [sym_charlist] = STATE(4558), - [sym_sigil] = STATE(4558), - [sym_list] = STATE(4558), - [sym_tuple] = STATE(4558), - [sym_bitstring] = STATE(4558), - [sym_map] = STATE(4558), - [sym__nullary_operator] = STATE(4558), - [sym_unary_operator] = STATE(4558), - [sym_binary_operator] = STATE(4558), + [sym_boolean] = STATE(4571), + [sym_nil] = STATE(4571), + [sym__atom] = STATE(4571), + [sym_quoted_atom] = STATE(4571), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4571), + [sym_charlist] = STATE(4571), + [sym_sigil] = STATE(4571), + [sym_list] = STATE(4571), + [sym_tuple] = STATE(4571), + [sym_bitstring] = STATE(4571), + [sym_map] = STATE(4571), + [sym__nullary_operator] = STATE(4571), + [sym_unary_operator] = STATE(4571), + [sym_binary_operator] = STATE(4571), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4558), - [sym_call] = STATE(4558), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4571), + [sym_call] = STATE(4571), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4558), - [sym_anonymous_function] = STATE(4558), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4571), + [sym_anonymous_function] = STATE(4571), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -82965,10 +82731,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -82983,31 +82749,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -83022,14 +82788,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -83071,7 +82837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, @@ -83083,10 +82849,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -83101,31 +82867,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -83140,14 +82906,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -83189,55 +82955,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [415] = { - [sym__expression] = STATE(3646), - [sym_block] = STATE(3646), + [sym__expression] = STATE(4004), + [sym_block] = STATE(4004), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3646), - [sym_nil] = STATE(3646), - [sym__atom] = STATE(3646), - [sym_quoted_atom] = STATE(3646), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3646), - [sym_charlist] = STATE(3646), - [sym_sigil] = STATE(3646), - [sym_list] = STATE(3646), - [sym_tuple] = STATE(3646), - [sym_bitstring] = STATE(3646), - [sym_map] = STATE(3646), - [sym__nullary_operator] = STATE(3646), - [sym_unary_operator] = STATE(3646), - [sym__capture_expression] = STATE(3485), - [sym_binary_operator] = STATE(3646), + [sym_boolean] = STATE(4004), + [sym_nil] = STATE(4004), + [sym__atom] = STATE(4004), + [sym_quoted_atom] = STATE(4004), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4004), + [sym_charlist] = STATE(4004), + [sym_sigil] = STATE(4004), + [sym_list] = STATE(4004), + [sym_tuple] = STATE(4004), + [sym_bitstring] = STATE(4004), + [sym_map] = STATE(4004), + [sym__nullary_operator] = STATE(4004), + [sym_unary_operator] = STATE(4004), + [sym__capture_expression] = STATE(3237), + [sym_binary_operator] = STATE(4004), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3646), - [sym_call] = STATE(3646), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4004), + [sym_call] = STATE(4004), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3646), - [sym_anonymous_function] = STATE(3646), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4004), + [sym_anonymous_function] = STATE(4004), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1703), - [sym_integer] = ACTIONS(1687), + [sym_integer] = ACTIONS(1683), [sym_float] = ACTIONS(1703), [sym_char] = ACTIONS(1703), [anon_sym_true] = ACTIONS(1047), @@ -83319,10 +83085,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -83337,31 +83103,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -83376,14 +83142,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -83425,7 +83191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, @@ -83437,10 +83203,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -83455,31 +83221,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -83494,14 +83260,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -83543,55 +83309,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [418] = { - [sym__expression] = STATE(3646), - [sym_block] = STATE(3646), + [sym__expression] = STATE(4004), + [sym_block] = STATE(4004), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3646), - [sym_nil] = STATE(3646), - [sym__atom] = STATE(3646), - [sym_quoted_atom] = STATE(3646), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3646), - [sym_charlist] = STATE(3646), - [sym_sigil] = STATE(3646), - [sym_list] = STATE(3646), - [sym_tuple] = STATE(3646), - [sym_bitstring] = STATE(3646), - [sym_map] = STATE(3646), - [sym__nullary_operator] = STATE(3646), - [sym_unary_operator] = STATE(3646), - [sym__capture_expression] = STATE(3445), - [sym_binary_operator] = STATE(3646), + [sym_boolean] = STATE(4004), + [sym_nil] = STATE(4004), + [sym__atom] = STATE(4004), + [sym_quoted_atom] = STATE(4004), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4004), + [sym_charlist] = STATE(4004), + [sym_sigil] = STATE(4004), + [sym_list] = STATE(4004), + [sym_tuple] = STATE(4004), + [sym_bitstring] = STATE(4004), + [sym_map] = STATE(4004), + [sym__nullary_operator] = STATE(4004), + [sym_unary_operator] = STATE(4004), + [sym__capture_expression] = STATE(3247), + [sym_binary_operator] = STATE(4004), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3646), - [sym_call] = STATE(3646), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4004), + [sym_call] = STATE(4004), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3646), - [sym_anonymous_function] = STATE(3646), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4004), + [sym_anonymous_function] = STATE(4004), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1569), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1703), - [sym_integer] = ACTIONS(1561), + [sym_integer] = ACTIONS(1573), [sym_float] = ACTIONS(1703), [sym_char] = ACTIONS(1703), [anon_sym_true] = ACTIONS(1047), @@ -83666,43 +83432,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [419] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1709), @@ -83726,18 +83492,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -83779,48 +83545,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [420] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1711), @@ -83844,18 +83610,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -83897,48 +83663,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [421] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1713), @@ -83962,18 +83728,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -84015,7 +83781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -84027,10 +83793,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -84045,31 +83811,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -84084,14 +83850,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -84133,48 +83899,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [423] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1717), @@ -84198,18 +83964,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -84251,7 +84017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -84263,10 +84029,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4456), [sym__atom] = STATE(4456), [sym_quoted_atom] = STATE(4456), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), [sym_string] = STATE(4456), [sym_charlist] = STATE(4456), [sym_sigil] = STATE(4456), @@ -84280,17 +84046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6916), [sym_dot] = STATE(4456), [sym_call] = STATE(4456), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), [sym_access_call] = STATE(4456), [sym_anonymous_function] = STATE(4456), [ts_builtin_sym_end] = ACTIONS(1719), @@ -84374,43 +84140,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [425] = { - [sym__expression] = STATE(3414), - [sym_block] = STATE(3414), + [sym__expression] = STATE(2960), + [sym_block] = STATE(2960), [sym_identifier] = STATE(60), - [sym_boolean] = STATE(3414), - [sym_nil] = STATE(3414), - [sym__atom] = STATE(3414), - [sym_quoted_atom] = STATE(3414), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(3414), - [sym_charlist] = STATE(3414), - [sym_sigil] = STATE(3414), - [sym_list] = STATE(3414), - [sym_tuple] = STATE(3414), - [sym_bitstring] = STATE(3414), - [sym_map] = STATE(3414), - [sym__nullary_operator] = STATE(3414), - [sym_unary_operator] = STATE(3414), - [sym_binary_operator] = STATE(3414), + [sym_boolean] = STATE(2960), + [sym_nil] = STATE(2960), + [sym__atom] = STATE(2960), + [sym_quoted_atom] = STATE(2960), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(2960), + [sym_charlist] = STATE(2960), + [sym_sigil] = STATE(2960), + [sym_list] = STATE(2960), + [sym_tuple] = STATE(2960), + [sym_bitstring] = STATE(2960), + [sym_map] = STATE(2960), + [sym__nullary_operator] = STATE(2960), + [sym_unary_operator] = STATE(2960), + [sym_binary_operator] = STATE(2960), [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(3414), - [sym_call] = STATE(3414), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym_dot] = STATE(2960), + [sym_call] = STATE(2960), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(3414), - [sym_anonymous_function] = STATE(3414), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(2960), + [sym_anonymous_function] = STATE(2960), [ts_builtin_sym_end] = ACTIONS(1721), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), @@ -84492,43 +84258,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [426] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1725), @@ -84552,18 +84318,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -84605,49 +84371,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [427] = { - [sym__expression] = STATE(3856), - [sym_block] = STATE(3856), + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3856), - [sym_nil] = STATE(3856), - [sym__atom] = STATE(3856), - [sym_quoted_atom] = STATE(3856), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3856), - [sym_charlist] = STATE(3856), - [sym_sigil] = STATE(3856), - [sym_list] = STATE(3856), - [sym_tuple] = STATE(3856), - [sym_bitstring] = STATE(3856), - [sym_map] = STATE(3856), - [sym__nullary_operator] = STATE(3856), - [sym_unary_operator] = STATE(3856), - [sym__capture_expression] = STATE(1760), - [sym_binary_operator] = STATE(3856), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3856), - [sym_call] = STATE(3856), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym__atom] = STATE(3645), + [sym_quoted_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym__nullary_operator] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym__capture_expression] = STATE(1733), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3856), - [sym_anonymous_function] = STATE(3856), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1551), [aux_sym_identifier_token1] = ACTIONS(686), @@ -84735,10 +84501,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -84753,31 +84519,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -84792,14 +84558,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -84841,61 +84607,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [429] = { - [sym__expression] = STATE(4192), - [sym_block] = STATE(4192), + [sym__expression] = STATE(4322), + [sym_block] = STATE(4322), [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4192), - [sym_nil] = STATE(4192), - [sym__atom] = STATE(4192), - [sym_quoted_atom] = STATE(4192), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4192), - [sym_charlist] = STATE(4192), - [sym_sigil] = STATE(4192), - [sym_list] = STATE(4192), - [sym_tuple] = STATE(4192), - [sym_bitstring] = STATE(4192), - [sym_map] = STATE(4192), - [sym__nullary_operator] = STATE(4192), - [sym_unary_operator] = STATE(4192), - [sym__capture_expression] = STATE(4193), - [sym_binary_operator] = STATE(4192), + [sym_boolean] = STATE(4322), + [sym_nil] = STATE(4322), + [sym__atom] = STATE(4322), + [sym_quoted_atom] = STATE(4322), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4322), + [sym_charlist] = STATE(4322), + [sym_sigil] = STATE(4322), + [sym_list] = STATE(4322), + [sym_tuple] = STATE(4322), + [sym_bitstring] = STATE(4322), + [sym_map] = STATE(4322), + [sym__nullary_operator] = STATE(4322), + [sym_unary_operator] = STATE(4322), + [sym__capture_expression] = STATE(4320), + [sym_binary_operator] = STATE(4322), [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4192), - [sym_call] = STATE(4192), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym_dot] = STATE(4322), + [sym_call] = STATE(4322), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4192), - [sym_anonymous_function] = STATE(4192), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4322), + [sym_anonymous_function] = STATE(4322), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1687), [aux_sym_identifier_token1] = ACTIONS(15), [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(1531), + [sym_alias] = ACTIONS(1689), [sym_integer] = ACTIONS(1731), - [sym_float] = ACTIONS(1531), - [sym_char] = ACTIONS(1531), + [sym_float] = ACTIONS(1689), + [sym_char] = ACTIONS(1689), [anon_sym_true] = ACTIONS(19), [anon_sym_false] = ACTIONS(19), [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(1531), + [sym_atom] = ACTIONS(1689), [anon_sym_DQUOTE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), @@ -84964,50 +84730,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [430] = { - [sym__expression] = STATE(3856), - [sym_block] = STATE(3856), + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3856), - [sym_nil] = STATE(3856), - [sym__atom] = STATE(3856), - [sym_quoted_atom] = STATE(3856), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3856), - [sym_charlist] = STATE(3856), - [sym_sigil] = STATE(3856), - [sym_list] = STATE(3856), - [sym_tuple] = STATE(3856), - [sym_bitstring] = STATE(3856), - [sym_map] = STATE(3856), - [sym__nullary_operator] = STATE(3856), - [sym_unary_operator] = STATE(3856), - [sym__capture_expression] = STATE(1732), - [sym_binary_operator] = STATE(3856), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3856), - [sym_call] = STATE(3856), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym__atom] = STATE(3645), + [sym_quoted_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym__nullary_operator] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym__capture_expression] = STATE(1739), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3856), - [sym_anonymous_function] = STATE(3856), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1551), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1727), - [sym_integer] = ACTIONS(1685), + [sym_integer] = ACTIONS(1577), [sym_float] = ACTIONS(1727), [sym_char] = ACTIONS(1727), [anon_sym_true] = ACTIONS(69), @@ -85082,43 +84848,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [431] = { - [sym__expression] = STATE(4559), - [sym_block] = STATE(4559), + [sym__expression] = STATE(4572), + [sym_block] = STATE(4572), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4559), - [sym_nil] = STATE(4559), - [sym__atom] = STATE(4559), - [sym_quoted_atom] = STATE(4559), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4559), - [sym_charlist] = STATE(4559), - [sym_sigil] = STATE(4559), - [sym_list] = STATE(4559), - [sym_tuple] = STATE(4559), - [sym_bitstring] = STATE(4559), - [sym_map] = STATE(4559), - [sym__nullary_operator] = STATE(4559), - [sym_unary_operator] = STATE(4559), - [sym_binary_operator] = STATE(4559), + [sym_boolean] = STATE(4572), + [sym_nil] = STATE(4572), + [sym__atom] = STATE(4572), + [sym_quoted_atom] = STATE(4572), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4572), + [sym_charlist] = STATE(4572), + [sym_sigil] = STATE(4572), + [sym_list] = STATE(4572), + [sym_tuple] = STATE(4572), + [sym_bitstring] = STATE(4572), + [sym_map] = STATE(4572), + [sym__nullary_operator] = STATE(4572), + [sym_unary_operator] = STATE(4572), + [sym_binary_operator] = STATE(4572), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4559), - [sym_call] = STATE(4559), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4572), + [sym_call] = STATE(4572), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4559), - [sym_anonymous_function] = STATE(4559), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4572), + [sym_anonymous_function] = STATE(4572), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -85200,43 +84966,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [432] = { - [sym__expression] = STATE(4572), - [sym_block] = STATE(4572), + [sym__expression] = STATE(4555), + [sym_block] = STATE(4555), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4572), - [sym_nil] = STATE(4572), - [sym__atom] = STATE(4572), - [sym_quoted_atom] = STATE(4572), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4572), - [sym_charlist] = STATE(4572), - [sym_sigil] = STATE(4572), - [sym_list] = STATE(4572), - [sym_tuple] = STATE(4572), - [sym_bitstring] = STATE(4572), - [sym_map] = STATE(4572), - [sym__nullary_operator] = STATE(4572), - [sym_unary_operator] = STATE(4572), - [sym_binary_operator] = STATE(4572), + [sym_boolean] = STATE(4555), + [sym_nil] = STATE(4555), + [sym__atom] = STATE(4555), + [sym_quoted_atom] = STATE(4555), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4555), + [sym_charlist] = STATE(4555), + [sym_sigil] = STATE(4555), + [sym_list] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_bitstring] = STATE(4555), + [sym_map] = STATE(4555), + [sym__nullary_operator] = STATE(4555), + [sym_unary_operator] = STATE(4555), + [sym_binary_operator] = STATE(4555), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4572), - [sym_call] = STATE(4572), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4555), + [sym_call] = STATE(4555), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4572), - [sym_anonymous_function] = STATE(4572), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4555), + [sym_anonymous_function] = STATE(4555), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -85318,43 +85084,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [433] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1741), @@ -85378,18 +85144,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -85431,48 +85197,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [434] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1743), @@ -85496,18 +85262,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -85549,7 +85315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -85561,10 +85327,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -85579,31 +85345,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -85618,14 +85384,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -85667,48 +85433,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [436] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1747), @@ -85732,18 +85498,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -85785,48 +85551,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [437] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1749), @@ -85850,18 +85616,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -85903,48 +85669,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [438] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1751), @@ -85968,18 +85734,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86021,48 +85787,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [439] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1753), @@ -86086,18 +85852,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86139,48 +85905,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [440] = { - [sym__expression] = STATE(4564), - [sym_block] = STATE(4564), + [sym__expression] = STATE(4574), + [sym_block] = STATE(4574), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4564), - [sym_nil] = STATE(4564), - [sym__atom] = STATE(4564), - [sym_quoted_atom] = STATE(4564), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4564), - [sym_charlist] = STATE(4564), - [sym_sigil] = STATE(4564), - [sym_list] = STATE(4564), - [sym_tuple] = STATE(4564), - [sym_bitstring] = STATE(4564), - [sym_map] = STATE(4564), - [sym__nullary_operator] = STATE(4564), - [sym_unary_operator] = STATE(4564), - [sym_binary_operator] = STATE(4564), + [sym_boolean] = STATE(4574), + [sym_nil] = STATE(4574), + [sym__atom] = STATE(4574), + [sym_quoted_atom] = STATE(4574), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4574), + [sym_charlist] = STATE(4574), + [sym_sigil] = STATE(4574), + [sym_list] = STATE(4574), + [sym_tuple] = STATE(4574), + [sym_bitstring] = STATE(4574), + [sym_map] = STATE(4574), + [sym__nullary_operator] = STATE(4574), + [sym_unary_operator] = STATE(4574), + [sym_binary_operator] = STATE(4574), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4564), - [sym_call] = STATE(4564), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4574), + [sym_call] = STATE(4574), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4564), - [sym_anonymous_function] = STATE(4564), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4574), + [sym_anonymous_function] = STATE(4574), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -86269,10 +86035,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4456), [sym__atom] = STATE(4456), [sym_quoted_atom] = STATE(4456), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), [sym_string] = STATE(4456), [sym_charlist] = STATE(4456), [sym_sigil] = STATE(4456), @@ -86286,17 +86052,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6916), [sym_dot] = STATE(4456), [sym_call] = STATE(4456), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), [sym_access_call] = STATE(4456), [sym_anonymous_function] = STATE(4456), [ts_builtin_sym_end] = ACTIONS(1759), @@ -86387,10 +86153,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -86405,31 +86171,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -86444,14 +86210,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86493,48 +86259,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [443] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1763), @@ -86558,18 +86324,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86611,48 +86377,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [444] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1765), @@ -86676,18 +86442,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86729,48 +86495,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [445] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1767), @@ -86794,18 +86560,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86847,48 +86613,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [446] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1769), @@ -86912,18 +86678,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -86965,48 +86731,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [447] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1771), @@ -87030,18 +86796,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87083,48 +86849,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [448] = { - [sym__expression] = STATE(4574), - [sym_block] = STATE(4574), + [sym__expression] = STATE(4559), + [sym_block] = STATE(4559), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4574), - [sym_nil] = STATE(4574), - [sym__atom] = STATE(4574), - [sym_quoted_atom] = STATE(4574), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4574), - [sym_charlist] = STATE(4574), - [sym_sigil] = STATE(4574), - [sym_list] = STATE(4574), - [sym_tuple] = STATE(4574), - [sym_bitstring] = STATE(4574), - [sym_map] = STATE(4574), - [sym__nullary_operator] = STATE(4574), - [sym_unary_operator] = STATE(4574), - [sym_binary_operator] = STATE(4574), + [sym_boolean] = STATE(4559), + [sym_nil] = STATE(4559), + [sym__atom] = STATE(4559), + [sym_quoted_atom] = STATE(4559), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4559), + [sym_charlist] = STATE(4559), + [sym_sigil] = STATE(4559), + [sym_list] = STATE(4559), + [sym_tuple] = STATE(4559), + [sym_bitstring] = STATE(4559), + [sym_map] = STATE(4559), + [sym__nullary_operator] = STATE(4559), + [sym_unary_operator] = STATE(4559), + [sym_binary_operator] = STATE(4559), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4574), - [sym_call] = STATE(4574), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4559), + [sym_call] = STATE(4559), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4574), - [sym_anonymous_function] = STATE(4574), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4559), + [sym_anonymous_function] = STATE(4559), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -87206,43 +86972,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [449] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1777), @@ -87266,18 +87032,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87319,48 +87085,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [450] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1779), @@ -87384,18 +87150,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87437,48 +87203,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [451] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1781), @@ -87502,18 +87268,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87555,48 +87321,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [452] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(1783), @@ -87620,18 +87386,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87673,7 +87439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, @@ -87685,10 +87451,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -87703,31 +87469,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -87742,14 +87508,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87791,7 +87557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, @@ -87803,10 +87569,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4579), [sym__atom] = STATE(4561), [sym_quoted_atom] = STATE(4561), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), [sym_string] = STATE(4579), [sym_charlist] = STATE(4579), [sym_sigil] = STATE(4579), @@ -87821,31 +87587,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6884), [sym_dot] = STATE(4561), [sym_call] = STATE(4579), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(4569), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(4562), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), [sym_access_call] = STATE(4579), [sym_anonymous_function] = STATE(4579), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1575), - [sym_integer] = ACTIONS(1577), - [sym_float] = ACTIONS(1577), - [sym_char] = ACTIONS(1577), + [sym_alias] = ACTIONS(1591), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1575), + [sym_atom] = ACTIONS(1591), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -87860,14 +87626,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -87909,49 +87675,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, [455] = { - [sym__expression] = STATE(2967), - [sym_block] = STATE(2967), + [sym__expression] = STATE(2974), + [sym_block] = STATE(2974), [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2967), - [sym_nil] = STATE(2967), - [sym__atom] = STATE(2967), - [sym_quoted_atom] = STATE(2967), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2967), - [sym_charlist] = STATE(2967), - [sym_sigil] = STATE(2967), - [sym_list] = STATE(2967), - [sym_tuple] = STATE(2967), - [sym_bitstring] = STATE(2967), - [sym_map] = STATE(2967), - [sym__nullary_operator] = STATE(2967), - [sym_unary_operator] = STATE(2967), + [sym_boolean] = STATE(2974), + [sym_nil] = STATE(2974), + [sym__atom] = STATE(2974), + [sym_quoted_atom] = STATE(2974), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2974), + [sym_charlist] = STATE(2974), + [sym_sigil] = STATE(2974), + [sym_list] = STATE(2974), + [sym_tuple] = STATE(2974), + [sym_bitstring] = STATE(2974), + [sym_map] = STATE(2974), + [sym__nullary_operator] = STATE(2974), + [sym_unary_operator] = STATE(2974), [sym__capture_expression] = STATE(2986), - [sym_binary_operator] = STATE(2967), + [sym_binary_operator] = STATE(2974), [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2967), - [sym_call] = STATE(2967), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), + [sym_dot] = STATE(2974), + [sym_call] = STATE(2974), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(2967), - [sym_anonymous_function] = STATE(2967), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(2974), + [sym_anonymous_function] = STATE(2974), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1539), [aux_sym_identifier_token1] = ACTIONS(361), @@ -88032,43 +87798,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(586), }, [456] = { - [sym__expression] = STATE(3135), - [sym_block] = STATE(3135), + [sym__expression] = STATE(3292), + [sym_block] = STATE(3292), [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3135), - [sym_nil] = STATE(3135), - [sym__atom] = STATE(3135), - [sym_quoted_atom] = STATE(3135), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3135), - [sym_charlist] = STATE(3135), - [sym_sigil] = STATE(3135), - [sym_list] = STATE(3135), - [sym_tuple] = STATE(3135), - [sym_bitstring] = STATE(3135), - [sym_map] = STATE(3135), - [sym__nullary_operator] = STATE(3135), - [sym_unary_operator] = STATE(3135), - [sym_binary_operator] = STATE(3135), + [sym_boolean] = STATE(3292), + [sym_nil] = STATE(3292), + [sym__atom] = STATE(3292), + [sym_quoted_atom] = STATE(3292), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3292), + [sym_charlist] = STATE(3292), + [sym_sigil] = STATE(3292), + [sym_list] = STATE(3292), + [sym_tuple] = STATE(3292), + [sym_bitstring] = STATE(3292), + [sym_map] = STATE(3292), + [sym__nullary_operator] = STATE(3292), + [sym_unary_operator] = STATE(3292), + [sym_binary_operator] = STATE(3292), [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3135), - [sym_call] = STATE(3135), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), + [sym_dot] = STATE(3292), + [sym_call] = STATE(3292), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3135), - [sym_anonymous_function] = STATE(3135), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3292), + [sym_anonymous_function] = STATE(3292), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(486), [aux_sym_identifier_token1] = ACTIONS(488), @@ -88094,7 +87860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(508), [anon_sym_LT_LT] = ACTIONS(512), [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1415), [anon_sym_AMP] = ACTIONS(516), [anon_sym_PLUS] = ACTIONS(518), [anon_sym_DASH] = ACTIONS(518), @@ -88149,55 +87915,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(532), }, [457] = { - [sym__expression] = STATE(1869), - [sym_block] = STATE(1869), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1869), - [sym_nil] = STATE(1869), - [sym__atom] = STATE(1869), - [sym_quoted_atom] = STATE(1869), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1869), - [sym_charlist] = STATE(1869), - [sym_sigil] = STATE(1869), - [sym_list] = STATE(1869), - [sym_tuple] = STATE(1869), - [sym_bitstring] = STATE(1869), - [sym_map] = STATE(1869), - [sym__nullary_operator] = STATE(1869), - [sym_unary_operator] = STATE(1869), - [sym_binary_operator] = STATE(1869), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1869), - [sym_call] = STATE(1869), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1869), - [sym_anonymous_function] = STATE(1869), + [sym__expression] = STATE(1415), + [sym_block] = STATE(1415), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1415), + [sym_nil] = STATE(1415), + [sym__atom] = STATE(1415), + [sym_quoted_atom] = STATE(1415), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1415), + [sym_charlist] = STATE(1415), + [sym_sigil] = STATE(1415), + [sym_list] = STATE(1415), + [sym_tuple] = STATE(1415), + [sym_bitstring] = STATE(1415), + [sym_map] = STATE(1415), + [sym__nullary_operator] = STATE(1415), + [sym_unary_operator] = STATE(1415), + [sym_binary_operator] = STATE(1415), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1415), + [sym_call] = STATE(1415), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1415), + [sym_anonymous_function] = STATE(1415), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(1793), [sym_integer] = ACTIONS(1793), [sym_float] = ACTIONS(1793), [sym_char] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(225), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(229), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(231), + }, + [458] = { + [sym__expression] = STATE(1858), + [sym_block] = STATE(1858), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1858), + [sym_nil] = STATE(1858), + [sym__atom] = STATE(1858), + [sym_quoted_atom] = STATE(1858), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1858), + [sym_charlist] = STATE(1858), + [sym_sigil] = STATE(1858), + [sym_list] = STATE(1858), + [sym_tuple] = STATE(1858), + [sym_bitstring] = STATE(1858), + [sym_map] = STATE(1858), + [sym__nullary_operator] = STATE(1858), + [sym_unary_operator] = STATE(1858), + [sym_binary_operator] = STATE(1858), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1858), + [sym_call] = STATE(1858), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1858), + [sym_anonymous_function] = STATE(1858), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1795), + [sym_integer] = ACTIONS(1795), + [sym_float] = ACTIONS(1795), + [sym_char] = ACTIONS(1795), [anon_sym_true] = ACTIONS(69), [anon_sym_false] = ACTIONS(69), [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(1793), + [sym_atom] = ACTIONS(1795), [anon_sym_DQUOTE] = ACTIONS(73), [anon_sym_SQUOTE] = ACTIONS(75), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), @@ -88207,7 +88090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), [anon_sym_TILDE] = ACTIONS(85), [anon_sym_LT_LT] = ACTIONS(89), [anon_sym_PERCENT] = ACTIONS(91), @@ -88265,312 +88148,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [458] = { - [sym__expression] = STATE(4495), - [sym_block] = STATE(4495), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4495), - [sym_nil] = STATE(4495), - [sym__atom] = STATE(4495), - [sym_quoted_atom] = STATE(4495), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4495), - [sym_charlist] = STATE(4495), - [sym_sigil] = STATE(4495), - [sym_list] = STATE(4495), - [sym_tuple] = STATE(4495), - [sym_bitstring] = STATE(4495), - [sym_map] = STATE(4495), - [sym__nullary_operator] = STATE(4495), - [sym_unary_operator] = STATE(4495), - [sym_binary_operator] = STATE(4495), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4495), - [sym_call] = STATE(4495), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4495), - [sym_anonymous_function] = STATE(4495), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(1299), - [sym_integer] = ACTIONS(1299), - [sym_float] = ACTIONS(1299), - [sym_char] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), - }, [459] = { - [sym__expression] = STATE(3039), - [sym_block] = STATE(3039), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3039), - [sym_nil] = STATE(3039), - [sym__atom] = STATE(3039), - [sym_quoted_atom] = STATE(3039), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3039), - [sym_charlist] = STATE(3039), - [sym_sigil] = STATE(3039), - [sym_list] = STATE(3039), - [sym_tuple] = STATE(3039), - [sym_bitstring] = STATE(3039), - [sym_map] = STATE(3039), - [sym__nullary_operator] = STATE(3039), - [sym_unary_operator] = STATE(3039), - [sym_binary_operator] = STATE(3039), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3039), - [sym_call] = STATE(3039), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3039), - [sym_anonymous_function] = STATE(3039), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1795), - [sym_integer] = ACTIONS(1795), - [sym_float] = ACTIONS(1795), - [sym_char] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), - }, - [460] = { - [sym__expression] = STATE(3043), - [sym_block] = STATE(3043), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3043), - [sym_nil] = STATE(3043), - [sym__atom] = STATE(3043), - [sym_quoted_atom] = STATE(3043), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3043), - [sym_charlist] = STATE(3043), - [sym_sigil] = STATE(3043), - [sym_list] = STATE(3043), - [sym_tuple] = STATE(3043), - [sym_bitstring] = STATE(3043), - [sym_map] = STATE(3043), - [sym__nullary_operator] = STATE(3043), - [sym_unary_operator] = STATE(3043), - [sym_binary_operator] = STATE(3043), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3043), - [sym_call] = STATE(3043), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3043), - [sym_anonymous_function] = STATE(3043), + [sym__expression] = STATE(1738), + [sym_block] = STATE(1738), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1738), + [sym_nil] = STATE(1738), + [sym__atom] = STATE(1738), + [sym_quoted_atom] = STATE(1738), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1738), + [sym_charlist] = STATE(1738), + [sym_sigil] = STATE(1738), + [sym_list] = STATE(1738), + [sym_tuple] = STATE(1738), + [sym_bitstring] = STATE(1738), + [sym_map] = STATE(1738), + [sym__nullary_operator] = STATE(1738), + [sym_unary_operator] = STATE(1738), + [sym_binary_operator] = STATE(1738), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1738), + [sym_call] = STATE(1738), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1738), + [sym_anonymous_function] = STATE(1738), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1797), [sym_integer] = ACTIONS(1797), [sym_float] = ACTIONS(1797), [sym_char] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -88608,86 +88257,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [461] = { - [sym__expression] = STATE(3061), - [sym_block] = STATE(3061), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3061), - [sym_nil] = STATE(3061), - [sym__atom] = STATE(3061), - [sym_quoted_atom] = STATE(3061), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3061), - [sym_charlist] = STATE(3061), - [sym_sigil] = STATE(3061), - [sym_list] = STATE(3061), - [sym_tuple] = STATE(3061), - [sym_bitstring] = STATE(3061), - [sym_map] = STATE(3061), - [sym__nullary_operator] = STATE(3061), - [sym_unary_operator] = STATE(3061), - [sym_binary_operator] = STATE(3061), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3061), - [sym_call] = STATE(3061), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3061), - [sym_anonymous_function] = STATE(3061), + [460] = { + [sym__expression] = STATE(1859), + [sym_block] = STATE(1859), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1859), + [sym_nil] = STATE(1859), + [sym__atom] = STATE(1859), + [sym_quoted_atom] = STATE(1859), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1859), + [sym_charlist] = STATE(1859), + [sym_sigil] = STATE(1859), + [sym_list] = STATE(1859), + [sym_tuple] = STATE(1859), + [sym_bitstring] = STATE(1859), + [sym_map] = STATE(1859), + [sym__nullary_operator] = STATE(1859), + [sym_unary_operator] = STATE(1859), + [sym_binary_operator] = STATE(1859), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1859), + [sym_call] = STATE(1859), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1859), + [sym_anonymous_function] = STATE(1859), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1799), [sym_integer] = ACTIONS(1799), [sym_float] = ACTIONS(1799), [sym_char] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -88725,86 +88374,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [462] = { - [sym__expression] = STATE(3076), - [sym_block] = STATE(3076), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3076), - [sym_nil] = STATE(3076), - [sym__atom] = STATE(3076), - [sym_quoted_atom] = STATE(3076), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3076), - [sym_charlist] = STATE(3076), - [sym_sigil] = STATE(3076), - [sym_list] = STATE(3076), - [sym_tuple] = STATE(3076), - [sym_bitstring] = STATE(3076), - [sym_map] = STATE(3076), - [sym__nullary_operator] = STATE(3076), - [sym_unary_operator] = STATE(3076), - [sym_binary_operator] = STATE(3076), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3076), - [sym_call] = STATE(3076), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3076), - [sym_anonymous_function] = STATE(3076), + [461] = { + [sym__expression] = STATE(1667), + [sym_block] = STATE(1667), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1667), + [sym_nil] = STATE(1667), + [sym__atom] = STATE(1667), + [sym_quoted_atom] = STATE(1667), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1667), + [sym_charlist] = STATE(1667), + [sym_sigil] = STATE(1667), + [sym_list] = STATE(1667), + [sym_tuple] = STATE(1667), + [sym_bitstring] = STATE(1667), + [sym_map] = STATE(1667), + [sym__nullary_operator] = STATE(1667), + [sym_unary_operator] = STATE(1667), + [sym_binary_operator] = STATE(1667), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1667), + [sym_call] = STATE(1667), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1667), + [sym_anonymous_function] = STATE(1667), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1801), [sym_integer] = ACTIONS(1801), [sym_float] = ACTIONS(1801), [sym_char] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -88842,86 +88491,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [463] = { - [sym__expression] = STATE(3125), - [sym_block] = STATE(3125), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3125), - [sym_nil] = STATE(3125), - [sym__atom] = STATE(3125), - [sym_quoted_atom] = STATE(3125), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3125), - [sym_charlist] = STATE(3125), - [sym_sigil] = STATE(3125), - [sym_list] = STATE(3125), - [sym_tuple] = STATE(3125), - [sym_bitstring] = STATE(3125), - [sym_map] = STATE(3125), - [sym__nullary_operator] = STATE(3125), - [sym_unary_operator] = STATE(3125), - [sym_binary_operator] = STATE(3125), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3125), - [sym_call] = STATE(3125), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3125), - [sym_anonymous_function] = STATE(3125), + [462] = { + [sym__expression] = STATE(1962), + [sym_block] = STATE(1962), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1962), + [sym_nil] = STATE(1962), + [sym__atom] = STATE(1962), + [sym_quoted_atom] = STATE(1962), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1962), + [sym_charlist] = STATE(1962), + [sym_sigil] = STATE(1962), + [sym_list] = STATE(1962), + [sym_tuple] = STATE(1962), + [sym_bitstring] = STATE(1962), + [sym_map] = STATE(1962), + [sym__nullary_operator] = STATE(1962), + [sym_unary_operator] = STATE(1962), + [sym_binary_operator] = STATE(1962), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1962), + [sym_call] = STATE(1962), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1962), + [sym_anonymous_function] = STATE(1962), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1803), [sym_integer] = ACTIONS(1803), [sym_float] = ACTIONS(1803), [sym_char] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -88959,86 +88608,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [464] = { - [sym__expression] = STATE(3126), - [sym_block] = STATE(3126), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3126), - [sym_nil] = STATE(3126), - [sym__atom] = STATE(3126), - [sym_quoted_atom] = STATE(3126), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3126), - [sym_charlist] = STATE(3126), - [sym_sigil] = STATE(3126), - [sym_list] = STATE(3126), - [sym_tuple] = STATE(3126), - [sym_bitstring] = STATE(3126), - [sym_map] = STATE(3126), - [sym__nullary_operator] = STATE(3126), - [sym_unary_operator] = STATE(3126), - [sym_binary_operator] = STATE(3126), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3126), - [sym_call] = STATE(3126), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3126), - [sym_anonymous_function] = STATE(3126), + [463] = { + [sym__expression] = STATE(1961), + [sym_block] = STATE(1961), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1961), + [sym_nil] = STATE(1961), + [sym__atom] = STATE(1961), + [sym_quoted_atom] = STATE(1961), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1961), + [sym_charlist] = STATE(1961), + [sym_sigil] = STATE(1961), + [sym_list] = STATE(1961), + [sym_tuple] = STATE(1961), + [sym_bitstring] = STATE(1961), + [sym_map] = STATE(1961), + [sym__nullary_operator] = STATE(1961), + [sym_unary_operator] = STATE(1961), + [sym_binary_operator] = STATE(1961), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1961), + [sym_call] = STATE(1961), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1961), + [sym_anonymous_function] = STATE(1961), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1805), [sym_integer] = ACTIONS(1805), [sym_float] = ACTIONS(1805), [sym_char] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89076,86 +88725,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [465] = { - [sym__expression] = STATE(3133), - [sym_block] = STATE(3133), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3133), - [sym_nil] = STATE(3133), - [sym__atom] = STATE(3133), - [sym_quoted_atom] = STATE(3133), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3133), - [sym_charlist] = STATE(3133), - [sym_sigil] = STATE(3133), - [sym_list] = STATE(3133), - [sym_tuple] = STATE(3133), - [sym_bitstring] = STATE(3133), - [sym_map] = STATE(3133), - [sym__nullary_operator] = STATE(3133), - [sym_unary_operator] = STATE(3133), - [sym_binary_operator] = STATE(3133), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3133), - [sym_call] = STATE(3133), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3133), - [sym_anonymous_function] = STATE(3133), + [464] = { + [sym__expression] = STATE(1956), + [sym_block] = STATE(1956), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1956), + [sym_nil] = STATE(1956), + [sym__atom] = STATE(1956), + [sym_quoted_atom] = STATE(1956), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1956), + [sym_charlist] = STATE(1956), + [sym_sigil] = STATE(1956), + [sym_list] = STATE(1956), + [sym_tuple] = STATE(1956), + [sym_bitstring] = STATE(1956), + [sym_map] = STATE(1956), + [sym__nullary_operator] = STATE(1956), + [sym_unary_operator] = STATE(1956), + [sym_binary_operator] = STATE(1956), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1956), + [sym_call] = STATE(1956), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1956), + [sym_anonymous_function] = STATE(1956), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1807), [sym_integer] = ACTIONS(1807), [sym_float] = ACTIONS(1807), [sym_char] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89193,86 +88842,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [466] = { - [sym__expression] = STATE(3134), - [sym_block] = STATE(3134), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3134), - [sym_nil] = STATE(3134), - [sym__atom] = STATE(3134), - [sym_quoted_atom] = STATE(3134), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3134), - [sym_charlist] = STATE(3134), - [sym_sigil] = STATE(3134), - [sym_list] = STATE(3134), - [sym_tuple] = STATE(3134), - [sym_bitstring] = STATE(3134), - [sym_map] = STATE(3134), - [sym__nullary_operator] = STATE(3134), - [sym_unary_operator] = STATE(3134), - [sym_binary_operator] = STATE(3134), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3134), - [sym_call] = STATE(3134), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3134), - [sym_anonymous_function] = STATE(3134), + [465] = { + [sym__expression] = STATE(1955), + [sym_block] = STATE(1955), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1955), + [sym_nil] = STATE(1955), + [sym__atom] = STATE(1955), + [sym_quoted_atom] = STATE(1955), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1955), + [sym_charlist] = STATE(1955), + [sym_sigil] = STATE(1955), + [sym_list] = STATE(1955), + [sym_tuple] = STATE(1955), + [sym_bitstring] = STATE(1955), + [sym_map] = STATE(1955), + [sym__nullary_operator] = STATE(1955), + [sym_unary_operator] = STATE(1955), + [sym_binary_operator] = STATE(1955), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1955), + [sym_call] = STATE(1955), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1955), + [sym_anonymous_function] = STATE(1955), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1809), [sym_integer] = ACTIONS(1809), [sym_float] = ACTIONS(1809), [sym_char] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89310,86 +88959,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [467] = { - [sym__expression] = STATE(3136), - [sym_block] = STATE(3136), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3136), - [sym_nil] = STATE(3136), - [sym__atom] = STATE(3136), - [sym_quoted_atom] = STATE(3136), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3136), - [sym_charlist] = STATE(3136), - [sym_sigil] = STATE(3136), - [sym_list] = STATE(3136), - [sym_tuple] = STATE(3136), - [sym_bitstring] = STATE(3136), - [sym_map] = STATE(3136), - [sym__nullary_operator] = STATE(3136), - [sym_unary_operator] = STATE(3136), - [sym_binary_operator] = STATE(3136), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3136), - [sym_call] = STATE(3136), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3136), - [sym_anonymous_function] = STATE(3136), + [466] = { + [sym__expression] = STATE(1954), + [sym_block] = STATE(1954), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1954), + [sym_nil] = STATE(1954), + [sym__atom] = STATE(1954), + [sym_quoted_atom] = STATE(1954), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1954), + [sym_charlist] = STATE(1954), + [sym_sigil] = STATE(1954), + [sym_list] = STATE(1954), + [sym_tuple] = STATE(1954), + [sym_bitstring] = STATE(1954), + [sym_map] = STATE(1954), + [sym__nullary_operator] = STATE(1954), + [sym_unary_operator] = STATE(1954), + [sym_binary_operator] = STATE(1954), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1954), + [sym_call] = STATE(1954), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1954), + [sym_anonymous_function] = STATE(1954), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1811), [sym_integer] = ACTIONS(1811), [sym_float] = ACTIONS(1811), [sym_char] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89427,86 +89076,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [468] = { - [sym__expression] = STATE(3139), - [sym_block] = STATE(3139), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3139), - [sym_nil] = STATE(3139), - [sym__atom] = STATE(3139), - [sym_quoted_atom] = STATE(3139), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3139), - [sym_charlist] = STATE(3139), - [sym_sigil] = STATE(3139), - [sym_list] = STATE(3139), - [sym_tuple] = STATE(3139), - [sym_bitstring] = STATE(3139), - [sym_map] = STATE(3139), - [sym__nullary_operator] = STATE(3139), - [sym_unary_operator] = STATE(3139), - [sym_binary_operator] = STATE(3139), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3139), - [sym_call] = STATE(3139), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3139), - [sym_anonymous_function] = STATE(3139), + [467] = { + [sym__expression] = STATE(1953), + [sym_block] = STATE(1953), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1953), + [sym_nil] = STATE(1953), + [sym__atom] = STATE(1953), + [sym_quoted_atom] = STATE(1953), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1953), + [sym_charlist] = STATE(1953), + [sym_sigil] = STATE(1953), + [sym_list] = STATE(1953), + [sym_tuple] = STATE(1953), + [sym_bitstring] = STATE(1953), + [sym_map] = STATE(1953), + [sym__nullary_operator] = STATE(1953), + [sym_unary_operator] = STATE(1953), + [sym_binary_operator] = STATE(1953), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1953), + [sym_call] = STATE(1953), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1953), + [sym_anonymous_function] = STATE(1953), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1813), [sym_integer] = ACTIONS(1813), [sym_float] = ACTIONS(1813), [sym_char] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89544,86 +89193,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [469] = { - [sym__expression] = STATE(3140), - [sym_block] = STATE(3140), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3140), - [sym_nil] = STATE(3140), - [sym__atom] = STATE(3140), - [sym_quoted_atom] = STATE(3140), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3140), - [sym_charlist] = STATE(3140), - [sym_sigil] = STATE(3140), - [sym_list] = STATE(3140), - [sym_tuple] = STATE(3140), - [sym_bitstring] = STATE(3140), - [sym_map] = STATE(3140), - [sym__nullary_operator] = STATE(3140), - [sym_unary_operator] = STATE(3140), - [sym_binary_operator] = STATE(3140), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3140), - [sym_call] = STATE(3140), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3140), - [sym_anonymous_function] = STATE(3140), + [468] = { + [sym__expression] = STATE(1951), + [sym_block] = STATE(1951), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1951), + [sym_nil] = STATE(1951), + [sym__atom] = STATE(1951), + [sym_quoted_atom] = STATE(1951), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1951), + [sym_charlist] = STATE(1951), + [sym_sigil] = STATE(1951), + [sym_list] = STATE(1951), + [sym_tuple] = STATE(1951), + [sym_bitstring] = STATE(1951), + [sym_map] = STATE(1951), + [sym__nullary_operator] = STATE(1951), + [sym_unary_operator] = STATE(1951), + [sym_binary_operator] = STATE(1951), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1951), + [sym_call] = STATE(1951), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1951), + [sym_anonymous_function] = STATE(1951), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1815), [sym_integer] = ACTIONS(1815), [sym_float] = ACTIONS(1815), [sym_char] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89661,86 +89310,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [470] = { - [sym__expression] = STATE(3446), - [sym_block] = STATE(3446), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(3446), - [sym_nil] = STATE(3446), - [sym__atom] = STATE(3446), - [sym_quoted_atom] = STATE(3446), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3446), - [sym_charlist] = STATE(3446), - [sym_sigil] = STATE(3446), - [sym_list] = STATE(3446), - [sym_tuple] = STATE(3446), - [sym_bitstring] = STATE(3446), - [sym_map] = STATE(3446), - [sym__nullary_operator] = STATE(3446), - [sym_unary_operator] = STATE(3446), - [sym_binary_operator] = STATE(3446), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3446), - [sym_call] = STATE(3446), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3446), - [sym_anonymous_function] = STATE(3446), + [469] = { + [sym__expression] = STATE(1950), + [sym_block] = STATE(1950), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1950), + [sym_nil] = STATE(1950), + [sym__atom] = STATE(1950), + [sym_quoted_atom] = STATE(1950), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1950), + [sym_charlist] = STATE(1950), + [sym_sigil] = STATE(1950), + [sym_list] = STATE(1950), + [sym_tuple] = STATE(1950), + [sym_bitstring] = STATE(1950), + [sym_map] = STATE(1950), + [sym__nullary_operator] = STATE(1950), + [sym_unary_operator] = STATE(1950), + [sym_binary_operator] = STATE(1950), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1950), + [sym_call] = STATE(1950), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1950), + [sym_anonymous_function] = STATE(1950), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1817), [sym_integer] = ACTIONS(1817), [sym_float] = ACTIONS(1817), [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89778,52 +89427,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(117), }, - [471] = { - [sym__expression] = STATE(3447), - [sym_block] = STATE(3447), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym__atom] = STATE(3447), - [sym_quoted_atom] = STATE(3447), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym__nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), + [470] = { + [sym__expression] = STATE(4558), + [sym_block] = STATE(4558), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4558), + [sym_nil] = STATE(4558), + [sym__atom] = STATE(4558), + [sym_quoted_atom] = STATE(4558), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4558), + [sym_charlist] = STATE(4558), + [sym_sigil] = STATE(4558), + [sym_list] = STATE(4558), + [sym_tuple] = STATE(4558), + [sym_bitstring] = STATE(4558), + [sym_map] = STATE(4558), + [sym__nullary_operator] = STATE(4558), + [sym_unary_operator] = STATE(4558), + [sym_binary_operator] = STATE(4558), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), + [sym_dot] = STATE(4558), + [sym_call] = STATE(4558), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4558), + [sym_anonymous_function] = STATE(4558), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -89845,19 +89494,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(1065), [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -89899,82 +89548,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [472] = { - [sym__expression] = STATE(3141), - [sym_block] = STATE(3141), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3141), - [sym_nil] = STATE(3141), - [sym__atom] = STATE(3141), - [sym_quoted_atom] = STATE(3141), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3141), - [sym_charlist] = STATE(3141), - [sym_sigil] = STATE(3141), - [sym_list] = STATE(3141), - [sym_tuple] = STATE(3141), - [sym_bitstring] = STATE(3141), - [sym_map] = STATE(3141), - [sym__nullary_operator] = STATE(3141), - [sym_unary_operator] = STATE(3141), - [sym_binary_operator] = STATE(3141), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3141), - [sym_call] = STATE(3141), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3141), - [sym_anonymous_function] = STATE(3141), + [471] = { + [sym__expression] = STATE(1949), + [sym_block] = STATE(1949), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1949), + [sym_nil] = STATE(1949), + [sym__atom] = STATE(1949), + [sym_quoted_atom] = STATE(1949), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1949), + [sym_charlist] = STATE(1949), + [sym_sigil] = STATE(1949), + [sym_list] = STATE(1949), + [sym_tuple] = STATE(1949), + [sym_bitstring] = STATE(1949), + [sym_map] = STATE(1949), + [sym__nullary_operator] = STATE(1949), + [sym_unary_operator] = STATE(1949), + [sym_binary_operator] = STATE(1949), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1949), + [sym_call] = STATE(1949), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1949), + [sym_anonymous_function] = STATE(1949), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1821), [sym_integer] = ACTIONS(1821), [sym_float] = ACTIONS(1821), [sym_char] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1821), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90012,86 +89661,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [473] = { - [sym__expression] = STATE(3142), - [sym_block] = STATE(3142), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3142), - [sym_nil] = STATE(3142), - [sym__atom] = STATE(3142), - [sym_quoted_atom] = STATE(3142), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3142), - [sym_charlist] = STATE(3142), - [sym_sigil] = STATE(3142), - [sym_list] = STATE(3142), - [sym_tuple] = STATE(3142), - [sym_bitstring] = STATE(3142), - [sym_map] = STATE(3142), - [sym__nullary_operator] = STATE(3142), - [sym_unary_operator] = STATE(3142), - [sym_binary_operator] = STATE(3142), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3142), - [sym_call] = STATE(3142), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3142), - [sym_anonymous_function] = STATE(3142), + [472] = { + [sym__expression] = STATE(4567), + [sym_block] = STATE(4567), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4567), + [sym_nil] = STATE(4567), + [sym__atom] = STATE(4567), + [sym_quoted_atom] = STATE(4567), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4567), + [sym_charlist] = STATE(4567), + [sym_sigil] = STATE(4567), + [sym_list] = STATE(4567), + [sym_tuple] = STATE(4567), + [sym_bitstring] = STATE(4567), + [sym_map] = STATE(4567), + [sym__nullary_operator] = STATE(4567), + [sym_unary_operator] = STATE(4567), + [sym_binary_operator] = STATE(4567), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4567), + [sym_call] = STATE(4567), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4567), + [sym_anonymous_function] = STATE(4567), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1823), [sym_integer] = ACTIONS(1823), [sym_float] = ACTIONS(1823), [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90129,86 +89778,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [474] = { - [sym__expression] = STATE(3143), - [sym_block] = STATE(3143), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3143), - [sym_nil] = STATE(3143), - [sym__atom] = STATE(3143), - [sym_quoted_atom] = STATE(3143), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3143), - [sym_charlist] = STATE(3143), - [sym_sigil] = STATE(3143), - [sym_list] = STATE(3143), - [sym_tuple] = STATE(3143), - [sym_bitstring] = STATE(3143), - [sym_map] = STATE(3143), - [sym__nullary_operator] = STATE(3143), - [sym_unary_operator] = STATE(3143), - [sym_binary_operator] = STATE(3143), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3143), - [sym_call] = STATE(3143), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3143), - [sym_anonymous_function] = STATE(3143), + [473] = { + [sym__expression] = STATE(4557), + [sym_block] = STATE(4557), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4557), + [sym_nil] = STATE(4557), + [sym__atom] = STATE(4557), + [sym_quoted_atom] = STATE(4557), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4557), + [sym_charlist] = STATE(4557), + [sym_sigil] = STATE(4557), + [sym_list] = STATE(4557), + [sym_tuple] = STATE(4557), + [sym_bitstring] = STATE(4557), + [sym_map] = STATE(4557), + [sym__nullary_operator] = STATE(4557), + [sym_unary_operator] = STATE(4557), + [sym_binary_operator] = STATE(4557), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4557), + [sym_call] = STATE(4557), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4557), + [sym_anonymous_function] = STATE(4557), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1825), [sym_integer] = ACTIONS(1825), [sym_float] = ACTIONS(1825), [sym_char] = ACTIONS(1825), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90246,52 +89895,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [475] = { - [sym__expression] = STATE(3486), - [sym_block] = STATE(3486), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(3486), - [sym_nil] = STATE(3486), - [sym__atom] = STATE(3486), - [sym_quoted_atom] = STATE(3486), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3486), - [sym_charlist] = STATE(3486), - [sym_sigil] = STATE(3486), - [sym_list] = STATE(3486), - [sym_tuple] = STATE(3486), - [sym_bitstring] = STATE(3486), - [sym_map] = STATE(3486), - [sym__nullary_operator] = STATE(3486), - [sym_unary_operator] = STATE(3486), - [sym_binary_operator] = STATE(3486), + [474] = { + [sym__expression] = STATE(4566), + [sym_block] = STATE(4566), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4566), + [sym_nil] = STATE(4566), + [sym__atom] = STATE(4566), + [sym_quoted_atom] = STATE(4566), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4566), + [sym_charlist] = STATE(4566), + [sym_sigil] = STATE(4566), + [sym_list] = STATE(4566), + [sym_tuple] = STATE(4566), + [sym_bitstring] = STATE(4566), + [sym_map] = STATE(4566), + [sym__nullary_operator] = STATE(4566), + [sym_unary_operator] = STATE(4566), + [sym_binary_operator] = STATE(4566), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3486), - [sym_call] = STATE(3486), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3486), - [sym_anonymous_function] = STATE(3486), + [sym_dot] = STATE(4566), + [sym_call] = STATE(4566), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4566), + [sym_anonymous_function] = STATE(4566), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -90318,14 +89967,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90367,82 +90016,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [476] = { - [sym__expression] = STATE(3487), - [sym_block] = STATE(3487), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(3487), - [sym_nil] = STATE(3487), - [sym__atom] = STATE(3487), - [sym_quoted_atom] = STATE(3487), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3487), - [sym_charlist] = STATE(3487), - [sym_sigil] = STATE(3487), - [sym_list] = STATE(3487), - [sym_tuple] = STATE(3487), - [sym_bitstring] = STATE(3487), - [sym_map] = STATE(3487), - [sym__nullary_operator] = STATE(3487), - [sym_unary_operator] = STATE(3487), - [sym_binary_operator] = STATE(3487), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3487), - [sym_call] = STATE(3487), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3487), - [sym_anonymous_function] = STATE(3487), + [475] = { + [sym__expression] = STATE(4319), + [sym_block] = STATE(4319), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4319), + [sym_nil] = STATE(4319), + [sym__atom] = STATE(4319), + [sym_quoted_atom] = STATE(4319), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4319), + [sym_charlist] = STATE(4319), + [sym_sigil] = STATE(4319), + [sym_list] = STATE(4319), + [sym_tuple] = STATE(4319), + [sym_bitstring] = STATE(4319), + [sym_map] = STATE(4319), + [sym__nullary_operator] = STATE(4319), + [sym_unary_operator] = STATE(4319), + [sym_binary_operator] = STATE(4319), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4319), + [sym_call] = STATE(4319), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4319), + [sym_anonymous_function] = STATE(4319), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), [sym_alias] = ACTIONS(1829), [sym_integer] = ACTIONS(1829), [sym_float] = ACTIONS(1829), [sym_char] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), [sym_atom] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90480,52 +90129,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(57), }, - [477] = { - [sym__expression] = STATE(4517), - [sym_block] = STATE(4517), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4517), - [sym_nil] = STATE(4517), - [sym__atom] = STATE(4517), - [sym_quoted_atom] = STATE(4517), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4517), - [sym_charlist] = STATE(4517), - [sym_sigil] = STATE(4517), - [sym_list] = STATE(4517), - [sym_tuple] = STATE(4517), - [sym_bitstring] = STATE(4517), - [sym_map] = STATE(4517), - [sym__nullary_operator] = STATE(4517), - [sym_unary_operator] = STATE(4517), - [sym_binary_operator] = STATE(4517), + [476] = { + [sym__expression] = STATE(4577), + [sym_block] = STATE(4577), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4577), + [sym_nil] = STATE(4577), + [sym__atom] = STATE(4577), + [sym_quoted_atom] = STATE(4577), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4577), + [sym_charlist] = STATE(4577), + [sym_sigil] = STATE(4577), + [sym_list] = STATE(4577), + [sym_tuple] = STATE(4577), + [sym_bitstring] = STATE(4577), + [sym_map] = STATE(4577), + [sym__nullary_operator] = STATE(4577), + [sym_unary_operator] = STATE(4577), + [sym_binary_operator] = STATE(4577), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4517), - [sym_call] = STATE(4517), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4517), - [sym_anonymous_function] = STATE(4517), + [sym_dot] = STATE(4577), + [sym_call] = STATE(4577), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4577), + [sym_anonymous_function] = STATE(4577), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -90552,14 +90201,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90601,82 +90250,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [478] = { - [sym__expression] = STATE(3145), - [sym_block] = STATE(3145), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3145), - [sym_nil] = STATE(3145), - [sym__atom] = STATE(3145), - [sym_quoted_atom] = STATE(3145), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3145), - [sym_charlist] = STATE(3145), - [sym_sigil] = STATE(3145), - [sym_list] = STATE(3145), - [sym_tuple] = STATE(3145), - [sym_bitstring] = STATE(3145), - [sym_map] = STATE(3145), - [sym__nullary_operator] = STATE(3145), - [sym_unary_operator] = STATE(3145), - [sym_binary_operator] = STATE(3145), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3145), - [sym_call] = STATE(3145), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3145), - [sym_anonymous_function] = STATE(3145), + [477] = { + [sym__expression] = STATE(4288), + [sym_block] = STATE(4288), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4288), + [sym_nil] = STATE(4288), + [sym__atom] = STATE(4288), + [sym_quoted_atom] = STATE(4288), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4288), + [sym_charlist] = STATE(4288), + [sym_sigil] = STATE(4288), + [sym_list] = STATE(4288), + [sym_tuple] = STATE(4288), + [sym_bitstring] = STATE(4288), + [sym_map] = STATE(4288), + [sym__nullary_operator] = STATE(4288), + [sym_unary_operator] = STATE(4288), + [sym_binary_operator] = STATE(4288), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4288), + [sym_call] = STATE(4288), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4288), + [sym_anonymous_function] = STATE(4288), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), [sym_alias] = ACTIONS(1833), [sym_integer] = ACTIONS(1833), [sym_float] = ACTIONS(1833), [sym_char] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), [sym_atom] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90714,86 +90363,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(57), }, - [479] = { - [sym__expression] = STATE(3146), - [sym_block] = STATE(3146), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3146), - [sym_nil] = STATE(3146), - [sym__atom] = STATE(3146), - [sym_quoted_atom] = STATE(3146), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3146), - [sym_charlist] = STATE(3146), - [sym_sigil] = STATE(3146), - [sym_list] = STATE(3146), - [sym_tuple] = STATE(3146), - [sym_bitstring] = STATE(3146), - [sym_map] = STATE(3146), - [sym__nullary_operator] = STATE(3146), - [sym_unary_operator] = STATE(3146), - [sym_binary_operator] = STATE(3146), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3146), - [sym_call] = STATE(3146), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3146), - [sym_anonymous_function] = STATE(3146), + [478] = { + [sym__expression] = STATE(4565), + [sym_block] = STATE(4565), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4565), + [sym_nil] = STATE(4565), + [sym__atom] = STATE(4565), + [sym_quoted_atom] = STATE(4565), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4565), + [sym_charlist] = STATE(4565), + [sym_sigil] = STATE(4565), + [sym_list] = STATE(4565), + [sym_tuple] = STATE(4565), + [sym_bitstring] = STATE(4565), + [sym_map] = STATE(4565), + [sym__nullary_operator] = STATE(4565), + [sym_unary_operator] = STATE(4565), + [sym_binary_operator] = STATE(4565), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4565), + [sym_call] = STATE(4565), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4565), + [sym_anonymous_function] = STATE(4565), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1835), [sym_integer] = ACTIONS(1835), [sym_float] = ACTIONS(1835), [sym_char] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90831,52 +90480,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [480] = { - [sym__expression] = STATE(4518), - [sym_block] = STATE(4518), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4518), - [sym_nil] = STATE(4518), - [sym__atom] = STATE(4518), - [sym_quoted_atom] = STATE(4518), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4518), - [sym_charlist] = STATE(4518), - [sym_sigil] = STATE(4518), - [sym_list] = STATE(4518), - [sym_tuple] = STATE(4518), - [sym_bitstring] = STATE(4518), - [sym_map] = STATE(4518), - [sym__nullary_operator] = STATE(4518), - [sym_unary_operator] = STATE(4518), - [sym_binary_operator] = STATE(4518), + [479] = { + [sym__expression] = STATE(4560), + [sym_block] = STATE(4560), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4560), + [sym_nil] = STATE(4560), + [sym__atom] = STATE(4560), + [sym_quoted_atom] = STATE(4560), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4560), + [sym_charlist] = STATE(4560), + [sym_sigil] = STATE(4560), + [sym_list] = STATE(4560), + [sym_tuple] = STATE(4560), + [sym_bitstring] = STATE(4560), + [sym_map] = STATE(4560), + [sym__nullary_operator] = STATE(4560), + [sym_unary_operator] = STATE(4560), + [sym_binary_operator] = STATE(4560), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4518), - [sym_call] = STATE(4518), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4518), - [sym_anonymous_function] = STATE(4518), + [sym_dot] = STATE(4560), + [sym_call] = STATE(4560), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4560), + [sym_anonymous_function] = STATE(4560), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -90903,14 +90552,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -90952,82 +90601,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [481] = { - [sym__expression] = STATE(3147), - [sym_block] = STATE(3147), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3147), - [sym_nil] = STATE(3147), - [sym__atom] = STATE(3147), - [sym_quoted_atom] = STATE(3147), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3147), - [sym_charlist] = STATE(3147), - [sym_sigil] = STATE(3147), - [sym_list] = STATE(3147), - [sym_tuple] = STATE(3147), - [sym_bitstring] = STATE(3147), - [sym_map] = STATE(3147), - [sym__nullary_operator] = STATE(3147), - [sym_unary_operator] = STATE(3147), - [sym_binary_operator] = STATE(3147), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3147), - [sym_call] = STATE(3147), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3147), - [sym_anonymous_function] = STATE(3147), + [480] = { + [sym__expression] = STATE(4564), + [sym_block] = STATE(4564), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4564), + [sym_nil] = STATE(4564), + [sym__atom] = STATE(4564), + [sym_quoted_atom] = STATE(4564), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4564), + [sym_charlist] = STATE(4564), + [sym_sigil] = STATE(4564), + [sym_list] = STATE(4564), + [sym_tuple] = STATE(4564), + [sym_bitstring] = STATE(4564), + [sym_map] = STATE(4564), + [sym__nullary_operator] = STATE(4564), + [sym_unary_operator] = STATE(4564), + [sym_binary_operator] = STATE(4564), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4564), + [sym_call] = STATE(4564), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4564), + [sym_anonymous_function] = STATE(4564), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1839), [sym_integer] = ACTIONS(1839), [sym_float] = ACTIONS(1839), [sym_char] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91065,52 +90714,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [482] = { - [sym__expression] = STATE(4520), - [sym_block] = STATE(4520), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4520), - [sym_nil] = STATE(4520), - [sym__atom] = STATE(4520), - [sym_quoted_atom] = STATE(4520), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4520), - [sym_charlist] = STATE(4520), - [sym_sigil] = STATE(4520), - [sym_list] = STATE(4520), - [sym_tuple] = STATE(4520), - [sym_bitstring] = STATE(4520), - [sym_map] = STATE(4520), - [sym__nullary_operator] = STATE(4520), - [sym_unary_operator] = STATE(4520), - [sym_binary_operator] = STATE(4520), + [481] = { + [sym__expression] = STATE(4563), + [sym_block] = STATE(4563), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4563), + [sym_nil] = STATE(4563), + [sym__atom] = STATE(4563), + [sym_quoted_atom] = STATE(4563), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4563), + [sym_charlist] = STATE(4563), + [sym_sigil] = STATE(4563), + [sym_list] = STATE(4563), + [sym_tuple] = STATE(4563), + [sym_bitstring] = STATE(4563), + [sym_map] = STATE(4563), + [sym__nullary_operator] = STATE(4563), + [sym_unary_operator] = STATE(4563), + [sym_binary_operator] = STATE(4563), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4520), - [sym_call] = STATE(4520), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4520), - [sym_anonymous_function] = STATE(4520), + [sym_dot] = STATE(4563), + [sym_call] = STATE(4563), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4563), + [sym_anonymous_function] = STATE(4563), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -91137,14 +90786,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91186,82 +90835,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [483] = { - [sym__expression] = STATE(4418), - [sym_block] = STATE(4418), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4418), - [sym_nil] = STATE(4418), - [sym__atom] = STATE(4418), - [sym_quoted_atom] = STATE(4418), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4418), - [sym_charlist] = STATE(4418), - [sym_sigil] = STATE(4418), - [sym_list] = STATE(4418), - [sym_tuple] = STATE(4418), - [sym_bitstring] = STATE(4418), - [sym_map] = STATE(4418), - [sym__nullary_operator] = STATE(4418), - [sym_unary_operator] = STATE(4418), - [sym_binary_operator] = STATE(4418), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4418), - [sym_call] = STATE(4418), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4418), - [sym_anonymous_function] = STATE(4418), + [482] = { + [sym__expression] = STATE(1948), + [sym_block] = STATE(1948), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1948), + [sym_nil] = STATE(1948), + [sym__atom] = STATE(1948), + [sym_quoted_atom] = STATE(1948), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1948), + [sym_charlist] = STATE(1948), + [sym_sigil] = STATE(1948), + [sym_list] = STATE(1948), + [sym_tuple] = STATE(1948), + [sym_bitstring] = STATE(1948), + [sym_map] = STATE(1948), + [sym__nullary_operator] = STATE(1948), + [sym_unary_operator] = STATE(1948), + [sym_binary_operator] = STATE(1948), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1948), + [sym_call] = STATE(1948), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1948), + [sym_anonymous_function] = STATE(1948), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1843), [sym_integer] = ACTIONS(1843), [sym_float] = ACTIONS(1843), [sym_char] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91299,86 +90948,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(117), }, - [484] = { - [sym__expression] = STATE(4469), - [sym_block] = STATE(4469), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4469), - [sym_nil] = STATE(4469), - [sym__atom] = STATE(4469), - [sym_quoted_atom] = STATE(4469), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4469), - [sym_charlist] = STATE(4469), - [sym_sigil] = STATE(4469), - [sym_list] = STATE(4469), - [sym_tuple] = STATE(4469), - [sym_bitstring] = STATE(4469), - [sym_map] = STATE(4469), - [sym__nullary_operator] = STATE(4469), - [sym_unary_operator] = STATE(4469), - [sym_binary_operator] = STATE(4469), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4469), - [sym_call] = STATE(4469), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4469), - [sym_anonymous_function] = STATE(4469), + [483] = { + [sym__expression] = STATE(1947), + [sym_block] = STATE(1947), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1947), + [sym_nil] = STATE(1947), + [sym__atom] = STATE(1947), + [sym_quoted_atom] = STATE(1947), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1947), + [sym_charlist] = STATE(1947), + [sym_sigil] = STATE(1947), + [sym_list] = STATE(1947), + [sym_tuple] = STATE(1947), + [sym_bitstring] = STATE(1947), + [sym_map] = STATE(1947), + [sym__nullary_operator] = STATE(1947), + [sym_unary_operator] = STATE(1947), + [sym_binary_operator] = STATE(1947), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1947), + [sym_call] = STATE(1947), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1947), + [sym_anonymous_function] = STATE(1947), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1537), - [sym_integer] = ACTIONS(1537), - [sym_float] = ACTIONS(1537), - [sym_char] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1845), + [sym_integer] = ACTIONS(1845), + [sym_float] = ACTIONS(1845), + [sym_char] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91416,86 +91065,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(117), }, - [485] = { - [sym__expression] = STATE(3254), - [sym_block] = STATE(3254), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3254), - [sym_nil] = STATE(3254), - [sym__atom] = STATE(3254), - [sym_quoted_atom] = STATE(3254), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3254), - [sym_charlist] = STATE(3254), - [sym_sigil] = STATE(3254), - [sym_list] = STATE(3254), - [sym_tuple] = STATE(3254), - [sym_bitstring] = STATE(3254), - [sym_map] = STATE(3254), - [sym__nullary_operator] = STATE(3254), - [sym_unary_operator] = STATE(3254), - [sym_binary_operator] = STATE(3254), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3254), - [sym_call] = STATE(3254), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3254), - [sym_anonymous_function] = STATE(3254), + [484] = { + [sym__expression] = STATE(1946), + [sym_block] = STATE(1946), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1946), + [sym_nil] = STATE(1946), + [sym__atom] = STATE(1946), + [sym_quoted_atom] = STATE(1946), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1946), + [sym_charlist] = STATE(1946), + [sym_sigil] = STATE(1946), + [sym_list] = STATE(1946), + [sym_tuple] = STATE(1946), + [sym_bitstring] = STATE(1946), + [sym_map] = STATE(1946), + [sym__nullary_operator] = STATE(1946), + [sym_unary_operator] = STATE(1946), + [sym_binary_operator] = STATE(1946), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1946), + [sym_call] = STATE(1946), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1946), + [sym_anonymous_function] = STATE(1946), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1845), - [sym_integer] = ACTIONS(1845), - [sym_float] = ACTIONS(1845), - [sym_char] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1847), + [sym_char] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91533,86 +91182,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(117), }, - [486] = { - [sym__expression] = STATE(4496), - [sym_block] = STATE(4496), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4496), - [sym_nil] = STATE(4496), - [sym__atom] = STATE(4496), - [sym_quoted_atom] = STATE(4496), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4496), - [sym_charlist] = STATE(4496), - [sym_sigil] = STATE(4496), - [sym_list] = STATE(4496), - [sym_tuple] = STATE(4496), - [sym_bitstring] = STATE(4496), - [sym_map] = STATE(4496), - [sym__nullary_operator] = STATE(4496), - [sym_unary_operator] = STATE(4496), - [sym_binary_operator] = STATE(4496), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4496), - [sym_call] = STATE(4496), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4496), - [sym_anonymous_function] = STATE(4496), + [485] = { + [sym__expression] = STATE(1945), + [sym_block] = STATE(1945), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1945), + [sym_nil] = STATE(1945), + [sym__atom] = STATE(1945), + [sym_quoted_atom] = STATE(1945), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1945), + [sym_charlist] = STATE(1945), + [sym_sigil] = STATE(1945), + [sym_list] = STATE(1945), + [sym_tuple] = STATE(1945), + [sym_bitstring] = STATE(1945), + [sym_map] = STATE(1945), + [sym__nullary_operator] = STATE(1945), + [sym_unary_operator] = STATE(1945), + [sym_binary_operator] = STATE(1945), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1945), + [sym_call] = STATE(1945), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1945), + [sym_anonymous_function] = STATE(1945), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1461), - [sym_integer] = ACTIONS(1461), - [sym_float] = ACTIONS(1461), - [sym_char] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1849), + [sym_integer] = ACTIONS(1849), + [sym_float] = ACTIONS(1849), + [sym_char] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91650,86 +91299,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(117), }, - [487] = { - [sym__expression] = STATE(3168), - [sym_block] = STATE(3168), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3168), - [sym_nil] = STATE(3168), - [sym__atom] = STATE(3168), - [sym_quoted_atom] = STATE(3168), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3168), - [sym_charlist] = STATE(3168), - [sym_sigil] = STATE(3168), - [sym_list] = STATE(3168), - [sym_tuple] = STATE(3168), - [sym_bitstring] = STATE(3168), - [sym_map] = STATE(3168), - [sym__nullary_operator] = STATE(3168), - [sym_unary_operator] = STATE(3168), - [sym_binary_operator] = STATE(3168), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3168), - [sym_call] = STATE(3168), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3168), - [sym_anonymous_function] = STATE(3168), + [486] = { + [sym__expression] = STATE(4535), + [sym_block] = STATE(4535), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4535), + [sym_nil] = STATE(4535), + [sym__atom] = STATE(4535), + [sym_quoted_atom] = STATE(4535), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4535), + [sym_charlist] = STATE(4535), + [sym_sigil] = STATE(4535), + [sym_list] = STATE(4535), + [sym_tuple] = STATE(4535), + [sym_bitstring] = STATE(4535), + [sym_map] = STATE(4535), + [sym__nullary_operator] = STATE(4535), + [sym_unary_operator] = STATE(4535), + [sym_binary_operator] = STATE(4535), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4535), + [sym_call] = STATE(4535), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4535), + [sym_anonymous_function] = STATE(4535), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1847), - [sym_integer] = ACTIONS(1847), - [sym_float] = ACTIONS(1847), - [sym_char] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(1537), + [sym_integer] = ACTIONS(1537), + [sym_float] = ACTIONS(1537), + [sym_char] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91767,86 +91416,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(958), }, - [488] = { - [sym__expression] = STATE(3769), - [sym_block] = STATE(3769), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3769), - [sym_nil] = STATE(3769), - [sym__atom] = STATE(3769), - [sym_quoted_atom] = STATE(3769), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3769), - [sym_charlist] = STATE(3769), - [sym_sigil] = STATE(3769), - [sym_list] = STATE(3769), - [sym_tuple] = STATE(3769), - [sym_bitstring] = STATE(3769), - [sym_map] = STATE(3769), - [sym__nullary_operator] = STATE(3769), - [sym_unary_operator] = STATE(3769), - [sym_binary_operator] = STATE(3769), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3769), - [sym_call] = STATE(3769), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3769), - [sym_anonymous_function] = STATE(3769), + [487] = { + [sym__expression] = STATE(1944), + [sym_block] = STATE(1944), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1944), + [sym_nil] = STATE(1944), + [sym__atom] = STATE(1944), + [sym_quoted_atom] = STATE(1944), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1944), + [sym_charlist] = STATE(1944), + [sym_sigil] = STATE(1944), + [sym_list] = STATE(1944), + [sym_tuple] = STATE(1944), + [sym_bitstring] = STATE(1944), + [sym_map] = STATE(1944), + [sym__nullary_operator] = STATE(1944), + [sym_unary_operator] = STATE(1944), + [sym_binary_operator] = STATE(1944), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1944), + [sym_call] = STATE(1944), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1944), + [sym_anonymous_function] = STATE(1944), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1151), - [sym_integer] = ACTIONS(1151), - [sym_float] = ACTIONS(1151), - [sym_char] = ACTIONS(1151), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1151), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1851), + [sym_char] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -91884,86 +91533,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(117), }, - [489] = { - [sym__expression] = STATE(4522), - [sym_block] = STATE(4522), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4522), - [sym_nil] = STATE(4522), - [sym__atom] = STATE(4522), - [sym_quoted_atom] = STATE(4522), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4522), - [sym_charlist] = STATE(4522), - [sym_sigil] = STATE(4522), - [sym_list] = STATE(4522), - [sym_tuple] = STATE(4522), - [sym_bitstring] = STATE(4522), - [sym_map] = STATE(4522), - [sym__nullary_operator] = STATE(4522), - [sym_unary_operator] = STATE(4522), - [sym_binary_operator] = STATE(4522), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4522), - [sym_call] = STATE(4522), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4522), - [sym_anonymous_function] = STATE(4522), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), + [488] = { + [sym__expression] = STATE(4536), + [sym_block] = STATE(4536), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4536), + [sym_nil] = STATE(4536), + [sym__atom] = STATE(4536), + [sym_quoted_atom] = STATE(4536), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4536), + [sym_charlist] = STATE(4536), + [sym_sigil] = STATE(4536), + [sym_list] = STATE(4536), + [sym_tuple] = STATE(4536), + [sym_bitstring] = STATE(4536), + [sym_map] = STATE(4536), + [sym__nullary_operator] = STATE(4536), + [sym_unary_operator] = STATE(4536), + [sym_binary_operator] = STATE(4536), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4536), + [sym_call] = STATE(4536), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4536), + [sym_anonymous_function] = STATE(4536), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1849), - [sym_integer] = ACTIONS(1849), - [sym_float] = ACTIONS(1849), - [sym_char] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [sym_alias] = ACTIONS(1461), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym_char] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92001,86 +91650,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(844), }, - [490] = { - [sym__expression] = STATE(2533), - [sym_block] = STATE(2533), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2533), - [sym_nil] = STATE(2533), - [sym__atom] = STATE(2533), - [sym_quoted_atom] = STATE(2533), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2533), - [sym_charlist] = STATE(2533), - [sym_sigil] = STATE(2533), - [sym_list] = STATE(2533), - [sym_tuple] = STATE(2533), - [sym_bitstring] = STATE(2533), - [sym_map] = STATE(2533), - [sym__nullary_operator] = STATE(2533), - [sym_unary_operator] = STATE(2533), - [sym_binary_operator] = STATE(2533), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2533), - [sym_call] = STATE(2533), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2533), - [sym_anonymous_function] = STATE(2533), + [489] = { + [sym__expression] = STATE(4554), + [sym_block] = STATE(4554), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4554), + [sym_nil] = STATE(4554), + [sym__atom] = STATE(4554), + [sym_quoted_atom] = STATE(4554), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4554), + [sym_charlist] = STATE(4554), + [sym_sigil] = STATE(4554), + [sym_list] = STATE(4554), + [sym_tuple] = STATE(4554), + [sym_bitstring] = STATE(4554), + [sym_map] = STATE(4554), + [sym__nullary_operator] = STATE(4554), + [sym_unary_operator] = STATE(4554), + [sym_binary_operator] = STATE(4554), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4554), + [sym_call] = STATE(4554), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4554), + [sym_anonymous_function] = STATE(4554), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(1851), - [sym_integer] = ACTIONS(1851), - [sym_float] = ACTIONS(1851), - [sym_char] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(1853), + [sym_integer] = ACTIONS(1853), + [sym_float] = ACTIONS(1853), + [sym_char] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92118,64 +91767,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [491] = { - [sym__expression] = STATE(4556), - [sym_block] = STATE(4556), + [490] = { + [sym__expression] = STATE(3613), + [sym_block] = STATE(3613), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4556), - [sym_nil] = STATE(4556), - [sym__atom] = STATE(4556), - [sym_quoted_atom] = STATE(4556), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4556), - [sym_charlist] = STATE(4556), - [sym_sigil] = STATE(4556), - [sym_list] = STATE(4556), - [sym_tuple] = STATE(4556), - [sym_bitstring] = STATE(4556), - [sym_map] = STATE(4556), - [sym__nullary_operator] = STATE(4556), - [sym_unary_operator] = STATE(4556), - [sym_binary_operator] = STATE(4556), + [sym_boolean] = STATE(3613), + [sym_nil] = STATE(3613), + [sym__atom] = STATE(3613), + [sym_quoted_atom] = STATE(3613), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3613), + [sym_charlist] = STATE(3613), + [sym_sigil] = STATE(3613), + [sym_list] = STATE(3613), + [sym_tuple] = STATE(3613), + [sym_bitstring] = STATE(3613), + [sym_map] = STATE(3613), + [sym__nullary_operator] = STATE(3613), + [sym_unary_operator] = STATE(3613), + [sym_binary_operator] = STATE(3613), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4556), - [sym_call] = STATE(4556), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3613), + [sym_call] = STATE(3613), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4556), - [sym_anonymous_function] = STATE(4556), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3613), + [sym_anonymous_function] = STATE(3613), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1853), - [sym_integer] = ACTIONS(1853), - [sym_float] = ACTIONS(1853), - [sym_char] = ACTIONS(1853), + [sym_alias] = ACTIONS(1151), + [sym_integer] = ACTIONS(1151), + [sym_float] = ACTIONS(1151), + [sym_char] = ACTIONS(1151), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1853), + [sym_atom] = ACTIONS(1151), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -92243,78 +91892,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [492] = { - [sym__expression] = STATE(4122), - [sym_block] = STATE(4122), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4122), - [sym_nil] = STATE(4122), - [sym__atom] = STATE(4122), - [sym_quoted_atom] = STATE(4122), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4122), - [sym_charlist] = STATE(4122), - [sym_sigil] = STATE(4122), - [sym_list] = STATE(4122), - [sym_tuple] = STATE(4122), - [sym_bitstring] = STATE(4122), - [sym_map] = STATE(4122), - [sym__nullary_operator] = STATE(4122), - [sym_unary_operator] = STATE(4122), - [sym_binary_operator] = STATE(4122), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4122), - [sym_call] = STATE(4122), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4122), - [sym_anonymous_function] = STATE(4122), + [491] = { + [sym__expression] = STATE(1943), + [sym_block] = STATE(1943), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1943), + [sym_nil] = STATE(1943), + [sym__atom] = STATE(1943), + [sym_quoted_atom] = STATE(1943), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1943), + [sym_charlist] = STATE(1943), + [sym_sigil] = STATE(1943), + [sym_list] = STATE(1943), + [sym_tuple] = STATE(1943), + [sym_bitstring] = STATE(1943), + [sym_map] = STATE(1943), + [sym__nullary_operator] = STATE(1943), + [sym_unary_operator] = STATE(1943), + [sym_binary_operator] = STATE(1943), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1943), + [sym_call] = STATE(1943), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1943), + [sym_anonymous_function] = STATE(1943), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(1855), [sym_integer] = ACTIONS(1855), [sym_float] = ACTIONS(1855), [sym_char] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92352,203 +92001,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(117), }, - [493] = { - [sym__expression] = STATE(4523), - [sym_block] = STATE(4523), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4523), - [sym_nil] = STATE(4523), - [sym__atom] = STATE(4523), - [sym_quoted_atom] = STATE(4523), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4523), - [sym_charlist] = STATE(4523), - [sym_sigil] = STATE(4523), - [sym_list] = STATE(4523), - [sym_tuple] = STATE(4523), - [sym_bitstring] = STATE(4523), - [sym_map] = STATE(4523), - [sym__nullary_operator] = STATE(4523), - [sym_unary_operator] = STATE(4523), - [sym_binary_operator] = STATE(4523), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4523), - [sym_call] = STATE(4523), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4523), - [sym_anonymous_function] = STATE(4523), + [492] = { + [sym__expression] = STATE(4076), + [sym_block] = STATE(4076), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4076), + [sym_nil] = STATE(4076), + [sym__atom] = STATE(4076), + [sym_quoted_atom] = STATE(4076), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4076), + [sym_charlist] = STATE(4076), + [sym_sigil] = STATE(4076), + [sym_list] = STATE(4076), + [sym_tuple] = STATE(4076), + [sym_bitstring] = STATE(4076), + [sym_map] = STATE(4076), + [sym__nullary_operator] = STATE(4076), + [sym_unary_operator] = STATE(4076), + [sym_binary_operator] = STATE(4076), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4076), + [sym_call] = STATE(4076), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4076), + [sym_anonymous_function] = STATE(4076), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1857), [sym_integer] = ACTIONS(1857), [sym_float] = ACTIONS(1857), [sym_char] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), - }, - [494] = { - [sym__expression] = STATE(4578), - [sym_block] = STATE(4578), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4578), - [sym_nil] = STATE(4578), - [sym__atom] = STATE(4578), - [sym_quoted_atom] = STATE(4578), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4578), - [sym_charlist] = STATE(4578), - [sym_sigil] = STATE(4578), - [sym_list] = STATE(4578), - [sym_tuple] = STATE(4578), - [sym_bitstring] = STATE(4578), - [sym_map] = STATE(4578), - [sym__nullary_operator] = STATE(4578), - [sym_unary_operator] = STATE(4578), - [sym_binary_operator] = STATE(4578), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4578), - [sym_call] = STATE(4578), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4578), - [sym_anonymous_function] = STATE(4578), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1859), - [sym_integer] = ACTIONS(1859), - [sym_float] = ACTIONS(1859), - [sym_char] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92586,15 +92118,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(958), }, - [495] = { + [493] = { [sym__expression] = STATE(1999), [sym_block] = STATE(1999), [sym_identifier] = STATE(57), @@ -92602,8 +92134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(1999), [sym__atom] = STATE(1999), [sym_quoted_atom] = STATE(1999), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), [sym_string] = STATE(1999), @@ -92622,13 +92154,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), [sym_access_call] = STATE(1999), [sym_anonymous_function] = STATE(1999), @@ -92636,14 +92168,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1861), + [sym_atom] = ACTIONS(1859), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -92654,18 +92186,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92707,82 +92239,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [496] = { - [sym__expression] = STATE(4525), - [sym_block] = STATE(4525), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4525), - [sym_nil] = STATE(4525), - [sym__atom] = STATE(4525), - [sym_quoted_atom] = STATE(4525), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4525), - [sym_charlist] = STATE(4525), - [sym_sigil] = STATE(4525), - [sym_list] = STATE(4525), - [sym_tuple] = STATE(4525), - [sym_bitstring] = STATE(4525), - [sym_map] = STATE(4525), - [sym__nullary_operator] = STATE(4525), - [sym_unary_operator] = STATE(4525), - [sym_binary_operator] = STATE(4525), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4525), - [sym_call] = STATE(4525), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4525), - [sym_anonymous_function] = STATE(4525), + [494] = { + [sym__expression] = STATE(1860), + [sym_block] = STATE(1860), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1860), + [sym_nil] = STATE(1860), + [sym__atom] = STATE(1860), + [sym_quoted_atom] = STATE(1860), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1860), + [sym_charlist] = STATE(1860), + [sym_sigil] = STATE(1860), + [sym_list] = STATE(1860), + [sym_tuple] = STATE(1860), + [sym_bitstring] = STATE(1860), + [sym_map] = STATE(1860), + [sym__nullary_operator] = STATE(1860), + [sym_unary_operator] = STATE(1860), + [sym_binary_operator] = STATE(1860), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1860), + [sym_call] = STATE(1860), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1860), + [sym_anonymous_function] = STATE(1860), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1863), - [sym_integer] = ACTIONS(1863), - [sym_float] = ACTIONS(1863), - [sym_char] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1861), + [sym_integer] = ACTIONS(1861), + [sym_float] = ACTIONS(1861), + [sym_char] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92820,86 +92352,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(117), }, - [497] = { - [sym__expression] = STATE(4526), - [sym_block] = STATE(4526), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4526), - [sym_nil] = STATE(4526), - [sym__atom] = STATE(4526), - [sym_quoted_atom] = STATE(4526), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4526), - [sym_charlist] = STATE(4526), - [sym_sigil] = STATE(4526), - [sym_list] = STATE(4526), - [sym_tuple] = STATE(4526), - [sym_bitstring] = STATE(4526), - [sym_map] = STATE(4526), - [sym__nullary_operator] = STATE(4526), - [sym_unary_operator] = STATE(4526), - [sym_binary_operator] = STATE(4526), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4526), - [sym_call] = STATE(4526), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4526), - [sym_anonymous_function] = STATE(4526), + [495] = { + [sym__expression] = STATE(3040), + [sym_block] = STATE(3040), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3040), + [sym_nil] = STATE(3040), + [sym__atom] = STATE(3040), + [sym_quoted_atom] = STATE(3040), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3040), + [sym_charlist] = STATE(3040), + [sym_sigil] = STATE(3040), + [sym_list] = STATE(3040), + [sym_tuple] = STATE(3040), + [sym_bitstring] = STATE(3040), + [sym_map] = STATE(3040), + [sym__nullary_operator] = STATE(3040), + [sym_unary_operator] = STATE(3040), + [sym_binary_operator] = STATE(3040), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3040), + [sym_call] = STATE(3040), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3040), + [sym_anonymous_function] = STATE(3040), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1865), - [sym_integer] = ACTIONS(1865), - [sym_float] = ACTIONS(1865), - [sym_char] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -92937,64 +92469,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [498] = { - [sym__expression] = STATE(4565), - [sym_block] = STATE(4565), + [496] = { + [sym__expression] = STATE(4570), + [sym_block] = STATE(4570), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4565), - [sym_nil] = STATE(4565), - [sym__atom] = STATE(4565), - [sym_quoted_atom] = STATE(4565), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4565), - [sym_charlist] = STATE(4565), - [sym_sigil] = STATE(4565), - [sym_list] = STATE(4565), - [sym_tuple] = STATE(4565), - [sym_bitstring] = STATE(4565), - [sym_map] = STATE(4565), - [sym__nullary_operator] = STATE(4565), - [sym_unary_operator] = STATE(4565), - [sym_binary_operator] = STATE(4565), + [sym_boolean] = STATE(4570), + [sym_nil] = STATE(4570), + [sym__atom] = STATE(4570), + [sym_quoted_atom] = STATE(4570), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4570), + [sym_charlist] = STATE(4570), + [sym_sigil] = STATE(4570), + [sym_list] = STATE(4570), + [sym_tuple] = STATE(4570), + [sym_bitstring] = STATE(4570), + [sym_map] = STATE(4570), + [sym__nullary_operator] = STATE(4570), + [sym_unary_operator] = STATE(4570), + [sym_binary_operator] = STATE(4570), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4565), - [sym_call] = STATE(4565), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4570), + [sym_call] = STATE(4570), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4565), - [sym_anonymous_function] = STATE(4565), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4570), + [sym_anonymous_function] = STATE(4570), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1867), - [sym_integer] = ACTIONS(1867), - [sym_float] = ACTIONS(1867), - [sym_char] = ACTIONS(1867), + [sym_alias] = ACTIONS(1865), + [sym_integer] = ACTIONS(1865), + [sym_float] = ACTIONS(1865), + [sym_char] = ACTIONS(1865), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1867), + [sym_atom] = ACTIONS(1865), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -93062,78 +92594,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [499] = { - [sym__expression] = STATE(4563), - [sym_block] = STATE(4563), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4563), - [sym_nil] = STATE(4563), - [sym__atom] = STATE(4563), - [sym_quoted_atom] = STATE(4563), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4563), - [sym_charlist] = STATE(4563), - [sym_sigil] = STATE(4563), - [sym_list] = STATE(4563), - [sym_tuple] = STATE(4563), - [sym_bitstring] = STATE(4563), - [sym_map] = STATE(4563), - [sym__nullary_operator] = STATE(4563), - [sym_unary_operator] = STATE(4563), - [sym_binary_operator] = STATE(4563), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4563), - [sym_call] = STATE(4563), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4563), - [sym_anonymous_function] = STATE(4563), + [497] = { + [sym__expression] = STATE(3275), + [sym_block] = STATE(3275), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3275), + [sym_nil] = STATE(3275), + [sym__atom] = STATE(3275), + [sym_quoted_atom] = STATE(3275), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3275), + [sym_charlist] = STATE(3275), + [sym_sigil] = STATE(3275), + [sym_list] = STATE(3275), + [sym_tuple] = STATE(3275), + [sym_bitstring] = STATE(3275), + [sym_map] = STATE(3275), + [sym__nullary_operator] = STATE(3275), + [sym_unary_operator] = STATE(3275), + [sym_binary_operator] = STATE(3275), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3275), + [sym_call] = STATE(3275), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3275), + [sym_anonymous_function] = STATE(3275), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1869), - [sym_integer] = ACTIONS(1869), - [sym_float] = ACTIONS(1869), - [sym_char] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93171,86 +92703,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [500] = { - [sym__expression] = STATE(4527), - [sym_block] = STATE(4527), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4527), - [sym_nil] = STATE(4527), - [sym__atom] = STATE(4527), - [sym_quoted_atom] = STATE(4527), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4527), - [sym_charlist] = STATE(4527), - [sym_sigil] = STATE(4527), - [sym_list] = STATE(4527), - [sym_tuple] = STATE(4527), - [sym_bitstring] = STATE(4527), - [sym_map] = STATE(4527), - [sym__nullary_operator] = STATE(4527), - [sym_unary_operator] = STATE(4527), - [sym_binary_operator] = STATE(4527), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4527), - [sym_call] = STATE(4527), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4527), - [sym_anonymous_function] = STATE(4527), + [498] = { + [sym__expression] = STATE(4146), + [sym_block] = STATE(4146), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4146), + [sym_nil] = STATE(4146), + [sym__atom] = STATE(4146), + [sym_quoted_atom] = STATE(4146), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4146), + [sym_charlist] = STATE(4146), + [sym_sigil] = STATE(4146), + [sym_list] = STATE(4146), + [sym_tuple] = STATE(4146), + [sym_bitstring] = STATE(4146), + [sym_map] = STATE(4146), + [sym__nullary_operator] = STATE(4146), + [sym_unary_operator] = STATE(4146), + [sym_binary_operator] = STATE(4146), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4146), + [sym_call] = STATE(4146), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4146), + [sym_anonymous_function] = STATE(4146), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1871), - [sym_integer] = ACTIONS(1871), - [sym_float] = ACTIONS(1871), - [sym_char] = ACTIONS(1871), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1869), + [sym_integer] = ACTIONS(1869), + [sym_float] = ACTIONS(1869), + [sym_char] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93288,86 +92820,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(57), }, - [501] = { - [sym__expression] = STATE(4528), - [sym_block] = STATE(4528), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4528), - [sym_nil] = STATE(4528), - [sym__atom] = STATE(4528), - [sym_quoted_atom] = STATE(4528), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4528), - [sym_charlist] = STATE(4528), - [sym_sigil] = STATE(4528), - [sym_list] = STATE(4528), - [sym_tuple] = STATE(4528), - [sym_bitstring] = STATE(4528), - [sym_map] = STATE(4528), - [sym__nullary_operator] = STATE(4528), - [sym_unary_operator] = STATE(4528), - [sym_binary_operator] = STATE(4528), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4528), - [sym_call] = STATE(4528), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4528), - [sym_anonymous_function] = STATE(4528), + [499] = { + [sym__expression] = STATE(2146), + [sym_block] = STATE(2146), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2146), + [sym_nil] = STATE(2146), + [sym__atom] = STATE(2146), + [sym_quoted_atom] = STATE(2146), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2146), + [sym_charlist] = STATE(2146), + [sym_sigil] = STATE(2146), + [sym_list] = STATE(2146), + [sym_tuple] = STATE(2146), + [sym_bitstring] = STATE(2146), + [sym_map] = STATE(2146), + [sym__nullary_operator] = STATE(2146), + [sym_unary_operator] = STATE(2146), + [sym_binary_operator] = STATE(2146), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2146), + [sym_call] = STATE(2146), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2146), + [sym_anonymous_function] = STATE(2146), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1873), - [sym_integer] = ACTIONS(1873), - [sym_float] = ACTIONS(1873), - [sym_char] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93405,86 +92937,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(958), }, - [502] = { - [sym__expression] = STATE(4194), - [sym_block] = STATE(4194), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4194), - [sym_nil] = STATE(4194), - [sym__atom] = STATE(4194), - [sym_quoted_atom] = STATE(4194), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4194), - [sym_charlist] = STATE(4194), - [sym_sigil] = STATE(4194), - [sym_list] = STATE(4194), - [sym_tuple] = STATE(4194), - [sym_bitstring] = STATE(4194), - [sym_map] = STATE(4194), - [sym__nullary_operator] = STATE(4194), - [sym_unary_operator] = STATE(4194), - [sym_binary_operator] = STATE(4194), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4194), - [sym_call] = STATE(4194), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4194), - [sym_anonymous_function] = STATE(4194), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(1875), - [sym_integer] = ACTIONS(1875), + [500] = { + [sym__expression] = STATE(3274), + [sym_block] = STATE(3274), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3274), + [sym_nil] = STATE(3274), + [sym__atom] = STATE(3274), + [sym_quoted_atom] = STATE(3274), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3274), + [sym_charlist] = STATE(3274), + [sym_sigil] = STATE(3274), + [sym_list] = STATE(3274), + [sym_tuple] = STATE(3274), + [sym_bitstring] = STATE(3274), + [sym_map] = STATE(3274), + [sym__nullary_operator] = STATE(3274), + [sym_unary_operator] = STATE(3274), + [sym_binary_operator] = STATE(3274), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3274), + [sym_call] = STATE(3274), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3274), + [sym_anonymous_function] = STATE(3274), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1873), + [sym_integer] = ACTIONS(1873), + [sym_float] = ACTIONS(1873), + [sym_char] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(580), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(584), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(586), + }, + [501] = { + [sym__expression] = STATE(1938), + [sym_block] = STATE(1938), + [sym_identifier] = STATE(20), + [sym_boolean] = STATE(1938), + [sym_nil] = STATE(1938), + [sym__atom] = STATE(1938), + [sym_quoted_atom] = STATE(1938), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1938), + [sym_charlist] = STATE(1938), + [sym_sigil] = STATE(1938), + [sym_list] = STATE(1938), + [sym_tuple] = STATE(1938), + [sym_bitstring] = STATE(1938), + [sym_map] = STATE(1938), + [sym__nullary_operator] = STATE(1938), + [sym_unary_operator] = STATE(1938), + [sym_binary_operator] = STATE(1938), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1938), + [sym_call] = STATE(1938), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(15), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1938), + [sym_anonymous_function] = STATE(1938), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1875), + [sym_integer] = ACTIONS(1875), [sym_float] = ACTIONS(1875), [sym_char] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(97), + [anon_sym_DASH] = ACTIONS(97), + [anon_sym_BANG] = ACTIONS(97), + [anon_sym_CARET] = ACTIONS(97), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), + [anon_sym_not] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93522,86 +93171,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(115), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(117), }, - [503] = { - [sym__expression] = STATE(4562), - [sym_block] = STATE(4562), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4562), - [sym_nil] = STATE(4562), - [sym__atom] = STATE(4562), - [sym_quoted_atom] = STATE(4562), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4562), - [sym_charlist] = STATE(4562), - [sym_sigil] = STATE(4562), - [sym_list] = STATE(4562), - [sym_tuple] = STATE(4562), - [sym_bitstring] = STATE(4562), - [sym_map] = STATE(4562), - [sym__nullary_operator] = STATE(4562), - [sym_unary_operator] = STATE(4562), - [sym_binary_operator] = STATE(4562), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4562), - [sym_call] = STATE(4562), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4562), - [sym_anonymous_function] = STATE(4562), + [502] = { + [sym__expression] = STATE(3273), + [sym_block] = STATE(3273), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3273), + [sym_nil] = STATE(3273), + [sym__atom] = STATE(3273), + [sym_quoted_atom] = STATE(3273), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3273), + [sym_charlist] = STATE(3273), + [sym_sigil] = STATE(3273), + [sym_list] = STATE(3273), + [sym_tuple] = STATE(3273), + [sym_bitstring] = STATE(3273), + [sym_map] = STATE(3273), + [sym__nullary_operator] = STATE(3273), + [sym_unary_operator] = STATE(3273), + [sym_binary_operator] = STATE(3273), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3273), + [sym_call] = STATE(3273), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3273), + [sym_anonymous_function] = STATE(3273), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1877), [sym_integer] = ACTIONS(1877), [sym_float] = ACTIONS(1877), [sym_char] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93639,86 +93288,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [504] = { - [sym__expression] = STATE(4195), - [sym_block] = STATE(4195), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4195), - [sym_nil] = STATE(4195), - [sym__atom] = STATE(4195), - [sym_quoted_atom] = STATE(4195), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4195), - [sym_charlist] = STATE(4195), - [sym_sigil] = STATE(4195), - [sym_list] = STATE(4195), - [sym_tuple] = STATE(4195), - [sym_bitstring] = STATE(4195), - [sym_map] = STATE(4195), - [sym__nullary_operator] = STATE(4195), - [sym_unary_operator] = STATE(4195), - [sym_binary_operator] = STATE(4195), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4195), - [sym_call] = STATE(4195), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4195), - [sym_anonymous_function] = STATE(4195), + [503] = { + [sym__expression] = STATE(1771), + [sym_block] = STATE(1771), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1771), + [sym_nil] = STATE(1771), + [sym__atom] = STATE(1771), + [sym_quoted_atom] = STATE(1771), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1771), + [sym_charlist] = STATE(1771), + [sym_sigil] = STATE(1771), + [sym_list] = STATE(1771), + [sym_tuple] = STATE(1771), + [sym_bitstring] = STATE(1771), + [sym_map] = STATE(1771), + [sym__nullary_operator] = STATE(1771), + [sym_unary_operator] = STATE(1771), + [sym_binary_operator] = STATE(1771), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1771), + [sym_call] = STATE(1771), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1771), + [sym_anonymous_function] = STATE(1771), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(1879), [sym_integer] = ACTIONS(1879), [sym_float] = ACTIONS(1879), [sym_char] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93756,86 +93405,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(281), }, - [505] = { - [sym__expression] = STATE(4529), - [sym_block] = STATE(4529), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4529), - [sym_nil] = STATE(4529), - [sym__atom] = STATE(4529), - [sym_quoted_atom] = STATE(4529), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4529), - [sym_charlist] = STATE(4529), - [sym_sigil] = STATE(4529), - [sym_list] = STATE(4529), - [sym_tuple] = STATE(4529), - [sym_bitstring] = STATE(4529), - [sym_map] = STATE(4529), - [sym__nullary_operator] = STATE(4529), - [sym_unary_operator] = STATE(4529), - [sym_binary_operator] = STATE(4529), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4529), - [sym_call] = STATE(4529), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4529), - [sym_anonymous_function] = STATE(4529), + [504] = { + [sym__expression] = STATE(3272), + [sym_block] = STATE(3272), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3272), + [sym_nil] = STATE(3272), + [sym__atom] = STATE(3272), + [sym_quoted_atom] = STATE(3272), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3272), + [sym_charlist] = STATE(3272), + [sym_sigil] = STATE(3272), + [sym_list] = STATE(3272), + [sym_tuple] = STATE(3272), + [sym_bitstring] = STATE(3272), + [sym_map] = STATE(3272), + [sym__nullary_operator] = STATE(3272), + [sym_unary_operator] = STATE(3272), + [sym_binary_operator] = STATE(3272), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3272), + [sym_call] = STATE(3272), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3272), + [sym_anonymous_function] = STATE(3272), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1881), [sym_integer] = ACTIONS(1881), [sym_float] = ACTIONS(1881), [sym_char] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93873,86 +93522,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [506] = { - [sym__expression] = STATE(4530), - [sym_block] = STATE(4530), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4530), - [sym_nil] = STATE(4530), - [sym__atom] = STATE(4530), - [sym_quoted_atom] = STATE(4530), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4530), - [sym_charlist] = STATE(4530), - [sym_sigil] = STATE(4530), - [sym_list] = STATE(4530), - [sym_tuple] = STATE(4530), - [sym_bitstring] = STATE(4530), - [sym_map] = STATE(4530), - [sym__nullary_operator] = STATE(4530), - [sym_unary_operator] = STATE(4530), - [sym_binary_operator] = STATE(4530), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4530), - [sym_call] = STATE(4530), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4530), - [sym_anonymous_function] = STATE(4530), + [505] = { + [sym__expression] = STATE(4340), + [sym_block] = STATE(4340), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4340), + [sym_nil] = STATE(4340), + [sym__atom] = STATE(4340), + [sym_quoted_atom] = STATE(4340), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4340), + [sym_charlist] = STATE(4340), + [sym_sigil] = STATE(4340), + [sym_list] = STATE(4340), + [sym_tuple] = STATE(4340), + [sym_bitstring] = STATE(4340), + [sym_map] = STATE(4340), + [sym__nullary_operator] = STATE(4340), + [sym_unary_operator] = STATE(4340), + [sym_binary_operator] = STATE(4340), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4340), + [sym_call] = STATE(4340), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4340), + [sym_anonymous_function] = STATE(4340), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(1883), [sym_integer] = ACTIONS(1883), [sym_float] = ACTIONS(1883), [sym_char] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(1883), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -93990,86 +93639,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(958), }, - [507] = { - [sym__expression] = STATE(4553), - [sym_block] = STATE(4553), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4553), - [sym_nil] = STATE(4553), - [sym__atom] = STATE(4553), - [sym_quoted_atom] = STATE(4553), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4553), - [sym_charlist] = STATE(4553), - [sym_sigil] = STATE(4553), - [sym_list] = STATE(4553), - [sym_tuple] = STATE(4553), - [sym_bitstring] = STATE(4553), - [sym_map] = STATE(4553), - [sym__nullary_operator] = STATE(4553), - [sym_unary_operator] = STATE(4553), - [sym_binary_operator] = STATE(4553), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4553), - [sym_call] = STATE(4553), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4553), - [sym_anonymous_function] = STATE(4553), + [506] = { + [sym__expression] = STATE(3271), + [sym_block] = STATE(3271), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3271), + [sym_nil] = STATE(3271), + [sym__atom] = STATE(3271), + [sym_quoted_atom] = STATE(3271), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3271), + [sym_charlist] = STATE(3271), + [sym_sigil] = STATE(3271), + [sym_list] = STATE(3271), + [sym_tuple] = STATE(3271), + [sym_bitstring] = STATE(3271), + [sym_map] = STATE(3271), + [sym__nullary_operator] = STATE(3271), + [sym_unary_operator] = STATE(3271), + [sym_binary_operator] = STATE(3271), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3271), + [sym_call] = STATE(3271), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3271), + [sym_anonymous_function] = STATE(3271), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1885), [sym_integer] = ACTIONS(1885), [sym_float] = ACTIONS(1885), [sym_char] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94107,52 +93756,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [508] = { - [sym__expression] = STATE(4531), - [sym_block] = STATE(4531), + [507] = { + [sym__expression] = STATE(4494), + [sym_block] = STATE(4494), [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4531), - [sym_nil] = STATE(4531), - [sym__atom] = STATE(4531), - [sym_quoted_atom] = STATE(4531), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4531), - [sym_charlist] = STATE(4531), - [sym_sigil] = STATE(4531), - [sym_list] = STATE(4531), - [sym_tuple] = STATE(4531), - [sym_bitstring] = STATE(4531), - [sym_map] = STATE(4531), - [sym__nullary_operator] = STATE(4531), - [sym_unary_operator] = STATE(4531), - [sym_binary_operator] = STATE(4531), + [sym_boolean] = STATE(4494), + [sym_nil] = STATE(4494), + [sym__atom] = STATE(4494), + [sym_quoted_atom] = STATE(4494), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4494), + [sym_charlist] = STATE(4494), + [sym_sigil] = STATE(4494), + [sym_list] = STATE(4494), + [sym_tuple] = STATE(4494), + [sym_bitstring] = STATE(4494), + [sym_map] = STATE(4494), + [sym__nullary_operator] = STATE(4494), + [sym_unary_operator] = STATE(4494), + [sym_binary_operator] = STATE(4494), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4531), - [sym_call] = STATE(4531), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4494), + [sym_call] = STATE(4494), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4531), - [sym_anonymous_function] = STATE(4531), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4494), + [sym_anonymous_function] = STATE(4494), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), @@ -94179,14 +93828,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94228,82 +93877,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [509] = { - [sym__expression] = STATE(4532), - [sym_block] = STATE(4532), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4532), - [sym_nil] = STATE(4532), - [sym__atom] = STATE(4532), - [sym_quoted_atom] = STATE(4532), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4532), - [sym_charlist] = STATE(4532), - [sym_sigil] = STATE(4532), - [sym_list] = STATE(4532), - [sym_tuple] = STATE(4532), - [sym_bitstring] = STATE(4532), - [sym_map] = STATE(4532), - [sym__nullary_operator] = STATE(4532), - [sym_unary_operator] = STATE(4532), - [sym_binary_operator] = STATE(4532), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4532), - [sym_call] = STATE(4532), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4532), - [sym_anonymous_function] = STATE(4532), + [508] = { + [sym__expression] = STATE(3270), + [sym_block] = STATE(3270), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3270), + [sym_nil] = STATE(3270), + [sym__atom] = STATE(3270), + [sym_quoted_atom] = STATE(3270), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3270), + [sym_charlist] = STATE(3270), + [sym_sigil] = STATE(3270), + [sym_list] = STATE(3270), + [sym_tuple] = STATE(3270), + [sym_bitstring] = STATE(3270), + [sym_map] = STATE(3270), + [sym__nullary_operator] = STATE(3270), + [sym_unary_operator] = STATE(3270), + [sym_binary_operator] = STATE(3270), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3270), + [sym_call] = STATE(3270), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3270), + [sym_anonymous_function] = STATE(3270), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1889), [sym_integer] = ACTIONS(1889), [sym_float] = ACTIONS(1889), [sym_char] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94341,86 +93990,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [510] = { - [sym__expression] = STATE(4533), - [sym_block] = STATE(4533), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4533), - [sym_nil] = STATE(4533), - [sym__atom] = STATE(4533), - [sym_quoted_atom] = STATE(4533), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4533), - [sym_charlist] = STATE(4533), - [sym_sigil] = STATE(4533), - [sym_list] = STATE(4533), - [sym_tuple] = STATE(4533), - [sym_bitstring] = STATE(4533), - [sym_map] = STATE(4533), - [sym__nullary_operator] = STATE(4533), - [sym_unary_operator] = STATE(4533), - [sym_binary_operator] = STATE(4533), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4533), - [sym_call] = STATE(4533), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4533), - [sym_anonymous_function] = STATE(4533), + [509] = { + [sym__expression] = STATE(4309), + [sym_block] = STATE(4309), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4309), + [sym_nil] = STATE(4309), + [sym__atom] = STATE(4309), + [sym_quoted_atom] = STATE(4309), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4309), + [sym_charlist] = STATE(4309), + [sym_sigil] = STATE(4309), + [sym_list] = STATE(4309), + [sym_tuple] = STATE(4309), + [sym_bitstring] = STATE(4309), + [sym_map] = STATE(4309), + [sym__nullary_operator] = STATE(4309), + [sym_unary_operator] = STATE(4309), + [sym_binary_operator] = STATE(4309), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4309), + [sym_call] = STATE(4309), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4309), + [sym_anonymous_function] = STATE(4309), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(1891), [sym_integer] = ACTIONS(1891), [sym_float] = ACTIONS(1891), [sym_char] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(1891), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94458,86 +94107,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(958), }, - [511] = { - [sym__expression] = STATE(3339), - [sym_block] = STATE(3339), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(3339), - [sym_nil] = STATE(3339), - [sym__atom] = STATE(3339), - [sym_quoted_atom] = STATE(3339), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3339), - [sym_charlist] = STATE(3339), - [sym_sigil] = STATE(3339), - [sym_list] = STATE(3339), - [sym_tuple] = STATE(3339), - [sym_bitstring] = STATE(3339), - [sym_map] = STATE(3339), - [sym__nullary_operator] = STATE(3339), - [sym_unary_operator] = STATE(3339), - [sym_binary_operator] = STATE(3339), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3339), - [sym_call] = STATE(3339), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3339), - [sym_anonymous_function] = STATE(3339), + [510] = { + [sym__expression] = STATE(3269), + [sym_block] = STATE(3269), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3269), + [sym_nil] = STATE(3269), + [sym__atom] = STATE(3269), + [sym_quoted_atom] = STATE(3269), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3269), + [sym_charlist] = STATE(3269), + [sym_sigil] = STATE(3269), + [sym_list] = STATE(3269), + [sym_tuple] = STATE(3269), + [sym_bitstring] = STATE(3269), + [sym_map] = STATE(3269), + [sym__nullary_operator] = STATE(3269), + [sym_unary_operator] = STATE(3269), + [sym_binary_operator] = STATE(3269), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3269), + [sym_call] = STATE(3269), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3269), + [sym_anonymous_function] = STATE(3269), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1893), [sym_integer] = ACTIONS(1893), [sym_float] = ACTIONS(1893), [sym_char] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94575,86 +94224,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [512] = { - [sym__expression] = STATE(4575), - [sym_block] = STATE(4575), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4575), - [sym_nil] = STATE(4575), - [sym__atom] = STATE(4575), - [sym_quoted_atom] = STATE(4575), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4575), - [sym_charlist] = STATE(4575), - [sym_sigil] = STATE(4575), - [sym_list] = STATE(4575), - [sym_tuple] = STATE(4575), - [sym_bitstring] = STATE(4575), - [sym_map] = STATE(4575), - [sym__nullary_operator] = STATE(4575), - [sym_unary_operator] = STATE(4575), - [sym_binary_operator] = STATE(4575), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4575), - [sym_call] = STATE(4575), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4575), - [sym_anonymous_function] = STATE(4575), + [511] = { + [sym__expression] = STATE(1425), + [sym_block] = STATE(1425), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1425), + [sym_nil] = STATE(1425), + [sym__atom] = STATE(1425), + [sym_quoted_atom] = STATE(1425), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1425), + [sym_charlist] = STATE(1425), + [sym_sigil] = STATE(1425), + [sym_list] = STATE(1425), + [sym_tuple] = STATE(1425), + [sym_bitstring] = STATE(1425), + [sym_map] = STATE(1425), + [sym__nullary_operator] = STATE(1425), + [sym_unary_operator] = STATE(1425), + [sym_binary_operator] = STATE(1425), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1425), + [sym_call] = STATE(1425), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1425), + [sym_anonymous_function] = STATE(1425), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(1895), [sym_integer] = ACTIONS(1895), [sym_float] = ACTIONS(1895), [sym_char] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94692,86 +94341,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(231), }, - [513] = { - [sym__expression] = STATE(2871), - [sym_block] = STATE(2871), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2871), - [sym_nil] = STATE(2871), - [sym__atom] = STATE(2871), - [sym_quoted_atom] = STATE(2871), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2871), - [sym_charlist] = STATE(2871), - [sym_sigil] = STATE(2871), - [sym_list] = STATE(2871), - [sym_tuple] = STATE(2871), - [sym_bitstring] = STATE(2871), - [sym_map] = STATE(2871), - [sym__nullary_operator] = STATE(2871), - [sym_unary_operator] = STATE(2871), - [sym_binary_operator] = STATE(2871), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2871), - [sym_call] = STATE(2871), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2871), - [sym_anonymous_function] = STATE(2871), + [512] = { + [sym__expression] = STATE(1768), + [sym_block] = STATE(1768), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1768), + [sym_nil] = STATE(1768), + [sym__atom] = STATE(1768), + [sym_quoted_atom] = STATE(1768), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1768), + [sym_charlist] = STATE(1768), + [sym_sigil] = STATE(1768), + [sym_list] = STATE(1768), + [sym_tuple] = STATE(1768), + [sym_bitstring] = STATE(1768), + [sym_map] = STATE(1768), + [sym__nullary_operator] = STATE(1768), + [sym_unary_operator] = STATE(1768), + [sym_binary_operator] = STATE(1768), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1768), + [sym_call] = STATE(1768), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1768), + [sym_anonymous_function] = STATE(1768), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(1297), - [sym_integer] = ACTIONS(1297), - [sym_float] = ACTIONS(1297), - [sym_char] = ACTIONS(1297), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1297), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(1327), + [sym_integer] = ACTIONS(1327), + [sym_float] = ACTIONS(1327), + [sym_char] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94809,86 +94458,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [514] = { - [sym__expression] = STATE(4150), - [sym_block] = STATE(4150), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4150), - [sym_nil] = STATE(4150), - [sym__atom] = STATE(4150), - [sym_quoted_atom] = STATE(4150), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4150), - [sym_charlist] = STATE(4150), - [sym_sigil] = STATE(4150), - [sym_list] = STATE(4150), - [sym_tuple] = STATE(4150), - [sym_bitstring] = STATE(4150), - [sym_map] = STATE(4150), - [sym__nullary_operator] = STATE(4150), - [sym_unary_operator] = STATE(4150), - [sym_binary_operator] = STATE(4150), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4150), - [sym_call] = STATE(4150), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4150), - [sym_anonymous_function] = STATE(4150), + [513] = { + [sym__expression] = STATE(3268), + [sym_block] = STATE(3268), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3268), + [sym_nil] = STATE(3268), + [sym__atom] = STATE(3268), + [sym_quoted_atom] = STATE(3268), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3268), + [sym_charlist] = STATE(3268), + [sym_sigil] = STATE(3268), + [sym_list] = STATE(3268), + [sym_tuple] = STATE(3268), + [sym_bitstring] = STATE(3268), + [sym_map] = STATE(3268), + [sym__nullary_operator] = STATE(3268), + [sym_unary_operator] = STATE(3268), + [sym_binary_operator] = STATE(3268), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3268), + [sym_call] = STATE(3268), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3268), + [sym_anonymous_function] = STATE(3268), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1897), [sym_integer] = ACTIONS(1897), [sym_float] = ACTIONS(1897), [sym_char] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -94926,52 +94575,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(586), }, - [515] = { - [sym__expression] = STATE(2032), - [sym_block] = STATE(2032), + [514] = { + [sym__expression] = STATE(4085), + [sym_block] = STATE(4085), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(2032), - [sym_nil] = STATE(2032), - [sym__atom] = STATE(2032), - [sym_quoted_atom] = STATE(2032), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4085), + [sym_nil] = STATE(4085), + [sym__atom] = STATE(4085), + [sym_quoted_atom] = STATE(4085), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2032), - [sym_charlist] = STATE(2032), - [sym_sigil] = STATE(2032), - [sym_list] = STATE(2032), - [sym_tuple] = STATE(2032), - [sym_bitstring] = STATE(2032), - [sym_map] = STATE(2032), - [sym__nullary_operator] = STATE(2032), - [sym_unary_operator] = STATE(2032), - [sym_binary_operator] = STATE(2032), + [sym_string] = STATE(4085), + [sym_charlist] = STATE(4085), + [sym_sigil] = STATE(4085), + [sym_list] = STATE(4085), + [sym_tuple] = STATE(4085), + [sym_bitstring] = STATE(4085), + [sym_map] = STATE(4085), + [sym__nullary_operator] = STATE(4085), + [sym_unary_operator] = STATE(4085), + [sym_binary_operator] = STATE(4085), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2032), - [sym_call] = STATE(2032), + [sym_dot] = STATE(4085), + [sym_call] = STATE(4085), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2032), - [sym_anonymous_function] = STATE(2032), + [sym_access_call] = STATE(4085), + [sym_anonymous_function] = STATE(4085), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(686), @@ -94994,18 +94643,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95047,82 +94696,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [516] = { - [sym__expression] = STATE(4153), - [sym_block] = STATE(4153), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4153), - [sym_nil] = STATE(4153), - [sym__atom] = STATE(4153), - [sym_quoted_atom] = STATE(4153), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4153), - [sym_charlist] = STATE(4153), - [sym_sigil] = STATE(4153), - [sym_list] = STATE(4153), - [sym_tuple] = STATE(4153), - [sym_bitstring] = STATE(4153), - [sym_map] = STATE(4153), - [sym__nullary_operator] = STATE(4153), - [sym_unary_operator] = STATE(4153), - [sym_binary_operator] = STATE(4153), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4153), - [sym_call] = STATE(4153), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4153), - [sym_anonymous_function] = STATE(4153), + [515] = { + [sym__expression] = STATE(3267), + [sym_block] = STATE(3267), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3267), + [sym_nil] = STATE(3267), + [sym__atom] = STATE(3267), + [sym_quoted_atom] = STATE(3267), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3267), + [sym_charlist] = STATE(3267), + [sym_sigil] = STATE(3267), + [sym_list] = STATE(3267), + [sym_tuple] = STATE(3267), + [sym_bitstring] = STATE(3267), + [sym_map] = STATE(3267), + [sym__nullary_operator] = STATE(3267), + [sym_unary_operator] = STATE(3267), + [sym_binary_operator] = STATE(3267), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3267), + [sym_call] = STATE(3267), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3267), + [sym_anonymous_function] = STATE(3267), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1901), [sym_integer] = ACTIONS(1901), [sym_float] = ACTIONS(1901), [sym_char] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95160,52 +94809,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(586), }, - [517] = { - [sym__expression] = STATE(4154), - [sym_block] = STATE(4154), + [516] = { + [sym__expression] = STATE(2032), + [sym_block] = STATE(2032), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4154), - [sym_nil] = STATE(4154), - [sym__atom] = STATE(4154), - [sym_quoted_atom] = STATE(4154), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(2032), + [sym_nil] = STATE(2032), + [sym__atom] = STATE(2032), + [sym_quoted_atom] = STATE(2032), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4154), - [sym_charlist] = STATE(4154), - [sym_sigil] = STATE(4154), - [sym_list] = STATE(4154), - [sym_tuple] = STATE(4154), - [sym_bitstring] = STATE(4154), - [sym_map] = STATE(4154), - [sym__nullary_operator] = STATE(4154), - [sym_unary_operator] = STATE(4154), - [sym_binary_operator] = STATE(4154), + [sym_string] = STATE(2032), + [sym_charlist] = STATE(2032), + [sym_sigil] = STATE(2032), + [sym_list] = STATE(2032), + [sym_tuple] = STATE(2032), + [sym_bitstring] = STATE(2032), + [sym_map] = STATE(2032), + [sym__nullary_operator] = STATE(2032), + [sym_unary_operator] = STATE(2032), + [sym_binary_operator] = STATE(2032), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4154), - [sym_call] = STATE(4154), + [sym_dot] = STATE(2032), + [sym_call] = STATE(2032), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4154), - [sym_anonymous_function] = STATE(4154), + [sym_access_call] = STATE(2032), + [sym_anonymous_function] = STATE(2032), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(686), @@ -95228,18 +94877,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95281,82 +94930,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [518] = { - [sym__expression] = STATE(4567), - [sym_block] = STATE(4567), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4567), - [sym_nil] = STATE(4567), - [sym__atom] = STATE(4567), - [sym_quoted_atom] = STATE(4567), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4567), - [sym_charlist] = STATE(4567), - [sym_sigil] = STATE(4567), - [sym_list] = STATE(4567), - [sym_tuple] = STATE(4567), - [sym_bitstring] = STATE(4567), - [sym_map] = STATE(4567), - [sym__nullary_operator] = STATE(4567), - [sym_unary_operator] = STATE(4567), - [sym_binary_operator] = STATE(4567), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4567), - [sym_call] = STATE(4567), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4567), - [sym_anonymous_function] = STATE(4567), + [517] = { + [sym__expression] = STATE(4082), + [sym_block] = STATE(4082), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4082), + [sym_nil] = STATE(4082), + [sym__atom] = STATE(4082), + [sym_quoted_atom] = STATE(4082), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4082), + [sym_charlist] = STATE(4082), + [sym_sigil] = STATE(4082), + [sym_list] = STATE(4082), + [sym_tuple] = STATE(4082), + [sym_bitstring] = STATE(4082), + [sym_map] = STATE(4082), + [sym__nullary_operator] = STATE(4082), + [sym_unary_operator] = STATE(4082), + [sym_binary_operator] = STATE(4082), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4082), + [sym_call] = STATE(4082), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4082), + [sym_anonymous_function] = STATE(4082), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(1905), [sym_integer] = ACTIONS(1905), [sym_float] = ACTIONS(1905), [sym_char] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), [sym_atom] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95394,86 +95043,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(844), }, - [519] = { - [sym__expression] = STATE(4183), - [sym_block] = STATE(4183), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4183), - [sym_nil] = STATE(4183), - [sym__atom] = STATE(4183), - [sym_quoted_atom] = STATE(4183), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4183), - [sym_charlist] = STATE(4183), - [sym_sigil] = STATE(4183), - [sym_list] = STATE(4183), - [sym_tuple] = STATE(4183), - [sym_bitstring] = STATE(4183), - [sym_map] = STATE(4183), - [sym__nullary_operator] = STATE(4183), - [sym_unary_operator] = STATE(4183), - [sym_binary_operator] = STATE(4183), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4183), - [sym_call] = STATE(4183), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4183), - [sym_anonymous_function] = STATE(4183), + [518] = { + [sym__expression] = STATE(3264), + [sym_block] = STATE(3264), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3264), + [sym_nil] = STATE(3264), + [sym__atom] = STATE(3264), + [sym_quoted_atom] = STATE(3264), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3264), + [sym_charlist] = STATE(3264), + [sym_sigil] = STATE(3264), + [sym_list] = STATE(3264), + [sym_tuple] = STATE(3264), + [sym_bitstring] = STATE(3264), + [sym_map] = STATE(3264), + [sym__nullary_operator] = STATE(3264), + [sym_unary_operator] = STATE(3264), + [sym_binary_operator] = STATE(3264), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3264), + [sym_call] = STATE(3264), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3264), + [sym_anonymous_function] = STATE(3264), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(1907), [sym_integer] = ACTIONS(1907), [sym_float] = ACTIONS(1907), [sym_char] = ACTIONS(1907), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), [sym_atom] = ACTIONS(1907), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95511,86 +95160,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(586), }, - [520] = { - [sym__expression] = STATE(4164), - [sym_block] = STATE(4164), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4164), - [sym_nil] = STATE(4164), - [sym__atom] = STATE(4164), - [sym_quoted_atom] = STATE(4164), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4164), - [sym_charlist] = STATE(4164), - [sym_sigil] = STATE(4164), - [sym_list] = STATE(4164), - [sym_tuple] = STATE(4164), - [sym_bitstring] = STATE(4164), - [sym_map] = STATE(4164), - [sym__nullary_operator] = STATE(4164), - [sym_unary_operator] = STATE(4164), - [sym_binary_operator] = STATE(4164), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4164), - [sym_call] = STATE(4164), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4164), - [sym_anonymous_function] = STATE(4164), + [519] = { + [sym__expression] = STATE(3308), + [sym_block] = STATE(3308), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3308), + [sym_nil] = STATE(3308), + [sym__atom] = STATE(3308), + [sym_quoted_atom] = STATE(3308), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3308), + [sym_charlist] = STATE(3308), + [sym_sigil] = STATE(3308), + [sym_list] = STATE(3308), + [sym_tuple] = STATE(3308), + [sym_bitstring] = STATE(3308), + [sym_map] = STATE(3308), + [sym__nullary_operator] = STATE(3308), + [sym_unary_operator] = STATE(3308), + [sym_binary_operator] = STATE(3308), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3308), + [sym_call] = STATE(3308), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3308), + [sym_anonymous_function] = STATE(3308), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(1909), [sym_integer] = ACTIONS(1909), [sym_float] = ACTIONS(1909), [sym_char] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95628,86 +95277,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [521] = { - [sym__expression] = STATE(2187), - [sym_block] = STATE(2187), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2187), - [sym_nil] = STATE(2187), - [sym__atom] = STATE(2187), - [sym_quoted_atom] = STATE(2187), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2187), - [sym_charlist] = STATE(2187), - [sym_sigil] = STATE(2187), - [sym_list] = STATE(2187), - [sym_tuple] = STATE(2187), - [sym_bitstring] = STATE(2187), - [sym_map] = STATE(2187), - [sym__nullary_operator] = STATE(2187), - [sym_unary_operator] = STATE(2187), - [sym_binary_operator] = STATE(2187), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2187), - [sym_call] = STATE(2187), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2187), - [sym_anonymous_function] = STATE(2187), + [520] = { + [sym__expression] = STATE(4119), + [sym_block] = STATE(4119), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4119), + [sym_nil] = STATE(4119), + [sym__atom] = STATE(4119), + [sym_quoted_atom] = STATE(4119), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4119), + [sym_charlist] = STATE(4119), + [sym_sigil] = STATE(4119), + [sym_list] = STATE(4119), + [sym_tuple] = STATE(4119), + [sym_bitstring] = STATE(4119), + [sym_map] = STATE(4119), + [sym__nullary_operator] = STATE(4119), + [sym_unary_operator] = STATE(4119), + [sym_binary_operator] = STATE(4119), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4119), + [sym_call] = STATE(4119), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4119), + [sym_anonymous_function] = STATE(4119), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), [sym_alias] = ACTIONS(1911), [sym_integer] = ACTIONS(1911), [sym_float] = ACTIONS(1911), [sym_char] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), [sym_atom] = ACTIONS(1911), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95745,86 +95394,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [522] = { - [sym__expression] = STATE(2186), - [sym_block] = STATE(2186), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2186), - [sym_nil] = STATE(2186), - [sym__atom] = STATE(2186), - [sym_quoted_atom] = STATE(2186), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2186), - [sym_charlist] = STATE(2186), - [sym_sigil] = STATE(2186), - [sym_list] = STATE(2186), - [sym_tuple] = STATE(2186), - [sym_bitstring] = STATE(2186), - [sym_map] = STATE(2186), - [sym__nullary_operator] = STATE(2186), - [sym_unary_operator] = STATE(2186), - [sym_binary_operator] = STATE(2186), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2186), - [sym_call] = STATE(2186), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2186), - [sym_anonymous_function] = STATE(2186), + [521] = { + [sym__expression] = STATE(1426), + [sym_block] = STATE(1426), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1426), + [sym_nil] = STATE(1426), + [sym__atom] = STATE(1426), + [sym_quoted_atom] = STATE(1426), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1426), + [sym_charlist] = STATE(1426), + [sym_sigil] = STATE(1426), + [sym_list] = STATE(1426), + [sym_tuple] = STATE(1426), + [sym_bitstring] = STATE(1426), + [sym_map] = STATE(1426), + [sym__nullary_operator] = STATE(1426), + [sym_unary_operator] = STATE(1426), + [sym_binary_operator] = STATE(1426), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1426), + [sym_call] = STATE(1426), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1426), + [sym_anonymous_function] = STATE(1426), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1913), - [sym_integer] = ACTIONS(1913), - [sym_float] = ACTIONS(1913), - [sym_char] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1421), + [sym_char] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95862,86 +95511,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(231), }, - [523] = { - [sym__expression] = STATE(2137), - [sym_block] = STATE(2137), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2137), - [sym_nil] = STATE(2137), - [sym__atom] = STATE(2137), - [sym_quoted_atom] = STATE(2137), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2137), - [sym_charlist] = STATE(2137), - [sym_sigil] = STATE(2137), - [sym_list] = STATE(2137), - [sym_tuple] = STATE(2137), - [sym_bitstring] = STATE(2137), - [sym_map] = STATE(2137), - [sym__nullary_operator] = STATE(2137), - [sym_unary_operator] = STATE(2137), - [sym_binary_operator] = STATE(2137), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2137), - [sym_call] = STATE(2137), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2137), - [sym_anonymous_function] = STATE(2137), + [522] = { + [sym__expression] = STATE(3263), + [sym_block] = STATE(3263), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3263), + [sym_nil] = STATE(3263), + [sym__atom] = STATE(3263), + [sym_quoted_atom] = STATE(3263), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3263), + [sym_charlist] = STATE(3263), + [sym_sigil] = STATE(3263), + [sym_list] = STATE(3263), + [sym_tuple] = STATE(3263), + [sym_bitstring] = STATE(3263), + [sym_map] = STATE(3263), + [sym__nullary_operator] = STATE(3263), + [sym_unary_operator] = STATE(3263), + [sym_binary_operator] = STATE(3263), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3263), + [sym_call] = STATE(3263), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3263), + [sym_anonymous_function] = STATE(3263), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1915), - [sym_char] = ACTIONS(1915), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [sym_alias] = ACTIONS(1913), + [sym_integer] = ACTIONS(1913), + [sym_float] = ACTIONS(1913), + [sym_char] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -95979,86 +95628,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(586), }, - [524] = { - [sym__expression] = STATE(4557), - [sym_block] = STATE(4557), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4557), - [sym_nil] = STATE(4557), - [sym__atom] = STATE(4557), - [sym_quoted_atom] = STATE(4557), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4557), - [sym_charlist] = STATE(4557), - [sym_sigil] = STATE(4557), - [sym_list] = STATE(4557), - [sym_tuple] = STATE(4557), - [sym_bitstring] = STATE(4557), - [sym_map] = STATE(4557), - [sym__nullary_operator] = STATE(4557), - [sym_unary_operator] = STATE(4557), - [sym_binary_operator] = STATE(4557), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4557), - [sym_call] = STATE(4557), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4557), - [sym_anonymous_function] = STATE(4557), + [523] = { + [sym__expression] = STATE(3262), + [sym_block] = STATE(3262), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3262), + [sym_nil] = STATE(3262), + [sym__atom] = STATE(3262), + [sym_quoted_atom] = STATE(3262), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3262), + [sym_charlist] = STATE(3262), + [sym_sigil] = STATE(3262), + [sym_list] = STATE(3262), + [sym_tuple] = STATE(3262), + [sym_bitstring] = STATE(3262), + [sym_map] = STATE(3262), + [sym__nullary_operator] = STATE(3262), + [sym_unary_operator] = STATE(3262), + [sym_binary_operator] = STATE(3262), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3262), + [sym_call] = STATE(3262), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3262), + [sym_anonymous_function] = STATE(3262), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1917), - [sym_integer] = ACTIONS(1917), - [sym_float] = ACTIONS(1917), - [sym_char] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1915), + [sym_integer] = ACTIONS(1915), + [sym_float] = ACTIONS(1915), + [sym_char] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96096,86 +95745,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(586), }, - [525] = { - [sym__expression] = STATE(2138), - [sym_block] = STATE(2138), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2138), - [sym_nil] = STATE(2138), - [sym__atom] = STATE(2138), - [sym_quoted_atom] = STATE(2138), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2138), - [sym_charlist] = STATE(2138), - [sym_sigil] = STATE(2138), - [sym_list] = STATE(2138), - [sym_tuple] = STATE(2138), - [sym_bitstring] = STATE(2138), - [sym_map] = STATE(2138), - [sym__nullary_operator] = STATE(2138), - [sym_unary_operator] = STATE(2138), - [sym_binary_operator] = STATE(2138), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2138), - [sym_call] = STATE(2138), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2138), - [sym_anonymous_function] = STATE(2138), + [524] = { + [sym__expression] = STATE(3261), + [sym_block] = STATE(3261), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3261), + [sym_nil] = STATE(3261), + [sym__atom] = STATE(3261), + [sym_quoted_atom] = STATE(3261), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3261), + [sym_charlist] = STATE(3261), + [sym_sigil] = STATE(3261), + [sym_list] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_bitstring] = STATE(3261), + [sym_map] = STATE(3261), + [sym__nullary_operator] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_binary_operator] = STATE(3261), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3261), + [sym_call] = STATE(3261), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3261), + [sym_anonymous_function] = STATE(3261), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1919), - [sym_integer] = ACTIONS(1919), - [sym_float] = ACTIONS(1919), - [sym_char] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [sym_alias] = ACTIONS(1917), + [sym_integer] = ACTIONS(1917), + [sym_float] = ACTIONS(1917), + [sym_char] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96213,64 +95862,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(586), }, - [526] = { - [sym__expression] = STATE(3539), - [sym_block] = STATE(3539), + [525] = { + [sym__expression] = STATE(4032), + [sym_block] = STATE(4032), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3539), - [sym_nil] = STATE(3539), - [sym__atom] = STATE(3539), - [sym_quoted_atom] = STATE(3539), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3539), - [sym_charlist] = STATE(3539), - [sym_sigil] = STATE(3539), - [sym_list] = STATE(3539), - [sym_tuple] = STATE(3539), - [sym_bitstring] = STATE(3539), - [sym_map] = STATE(3539), - [sym__nullary_operator] = STATE(3539), - [sym_unary_operator] = STATE(3539), - [sym_binary_operator] = STATE(3539), + [sym_boolean] = STATE(4032), + [sym_nil] = STATE(4032), + [sym__atom] = STATE(4032), + [sym_quoted_atom] = STATE(4032), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(4032), + [sym_charlist] = STATE(4032), + [sym_sigil] = STATE(4032), + [sym_list] = STATE(4032), + [sym_tuple] = STATE(4032), + [sym_bitstring] = STATE(4032), + [sym_map] = STATE(4032), + [sym__nullary_operator] = STATE(4032), + [sym_unary_operator] = STATE(4032), + [sym_binary_operator] = STATE(4032), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3539), - [sym_call] = STATE(3539), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(4032), + [sym_call] = STATE(4032), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3539), - [sym_anonymous_function] = STATE(3539), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(4032), + [sym_anonymous_function] = STATE(4032), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1921), - [sym_integer] = ACTIONS(1921), - [sym_float] = ACTIONS(1921), - [sym_char] = ACTIONS(1921), + [sym_alias] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1919), + [sym_char] = ACTIONS(1919), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1921), + [sym_atom] = ACTIONS(1919), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -96338,78 +95987,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(407), }, - [527] = { - [sym__expression] = STATE(3540), - [sym_block] = STATE(3540), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3540), - [sym_nil] = STATE(3540), - [sym__atom] = STATE(3540), - [sym_quoted_atom] = STATE(3540), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3540), - [sym_charlist] = STATE(3540), - [sym_sigil] = STATE(3540), - [sym_list] = STATE(3540), - [sym_tuple] = STATE(3540), - [sym_bitstring] = STATE(3540), - [sym_map] = STATE(3540), - [sym__nullary_operator] = STATE(3540), - [sym_unary_operator] = STATE(3540), - [sym_binary_operator] = STATE(3540), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3540), - [sym_call] = STATE(3540), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3540), - [sym_anonymous_function] = STATE(3540), + [526] = { + [sym__expression] = STATE(3309), + [sym_block] = STATE(3309), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3309), + [sym_nil] = STATE(3309), + [sym__atom] = STATE(3309), + [sym_quoted_atom] = STATE(3309), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3309), + [sym_charlist] = STATE(3309), + [sym_sigil] = STATE(3309), + [sym_list] = STATE(3309), + [sym_tuple] = STATE(3309), + [sym_bitstring] = STATE(3309), + [sym_map] = STATE(3309), + [sym__nullary_operator] = STATE(3309), + [sym_unary_operator] = STATE(3309), + [sym_binary_operator] = STATE(3309), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3309), + [sym_call] = STATE(3309), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3309), + [sym_anonymous_function] = STATE(3309), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1923), - [sym_integer] = ACTIONS(1923), - [sym_float] = ACTIONS(1923), - [sym_char] = ACTIONS(1923), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [sym_alias] = ACTIONS(1351), + [sym_integer] = ACTIONS(1351), + [sym_float] = ACTIONS(1351), + [sym_char] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96447,86 +96096,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(281), }, - [528] = { - [sym__expression] = STATE(3545), - [sym_block] = STATE(3545), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3545), - [sym_nil] = STATE(3545), - [sym__atom] = STATE(3545), - [sym_quoted_atom] = STATE(3545), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3545), - [sym_charlist] = STATE(3545), - [sym_sigil] = STATE(3545), - [sym_list] = STATE(3545), - [sym_tuple] = STATE(3545), - [sym_bitstring] = STATE(3545), - [sym_map] = STATE(3545), - [sym__nullary_operator] = STATE(3545), - [sym_unary_operator] = STATE(3545), - [sym_binary_operator] = STATE(3545), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3545), - [sym_call] = STATE(3545), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3545), - [sym_anonymous_function] = STATE(3545), + [527] = { + [sym__expression] = STATE(3258), + [sym_block] = STATE(3258), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3258), + [sym_nil] = STATE(3258), + [sym__atom] = STATE(3258), + [sym_quoted_atom] = STATE(3258), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3258), + [sym_charlist] = STATE(3258), + [sym_sigil] = STATE(3258), + [sym_list] = STATE(3258), + [sym_tuple] = STATE(3258), + [sym_bitstring] = STATE(3258), + [sym_map] = STATE(3258), + [sym__nullary_operator] = STATE(3258), + [sym_unary_operator] = STATE(3258), + [sym_binary_operator] = STATE(3258), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3258), + [sym_call] = STATE(3258), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3258), + [sym_anonymous_function] = STATE(3258), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1925), - [sym_integer] = ACTIONS(1925), - [sym_float] = ACTIONS(1925), - [sym_char] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [sym_alias] = ACTIONS(1921), + [sym_integer] = ACTIONS(1921), + [sym_float] = ACTIONS(1921), + [sym_char] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96564,86 +96213,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(586), }, - [529] = { - [sym__expression] = STATE(4167), - [sym_block] = STATE(4167), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4167), - [sym_nil] = STATE(4167), - [sym__atom] = STATE(4167), - [sym_quoted_atom] = STATE(4167), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4167), - [sym_charlist] = STATE(4167), - [sym_sigil] = STATE(4167), - [sym_list] = STATE(4167), - [sym_tuple] = STATE(4167), - [sym_bitstring] = STATE(4167), - [sym_map] = STATE(4167), - [sym__nullary_operator] = STATE(4167), - [sym_unary_operator] = STATE(4167), - [sym_binary_operator] = STATE(4167), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4167), - [sym_call] = STATE(4167), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4167), - [sym_anonymous_function] = STATE(4167), + [528] = { + [sym__expression] = STATE(3257), + [sym_block] = STATE(3257), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3257), + [sym_nil] = STATE(3257), + [sym__atom] = STATE(3257), + [sym_quoted_atom] = STATE(3257), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3257), + [sym_charlist] = STATE(3257), + [sym_sigil] = STATE(3257), + [sym_list] = STATE(3257), + [sym_tuple] = STATE(3257), + [sym_bitstring] = STATE(3257), + [sym_map] = STATE(3257), + [sym__nullary_operator] = STATE(3257), + [sym_unary_operator] = STATE(3257), + [sym_binary_operator] = STATE(3257), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3257), + [sym_call] = STATE(3257), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3257), + [sym_anonymous_function] = STATE(3257), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1927), - [sym_integer] = ACTIONS(1927), - [sym_float] = ACTIONS(1927), - [sym_char] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1923), + [sym_integer] = ACTIONS(1923), + [sym_float] = ACTIONS(1923), + [sym_char] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96681,86 +96330,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(586), }, - [530] = { - [sym__expression] = STATE(3546), - [sym_block] = STATE(3546), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3546), - [sym_nil] = STATE(3546), - [sym__atom] = STATE(3546), - [sym_quoted_atom] = STATE(3546), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3546), - [sym_charlist] = STATE(3546), - [sym_sigil] = STATE(3546), - [sym_list] = STATE(3546), - [sym_tuple] = STATE(3546), - [sym_bitstring] = STATE(3546), - [sym_map] = STATE(3546), - [sym__nullary_operator] = STATE(3546), - [sym_unary_operator] = STATE(3546), - [sym_binary_operator] = STATE(3546), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3546), - [sym_call] = STATE(3546), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3546), - [sym_anonymous_function] = STATE(3546), + [529] = { + [sym__expression] = STATE(4104), + [sym_block] = STATE(4104), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4104), + [sym_nil] = STATE(4104), + [sym__atom] = STATE(4104), + [sym_quoted_atom] = STATE(4104), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4104), + [sym_charlist] = STATE(4104), + [sym_sigil] = STATE(4104), + [sym_list] = STATE(4104), + [sym_tuple] = STATE(4104), + [sym_bitstring] = STATE(4104), + [sym_map] = STATE(4104), + [sym__nullary_operator] = STATE(4104), + [sym_unary_operator] = STATE(4104), + [sym_binary_operator] = STATE(4104), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4104), + [sym_call] = STATE(4104), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4104), + [sym_anonymous_function] = STATE(4104), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1929), - [sym_integer] = ACTIONS(1929), - [sym_float] = ACTIONS(1929), - [sym_char] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(1925), + [sym_integer] = ACTIONS(1925), + [sym_float] = ACTIONS(1925), + [sym_char] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96798,86 +96447,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(844), }, - [531] = { - [sym__expression] = STATE(3548), - [sym_block] = STATE(3548), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3548), - [sym_nil] = STATE(3548), - [sym__atom] = STATE(3548), - [sym_quoted_atom] = STATE(3548), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3548), - [sym_charlist] = STATE(3548), - [sym_sigil] = STATE(3548), - [sym_list] = STATE(3548), - [sym_tuple] = STATE(3548), - [sym_bitstring] = STATE(3548), - [sym_map] = STATE(3548), - [sym__nullary_operator] = STATE(3548), - [sym_unary_operator] = STATE(3548), - [sym_binary_operator] = STATE(3548), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3548), - [sym_call] = STATE(3548), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3548), - [sym_anonymous_function] = STATE(3548), + [530] = { + [sym__expression] = STATE(3860), + [sym_block] = STATE(3860), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3860), + [sym_nil] = STATE(3860), + [sym__atom] = STATE(3860), + [sym_quoted_atom] = STATE(3860), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3860), + [sym_charlist] = STATE(3860), + [sym_sigil] = STATE(3860), + [sym_list] = STATE(3860), + [sym_tuple] = STATE(3860), + [sym_bitstring] = STATE(3860), + [sym_map] = STATE(3860), + [sym__nullary_operator] = STATE(3860), + [sym_unary_operator] = STATE(3860), + [sym_binary_operator] = STATE(3860), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3860), + [sym_call] = STATE(3860), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3860), + [sym_anonymous_function] = STATE(3860), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1931), - [sym_integer] = ACTIONS(1931), - [sym_float] = ACTIONS(1931), - [sym_char] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(1927), + [sym_integer] = ACTIONS(1927), + [sym_float] = ACTIONS(1927), + [sym_char] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), + [sym_atom] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), + [anon_sym_not] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(696), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -96915,86 +96564,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(700), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(117), }, - [532] = { - [sym__expression] = STATE(3549), - [sym_block] = STATE(3549), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3549), - [sym_nil] = STATE(3549), - [sym__atom] = STATE(3549), - [sym_quoted_atom] = STATE(3549), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3549), - [sym_charlist] = STATE(3549), - [sym_sigil] = STATE(3549), - [sym_list] = STATE(3549), - [sym_tuple] = STATE(3549), - [sym_bitstring] = STATE(3549), - [sym_map] = STATE(3549), - [sym__nullary_operator] = STATE(3549), - [sym_unary_operator] = STATE(3549), - [sym_binary_operator] = STATE(3549), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3549), - [sym_call] = STATE(3549), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3549), - [sym_anonymous_function] = STATE(3549), + [531] = { + [sym__expression] = STATE(4341), + [sym_block] = STATE(4341), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4341), + [sym_nil] = STATE(4341), + [sym__atom] = STATE(4341), + [sym_quoted_atom] = STATE(4341), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4341), + [sym_charlist] = STATE(4341), + [sym_sigil] = STATE(4341), + [sym_list] = STATE(4341), + [sym_tuple] = STATE(4341), + [sym_bitstring] = STATE(4341), + [sym_map] = STATE(4341), + [sym__nullary_operator] = STATE(4341), + [sym_unary_operator] = STATE(4341), + [sym_binary_operator] = STATE(4341), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4341), + [sym_call] = STATE(4341), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4341), + [sym_anonymous_function] = STATE(4341), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1933), - [sym_integer] = ACTIONS(1933), - [sym_float] = ACTIONS(1933), - [sym_char] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1929), + [sym_char] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97032,64 +96681,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [533] = { - [sym__expression] = STATE(3551), - [sym_block] = STATE(3551), + [532] = { + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3551), - [sym_nil] = STATE(3551), - [sym__atom] = STATE(3551), - [sym_quoted_atom] = STATE(3551), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3551), - [sym_charlist] = STATE(3551), - [sym_sigil] = STATE(3551), - [sym_list] = STATE(3551), - [sym_tuple] = STATE(3551), - [sym_bitstring] = STATE(3551), - [sym_map] = STATE(3551), - [sym__nullary_operator] = STATE(3551), - [sym_unary_operator] = STATE(3551), - [sym_binary_operator] = STATE(3551), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym__nullary_operator] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3551), - [sym_call] = STATE(3551), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3551), - [sym_anonymous_function] = STATE(3551), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1935), - [sym_integer] = ACTIONS(1935), - [sym_float] = ACTIONS(1935), - [sym_char] = ACTIONS(1935), + [sym_alias] = ACTIONS(1439), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1439), + [sym_char] = ACTIONS(1439), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1935), + [sym_atom] = ACTIONS(1439), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -97157,78 +96806,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(407), }, - [534] = { - [sym__expression] = STATE(3553), - [sym_block] = STATE(3553), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3553), - [sym_nil] = STATE(3553), - [sym__atom] = STATE(3553), - [sym_quoted_atom] = STATE(3553), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3553), - [sym_charlist] = STATE(3553), - [sym_sigil] = STATE(3553), - [sym_list] = STATE(3553), - [sym_tuple] = STATE(3553), - [sym_bitstring] = STATE(3553), - [sym_map] = STATE(3553), - [sym__nullary_operator] = STATE(3553), - [sym_unary_operator] = STATE(3553), - [sym_binary_operator] = STATE(3553), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3553), - [sym_call] = STATE(3553), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3553), - [sym_anonymous_function] = STATE(3553), + [533] = { + [sym__expression] = STATE(4342), + [sym_block] = STATE(4342), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4342), + [sym_nil] = STATE(4342), + [sym__atom] = STATE(4342), + [sym_quoted_atom] = STATE(4342), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4342), + [sym_charlist] = STATE(4342), + [sym_sigil] = STATE(4342), + [sym_list] = STATE(4342), + [sym_tuple] = STATE(4342), + [sym_bitstring] = STATE(4342), + [sym_map] = STATE(4342), + [sym__nullary_operator] = STATE(4342), + [sym_unary_operator] = STATE(4342), + [sym_binary_operator] = STATE(4342), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4342), + [sym_call] = STATE(4342), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4342), + [sym_anonymous_function] = STATE(4342), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1937), - [sym_integer] = ACTIONS(1937), - [sym_float] = ACTIONS(1937), - [sym_char] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1931), + [sym_char] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97266,86 +96915,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [535] = { - [sym__expression] = STATE(3554), - [sym_block] = STATE(3554), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3554), - [sym_nil] = STATE(3554), - [sym__atom] = STATE(3554), - [sym_quoted_atom] = STATE(3554), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3554), - [sym_charlist] = STATE(3554), - [sym_sigil] = STATE(3554), - [sym_list] = STATE(3554), - [sym_tuple] = STATE(3554), - [sym_bitstring] = STATE(3554), - [sym_map] = STATE(3554), - [sym__nullary_operator] = STATE(3554), - [sym_unary_operator] = STATE(3554), - [sym_binary_operator] = STATE(3554), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3554), - [sym_call] = STATE(3554), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3554), - [sym_anonymous_function] = STATE(3554), + [534] = { + [sym__expression] = STATE(4365), + [sym_block] = STATE(4365), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4365), + [sym_nil] = STATE(4365), + [sym__atom] = STATE(4365), + [sym_quoted_atom] = STATE(4365), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4365), + [sym_charlist] = STATE(4365), + [sym_sigil] = STATE(4365), + [sym_list] = STATE(4365), + [sym_tuple] = STATE(4365), + [sym_bitstring] = STATE(4365), + [sym_map] = STATE(4365), + [sym__nullary_operator] = STATE(4365), + [sym_unary_operator] = STATE(4365), + [sym_binary_operator] = STATE(4365), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4365), + [sym_call] = STATE(4365), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4365), + [sym_anonymous_function] = STATE(4365), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1939), - [sym_integer] = ACTIONS(1939), - [sym_float] = ACTIONS(1939), - [sym_char] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1933), + [sym_integer] = ACTIONS(1933), + [sym_float] = ACTIONS(1933), + [sym_char] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97383,86 +97032,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [536] = { - [sym__expression] = STATE(3826), - [sym_block] = STATE(3826), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3826), - [sym_nil] = STATE(3826), - [sym__atom] = STATE(3826), - [sym_quoted_atom] = STATE(3826), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3826), - [sym_charlist] = STATE(3826), - [sym_sigil] = STATE(3826), - [sym_list] = STATE(3826), - [sym_tuple] = STATE(3826), - [sym_bitstring] = STATE(3826), - [sym_map] = STATE(3826), - [sym__nullary_operator] = STATE(3826), - [sym_unary_operator] = STATE(3826), - [sym_binary_operator] = STATE(3826), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3826), - [sym_call] = STATE(3826), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3826), - [sym_anonymous_function] = STATE(3826), + [535] = { + [sym__expression] = STATE(4351), + [sym_block] = STATE(4351), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4351), + [sym_nil] = STATE(4351), + [sym__atom] = STATE(4351), + [sym_quoted_atom] = STATE(4351), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4351), + [sym_charlist] = STATE(4351), + [sym_sigil] = STATE(4351), + [sym_list] = STATE(4351), + [sym_tuple] = STATE(4351), + [sym_bitstring] = STATE(4351), + [sym_map] = STATE(4351), + [sym__nullary_operator] = STATE(4351), + [sym_unary_operator] = STATE(4351), + [sym_binary_operator] = STATE(4351), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4351), + [sym_call] = STATE(4351), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4351), + [sym_anonymous_function] = STATE(4351), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1941), - [sym_integer] = ACTIONS(1941), - [sym_float] = ACTIONS(1941), - [sym_char] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1935), + [sym_integer] = ACTIONS(1935), + [sym_float] = ACTIONS(1935), + [sym_char] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97500,86 +97149,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [537] = { - [sym__expression] = STATE(4172), - [sym_block] = STATE(4172), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4172), - [sym_nil] = STATE(4172), - [sym__atom] = STATE(4172), - [sym_quoted_atom] = STATE(4172), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4172), - [sym_charlist] = STATE(4172), - [sym_sigil] = STATE(4172), - [sym_list] = STATE(4172), - [sym_tuple] = STATE(4172), - [sym_bitstring] = STATE(4172), - [sym_map] = STATE(4172), - [sym__nullary_operator] = STATE(4172), - [sym_unary_operator] = STATE(4172), - [sym_binary_operator] = STATE(4172), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4172), - [sym_call] = STATE(4172), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4172), - [sym_anonymous_function] = STATE(4172), + [536] = { + [sym__expression] = STATE(4103), + [sym_block] = STATE(4103), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4103), + [sym_nil] = STATE(4103), + [sym__atom] = STATE(4103), + [sym_quoted_atom] = STATE(4103), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4103), + [sym_charlist] = STATE(4103), + [sym_sigil] = STATE(4103), + [sym_list] = STATE(4103), + [sym_tuple] = STATE(4103), + [sym_bitstring] = STATE(4103), + [sym_map] = STATE(4103), + [sym__nullary_operator] = STATE(4103), + [sym_unary_operator] = STATE(4103), + [sym_binary_operator] = STATE(4103), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4103), + [sym_call] = STATE(4103), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4103), + [sym_anonymous_function] = STATE(4103), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1943), - [sym_integer] = ACTIONS(1943), - [sym_float] = ACTIONS(1943), - [sym_char] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(1937), + [sym_integer] = ACTIONS(1937), + [sym_float] = ACTIONS(1937), + [sym_char] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97617,86 +97266,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(844), }, - [538] = { - [sym__expression] = STATE(3838), - [sym_block] = STATE(3838), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3838), - [sym_nil] = STATE(3838), - [sym__atom] = STATE(3838), - [sym_quoted_atom] = STATE(3838), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3838), - [sym_charlist] = STATE(3838), - [sym_sigil] = STATE(3838), - [sym_list] = STATE(3838), - [sym_tuple] = STATE(3838), - [sym_bitstring] = STATE(3838), - [sym_map] = STATE(3838), - [sym__nullary_operator] = STATE(3838), - [sym_unary_operator] = STATE(3838), - [sym_binary_operator] = STATE(3838), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3838), - [sym_call] = STATE(3838), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3838), - [sym_anonymous_function] = STATE(3838), + [537] = { + [sym__expression] = STATE(4353), + [sym_block] = STATE(4353), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4353), + [sym_nil] = STATE(4353), + [sym__atom] = STATE(4353), + [sym_quoted_atom] = STATE(4353), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4353), + [sym_charlist] = STATE(4353), + [sym_sigil] = STATE(4353), + [sym_list] = STATE(4353), + [sym_tuple] = STATE(4353), + [sym_bitstring] = STATE(4353), + [sym_map] = STATE(4353), + [sym__nullary_operator] = STATE(4353), + [sym_unary_operator] = STATE(4353), + [sym_binary_operator] = STATE(4353), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4353), + [sym_call] = STATE(4353), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4353), + [sym_anonymous_function] = STATE(4353), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1945), - [sym_integer] = ACTIONS(1945), - [sym_float] = ACTIONS(1945), - [sym_char] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1939), + [sym_integer] = ACTIONS(1939), + [sym_float] = ACTIONS(1939), + [sym_char] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97734,86 +97383,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [539] = { - [sym__expression] = STATE(4022), - [sym_block] = STATE(4022), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(4022), - [sym_nil] = STATE(4022), - [sym__atom] = STATE(4022), - [sym_quoted_atom] = STATE(4022), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(4022), - [sym_charlist] = STATE(4022), - [sym_sigil] = STATE(4022), - [sym_list] = STATE(4022), - [sym_tuple] = STATE(4022), - [sym_bitstring] = STATE(4022), - [sym_map] = STATE(4022), - [sym__nullary_operator] = STATE(4022), - [sym_unary_operator] = STATE(4022), - [sym_binary_operator] = STATE(4022), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(4022), - [sym_call] = STATE(4022), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(4022), - [sym_anonymous_function] = STATE(4022), + [538] = { + [sym__expression] = STATE(4357), + [sym_block] = STATE(4357), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4357), + [sym_nil] = STATE(4357), + [sym__atom] = STATE(4357), + [sym_quoted_atom] = STATE(4357), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4357), + [sym_charlist] = STATE(4357), + [sym_sigil] = STATE(4357), + [sym_list] = STATE(4357), + [sym_tuple] = STATE(4357), + [sym_bitstring] = STATE(4357), + [sym_map] = STATE(4357), + [sym__nullary_operator] = STATE(4357), + [sym_unary_operator] = STATE(4357), + [sym_binary_operator] = STATE(4357), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4357), + [sym_call] = STATE(4357), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4357), + [sym_anonymous_function] = STATE(4357), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1947), - [sym_integer] = ACTIONS(1947), - [sym_float] = ACTIONS(1947), - [sym_char] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1941), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1941), + [sym_char] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97851,86 +97500,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [540] = { - [sym__expression] = STATE(4012), - [sym_block] = STATE(4012), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(4012), - [sym_nil] = STATE(4012), - [sym__atom] = STATE(4012), - [sym_quoted_atom] = STATE(4012), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(4012), - [sym_charlist] = STATE(4012), - [sym_sigil] = STATE(4012), - [sym_list] = STATE(4012), - [sym_tuple] = STATE(4012), - [sym_bitstring] = STATE(4012), - [sym_map] = STATE(4012), - [sym__nullary_operator] = STATE(4012), - [sym_unary_operator] = STATE(4012), - [sym_binary_operator] = STATE(4012), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(4012), - [sym_call] = STATE(4012), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(4012), - [sym_anonymous_function] = STATE(4012), + [539] = { + [sym__expression] = STATE(2988), + [sym_block] = STATE(2988), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2988), + [sym_nil] = STATE(2988), + [sym__atom] = STATE(2988), + [sym_quoted_atom] = STATE(2988), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2988), + [sym_charlist] = STATE(2988), + [sym_sigil] = STATE(2988), + [sym_list] = STATE(2988), + [sym_tuple] = STATE(2988), + [sym_bitstring] = STATE(2988), + [sym_map] = STATE(2988), + [sym__nullary_operator] = STATE(2988), + [sym_unary_operator] = STATE(2988), + [sym_binary_operator] = STATE(2988), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(2988), + [sym_call] = STATE(2988), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(2988), + [sym_anonymous_function] = STATE(2988), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1949), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1949), - [sym_char] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [sym_alias] = ACTIONS(1943), + [sym_integer] = ACTIONS(1943), + [sym_float] = ACTIONS(1943), + [sym_char] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -97968,86 +97617,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(586), }, - [541] = { - [sym__expression] = STATE(4008), - [sym_block] = STATE(4008), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(4008), - [sym_nil] = STATE(4008), - [sym__atom] = STATE(4008), - [sym_quoted_atom] = STATE(4008), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(4008), - [sym_charlist] = STATE(4008), - [sym_sigil] = STATE(4008), - [sym_list] = STATE(4008), - [sym_tuple] = STATE(4008), - [sym_bitstring] = STATE(4008), - [sym_map] = STATE(4008), - [sym__nullary_operator] = STATE(4008), - [sym_unary_operator] = STATE(4008), - [sym_binary_operator] = STATE(4008), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(4008), - [sym_call] = STATE(4008), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(4008), - [sym_anonymous_function] = STATE(4008), + [540] = { + [sym__expression] = STATE(4394), + [sym_block] = STATE(4394), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4394), + [sym_nil] = STATE(4394), + [sym__atom] = STATE(4394), + [sym_quoted_atom] = STATE(4394), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4394), + [sym_charlist] = STATE(4394), + [sym_sigil] = STATE(4394), + [sym_list] = STATE(4394), + [sym_tuple] = STATE(4394), + [sym_bitstring] = STATE(4394), + [sym_map] = STATE(4394), + [sym__nullary_operator] = STATE(4394), + [sym_unary_operator] = STATE(4394), + [sym_binary_operator] = STATE(4394), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4394), + [sym_call] = STATE(4394), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4394), + [sym_anonymous_function] = STATE(4394), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1951), - [sym_integer] = ACTIONS(1951), - [sym_float] = ACTIONS(1951), - [sym_char] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1945), + [sym_integer] = ACTIONS(1945), + [sym_float] = ACTIONS(1945), + [sym_char] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98085,86 +97734,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [542] = { - [sym__expression] = STATE(4175), - [sym_block] = STATE(4175), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4175), - [sym_nil] = STATE(4175), - [sym__atom] = STATE(4175), - [sym_quoted_atom] = STATE(4175), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4175), - [sym_charlist] = STATE(4175), - [sym_sigil] = STATE(4175), - [sym_list] = STATE(4175), - [sym_tuple] = STATE(4175), - [sym_bitstring] = STATE(4175), - [sym_map] = STATE(4175), - [sym__nullary_operator] = STATE(4175), - [sym_unary_operator] = STATE(4175), - [sym_binary_operator] = STATE(4175), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4175), - [sym_call] = STATE(4175), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4175), - [sym_anonymous_function] = STATE(4175), + [541] = { + [sym__expression] = STATE(4368), + [sym_block] = STATE(4368), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4368), + [sym_nil] = STATE(4368), + [sym__atom] = STATE(4368), + [sym_quoted_atom] = STATE(4368), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4368), + [sym_charlist] = STATE(4368), + [sym_sigil] = STATE(4368), + [sym_list] = STATE(4368), + [sym_tuple] = STATE(4368), + [sym_bitstring] = STATE(4368), + [sym_map] = STATE(4368), + [sym__nullary_operator] = STATE(4368), + [sym_unary_operator] = STATE(4368), + [sym_binary_operator] = STATE(4368), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4368), + [sym_call] = STATE(4368), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4368), + [sym_anonymous_function] = STATE(4368), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1953), - [sym_integer] = ACTIONS(1953), - [sym_float] = ACTIONS(1953), - [sym_char] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1947), + [sym_integer] = ACTIONS(1947), + [sym_float] = ACTIONS(1947), + [sym_char] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98202,86 +97851,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(57), }, - [543] = { - [sym__expression] = STATE(3506), - [sym_block] = STATE(3506), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3506), - [sym_nil] = STATE(3506), - [sym__atom] = STATE(3506), - [sym_quoted_atom] = STATE(3506), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3506), - [sym_charlist] = STATE(3506), - [sym_sigil] = STATE(3506), - [sym_list] = STATE(3506), - [sym_tuple] = STATE(3506), - [sym_bitstring] = STATE(3506), - [sym_map] = STATE(3506), - [sym__nullary_operator] = STATE(3506), - [sym_unary_operator] = STATE(3506), - [sym_binary_operator] = STATE(3506), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3506), - [sym_call] = STATE(3506), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3506), - [sym_anonymous_function] = STATE(3506), + [542] = { + [sym__expression] = STATE(4370), + [sym_block] = STATE(4370), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4370), + [sym_nil] = STATE(4370), + [sym__atom] = STATE(4370), + [sym_quoted_atom] = STATE(4370), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4370), + [sym_charlist] = STATE(4370), + [sym_sigil] = STATE(4370), + [sym_list] = STATE(4370), + [sym_tuple] = STATE(4370), + [sym_bitstring] = STATE(4370), + [sym_map] = STATE(4370), + [sym__nullary_operator] = STATE(4370), + [sym_unary_operator] = STATE(4370), + [sym_binary_operator] = STATE(4370), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4370), + [sym_call] = STATE(4370), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4370), + [sym_anonymous_function] = STATE(4370), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1955), - [sym_integer] = ACTIONS(1955), - [sym_float] = ACTIONS(1955), - [sym_char] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1949), + [sym_integer] = ACTIONS(1949), + [sym_float] = ACTIONS(1949), + [sym_char] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98319,86 +97968,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(57), }, - [544] = { - [sym__expression] = STATE(4568), - [sym_block] = STATE(4568), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4568), - [sym_nil] = STATE(4568), - [sym__atom] = STATE(4568), - [sym_quoted_atom] = STATE(4568), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4568), - [sym_charlist] = STATE(4568), - [sym_sigil] = STATE(4568), - [sym_list] = STATE(4568), - [sym_tuple] = STATE(4568), - [sym_bitstring] = STATE(4568), - [sym_map] = STATE(4568), - [sym__nullary_operator] = STATE(4568), - [sym_unary_operator] = STATE(4568), - [sym_binary_operator] = STATE(4568), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4568), - [sym_call] = STATE(4568), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4568), - [sym_anonymous_function] = STATE(4568), + [543] = { + [sym__expression] = STATE(4371), + [sym_block] = STATE(4371), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4371), + [sym_nil] = STATE(4371), + [sym__atom] = STATE(4371), + [sym_quoted_atom] = STATE(4371), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4371), + [sym_charlist] = STATE(4371), + [sym_sigil] = STATE(4371), + [sym_list] = STATE(4371), + [sym_tuple] = STATE(4371), + [sym_bitstring] = STATE(4371), + [sym_map] = STATE(4371), + [sym__nullary_operator] = STATE(4371), + [sym_unary_operator] = STATE(4371), + [sym_binary_operator] = STATE(4371), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4371), + [sym_call] = STATE(4371), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4371), + [sym_anonymous_function] = STATE(4371), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1957), - [sym_integer] = ACTIONS(1957), - [sym_float] = ACTIONS(1957), - [sym_char] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1951), + [sym_integer] = ACTIONS(1951), + [sym_float] = ACTIONS(1951), + [sym_char] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98436,86 +98085,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(57), }, - [545] = { - [sym__expression] = STATE(2178), - [sym_block] = STATE(2178), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(2178), - [sym_nil] = STATE(2178), - [sym__atom] = STATE(2178), - [sym_quoted_atom] = STATE(2178), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2178), - [sym_charlist] = STATE(2178), - [sym_sigil] = STATE(2178), - [sym_list] = STATE(2178), - [sym_tuple] = STATE(2178), - [sym_bitstring] = STATE(2178), - [sym_map] = STATE(2178), - [sym__nullary_operator] = STATE(2178), - [sym_unary_operator] = STATE(2178), - [sym_binary_operator] = STATE(2178), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2178), - [sym_call] = STATE(2178), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2178), - [sym_anonymous_function] = STATE(2178), + [544] = { + [sym__expression] = STATE(2987), + [sym_block] = STATE(2987), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2987), + [sym_nil] = STATE(2987), + [sym__atom] = STATE(2987), + [sym_quoted_atom] = STATE(2987), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2987), + [sym_charlist] = STATE(2987), + [sym_sigil] = STATE(2987), + [sym_list] = STATE(2987), + [sym_tuple] = STATE(2987), + [sym_bitstring] = STATE(2987), + [sym_map] = STATE(2987), + [sym__nullary_operator] = STATE(2987), + [sym_unary_operator] = STATE(2987), + [sym_binary_operator] = STATE(2987), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(2987), + [sym_call] = STATE(2987), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(2987), + [sym_anonymous_function] = STATE(2987), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(540), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1959), - [sym_char] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [sym_alias] = ACTIONS(1953), + [sym_integer] = ACTIONS(1953), + [sym_float] = ACTIONS(1953), + [sym_char] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98553,86 +98202,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(586), }, - [546] = { - [sym__expression] = STATE(3987), - [sym_block] = STATE(3987), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3987), - [sym_nil] = STATE(3987), - [sym__atom] = STATE(3987), - [sym_quoted_atom] = STATE(3987), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3987), - [sym_charlist] = STATE(3987), - [sym_sigil] = STATE(3987), - [sym_list] = STATE(3987), - [sym_tuple] = STATE(3987), - [sym_bitstring] = STATE(3987), - [sym_map] = STATE(3987), - [sym__nullary_operator] = STATE(3987), - [sym_unary_operator] = STATE(3987), - [sym_binary_operator] = STATE(3987), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3987), - [sym_call] = STATE(3987), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3987), - [sym_anonymous_function] = STATE(3987), + [545] = { + [sym__expression] = STATE(4372), + [sym_block] = STATE(4372), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4372), + [sym_nil] = STATE(4372), + [sym__atom] = STATE(4372), + [sym_quoted_atom] = STATE(4372), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4372), + [sym_charlist] = STATE(4372), + [sym_sigil] = STATE(4372), + [sym_list] = STATE(4372), + [sym_tuple] = STATE(4372), + [sym_bitstring] = STATE(4372), + [sym_map] = STATE(4372), + [sym__nullary_operator] = STATE(4372), + [sym_unary_operator] = STATE(4372), + [sym_binary_operator] = STATE(4372), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4372), + [sym_call] = STATE(4372), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4372), + [sym_anonymous_function] = STATE(4372), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1961), - [sym_integer] = ACTIONS(1961), - [sym_float] = ACTIONS(1961), - [sym_char] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1955), + [sym_integer] = ACTIONS(1955), + [sym_float] = ACTIONS(1955), + [sym_char] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98670,86 +98319,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(57), }, - [547] = { - [sym__expression] = STATE(4176), - [sym_block] = STATE(4176), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4176), - [sym_nil] = STATE(4176), - [sym__atom] = STATE(4176), - [sym_quoted_atom] = STATE(4176), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4176), - [sym_charlist] = STATE(4176), - [sym_sigil] = STATE(4176), - [sym_list] = STATE(4176), - [sym_tuple] = STATE(4176), - [sym_bitstring] = STATE(4176), - [sym_map] = STATE(4176), - [sym__nullary_operator] = STATE(4176), - [sym_unary_operator] = STATE(4176), - [sym_binary_operator] = STATE(4176), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4176), - [sym_call] = STATE(4176), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4176), - [sym_anonymous_function] = STATE(4176), + [546] = { + [sym__expression] = STATE(4373), + [sym_block] = STATE(4373), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4373), + [sym_nil] = STATE(4373), + [sym__atom] = STATE(4373), + [sym_quoted_atom] = STATE(4373), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4373), + [sym_charlist] = STATE(4373), + [sym_sigil] = STATE(4373), + [sym_list] = STATE(4373), + [sym_tuple] = STATE(4373), + [sym_bitstring] = STATE(4373), + [sym_map] = STATE(4373), + [sym__nullary_operator] = STATE(4373), + [sym_unary_operator] = STATE(4373), + [sym_binary_operator] = STATE(4373), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4373), + [sym_call] = STATE(4373), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4373), + [sym_anonymous_function] = STATE(4373), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1963), - [sym_integer] = ACTIONS(1963), - [sym_float] = ACTIONS(1963), - [sym_char] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1957), + [sym_integer] = ACTIONS(1957), + [sym_float] = ACTIONS(1957), + [sym_char] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98787,86 +98436,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(57), }, - [548] = { - [sym__expression] = STATE(4177), - [sym_block] = STATE(4177), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4177), - [sym_nil] = STATE(4177), - [sym__atom] = STATE(4177), - [sym_quoted_atom] = STATE(4177), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4177), - [sym_charlist] = STATE(4177), - [sym_sigil] = STATE(4177), - [sym_list] = STATE(4177), - [sym_tuple] = STATE(4177), - [sym_bitstring] = STATE(4177), - [sym_map] = STATE(4177), - [sym__nullary_operator] = STATE(4177), - [sym_unary_operator] = STATE(4177), - [sym_binary_operator] = STATE(4177), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4177), - [sym_call] = STATE(4177), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4177), - [sym_anonymous_function] = STATE(4177), + [547] = { + [sym__expression] = STATE(3197), + [sym_block] = STATE(3197), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3197), + [sym_nil] = STATE(3197), + [sym__atom] = STATE(3197), + [sym_quoted_atom] = STATE(3197), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3197), + [sym_charlist] = STATE(3197), + [sym_sigil] = STATE(3197), + [sym_list] = STATE(3197), + [sym_tuple] = STATE(3197), + [sym_bitstring] = STATE(3197), + [sym_map] = STATE(3197), + [sym__nullary_operator] = STATE(3197), + [sym_unary_operator] = STATE(3197), + [sym_binary_operator] = STATE(3197), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3197), + [sym_call] = STATE(3197), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3197), + [sym_anonymous_function] = STATE(3197), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1965), - [sym_integer] = ACTIONS(1965), - [sym_float] = ACTIONS(1965), - [sym_char] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(1959), + [sym_integer] = ACTIONS(1959), + [sym_float] = ACTIONS(1959), + [sym_char] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -98904,86 +98553,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [549] = { - [sym__expression] = STATE(4412), - [sym_block] = STATE(4412), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4412), - [sym_nil] = STATE(4412), - [sym__atom] = STATE(4412), - [sym_quoted_atom] = STATE(4412), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4412), - [sym_charlist] = STATE(4412), - [sym_sigil] = STATE(4412), - [sym_list] = STATE(4412), - [sym_tuple] = STATE(4412), - [sym_bitstring] = STATE(4412), - [sym_map] = STATE(4412), - [sym__nullary_operator] = STATE(4412), - [sym_unary_operator] = STATE(4412), - [sym_binary_operator] = STATE(4412), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4412), - [sym_call] = STATE(4412), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4412), - [sym_anonymous_function] = STATE(4412), + [548] = { + [sym__expression] = STATE(4374), + [sym_block] = STATE(4374), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4374), + [sym_nil] = STATE(4374), + [sym__atom] = STATE(4374), + [sym_quoted_atom] = STATE(4374), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4374), + [sym_charlist] = STATE(4374), + [sym_sigil] = STATE(4374), + [sym_list] = STATE(4374), + [sym_tuple] = STATE(4374), + [sym_bitstring] = STATE(4374), + [sym_map] = STATE(4374), + [sym__nullary_operator] = STATE(4374), + [sym_unary_operator] = STATE(4374), + [sym_binary_operator] = STATE(4374), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4374), + [sym_call] = STATE(4374), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4374), + [sym_anonymous_function] = STATE(4374), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1967), - [sym_integer] = ACTIONS(1967), - [sym_float] = ACTIONS(1967), - [sym_char] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1961), + [sym_integer] = ACTIONS(1961), + [sym_float] = ACTIONS(1961), + [sym_char] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99021,86 +98670,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(57), }, - [550] = { - [sym__expression] = STATE(4413), - [sym_block] = STATE(4413), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4413), - [sym_nil] = STATE(4413), - [sym__atom] = STATE(4413), - [sym_quoted_atom] = STATE(4413), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4413), - [sym_charlist] = STATE(4413), - [sym_sigil] = STATE(4413), - [sym_list] = STATE(4413), - [sym_tuple] = STATE(4413), - [sym_bitstring] = STATE(4413), - [sym_map] = STATE(4413), - [sym__nullary_operator] = STATE(4413), - [sym_unary_operator] = STATE(4413), - [sym_binary_operator] = STATE(4413), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4413), - [sym_call] = STATE(4413), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4413), - [sym_anonymous_function] = STATE(4413), + [549] = { + [sym__expression] = STATE(4385), + [sym_block] = STATE(4385), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4385), + [sym_nil] = STATE(4385), + [sym__atom] = STATE(4385), + [sym_quoted_atom] = STATE(4385), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4385), + [sym_charlist] = STATE(4385), + [sym_sigil] = STATE(4385), + [sym_list] = STATE(4385), + [sym_tuple] = STATE(4385), + [sym_bitstring] = STATE(4385), + [sym_map] = STATE(4385), + [sym__nullary_operator] = STATE(4385), + [sym_unary_operator] = STATE(4385), + [sym_binary_operator] = STATE(4385), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4385), + [sym_call] = STATE(4385), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4385), + [sym_anonymous_function] = STATE(4385), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1969), - [sym_integer] = ACTIONS(1969), - [sym_float] = ACTIONS(1969), - [sym_char] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1963), + [sym_integer] = ACTIONS(1963), + [sym_float] = ACTIONS(1963), + [sym_char] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99138,86 +98787,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(57), }, - [551] = { - [sym__expression] = STATE(4414), - [sym_block] = STATE(4414), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4414), - [sym_nil] = STATE(4414), - [sym__atom] = STATE(4414), - [sym_quoted_atom] = STATE(4414), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4414), - [sym_charlist] = STATE(4414), - [sym_sigil] = STATE(4414), - [sym_list] = STATE(4414), - [sym_tuple] = STATE(4414), - [sym_bitstring] = STATE(4414), - [sym_map] = STATE(4414), - [sym__nullary_operator] = STATE(4414), - [sym_unary_operator] = STATE(4414), - [sym_binary_operator] = STATE(4414), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4414), - [sym_call] = STATE(4414), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4414), - [sym_anonymous_function] = STATE(4414), + [550] = { + [sym__expression] = STATE(4387), + [sym_block] = STATE(4387), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4387), + [sym_nil] = STATE(4387), + [sym__atom] = STATE(4387), + [sym_quoted_atom] = STATE(4387), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4387), + [sym_charlist] = STATE(4387), + [sym_sigil] = STATE(4387), + [sym_list] = STATE(4387), + [sym_tuple] = STATE(4387), + [sym_bitstring] = STATE(4387), + [sym_map] = STATE(4387), + [sym__nullary_operator] = STATE(4387), + [sym_unary_operator] = STATE(4387), + [sym_binary_operator] = STATE(4387), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4387), + [sym_call] = STATE(4387), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4387), + [sym_anonymous_function] = STATE(4387), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1971), - [sym_integer] = ACTIONS(1971), - [sym_float] = ACTIONS(1971), - [sym_char] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1965), + [sym_integer] = ACTIONS(1965), + [sym_float] = ACTIONS(1965), + [sym_char] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99255,64 +98904,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(57), }, - [552] = { - [sym__expression] = STATE(4415), - [sym_block] = STATE(4415), + [551] = { + [sym__expression] = STATE(4068), + [sym_block] = STATE(4068), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4415), - [sym_nil] = STATE(4415), - [sym__atom] = STATE(4415), - [sym_quoted_atom] = STATE(4415), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4415), - [sym_charlist] = STATE(4415), - [sym_sigil] = STATE(4415), - [sym_list] = STATE(4415), - [sym_tuple] = STATE(4415), - [sym_bitstring] = STATE(4415), - [sym_map] = STATE(4415), - [sym__nullary_operator] = STATE(4415), - [sym_unary_operator] = STATE(4415), - [sym_binary_operator] = STATE(4415), + [sym_boolean] = STATE(4068), + [sym_nil] = STATE(4068), + [sym__atom] = STATE(4068), + [sym_quoted_atom] = STATE(4068), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4068), + [sym_charlist] = STATE(4068), + [sym_sigil] = STATE(4068), + [sym_list] = STATE(4068), + [sym_tuple] = STATE(4068), + [sym_bitstring] = STATE(4068), + [sym_map] = STATE(4068), + [sym__nullary_operator] = STATE(4068), + [sym_unary_operator] = STATE(4068), + [sym_binary_operator] = STATE(4068), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4415), - [sym_call] = STATE(4415), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4068), + [sym_call] = STATE(4068), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4415), - [sym_anonymous_function] = STATE(4415), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4068), + [sym_anonymous_function] = STATE(4068), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1973), - [sym_integer] = ACTIONS(1973), - [sym_float] = ACTIONS(1973), - [sym_char] = ACTIONS(1973), + [sym_alias] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1967), + [sym_char] = ACTIONS(1967), [anon_sym_true] = ACTIONS(808), [anon_sym_false] = ACTIONS(808), [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1973), + [sym_atom] = ACTIONS(1967), [anon_sym_DQUOTE] = ACTIONS(812), [anon_sym_SQUOTE] = ACTIONS(814), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), @@ -99380,78 +99029,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(844), }, - [553] = { - [sym__expression] = STATE(4416), - [sym_block] = STATE(4416), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4416), - [sym_nil] = STATE(4416), - [sym__atom] = STATE(4416), - [sym_quoted_atom] = STATE(4416), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4416), - [sym_charlist] = STATE(4416), - [sym_sigil] = STATE(4416), - [sym_list] = STATE(4416), - [sym_tuple] = STATE(4416), - [sym_bitstring] = STATE(4416), - [sym_map] = STATE(4416), - [sym__nullary_operator] = STATE(4416), - [sym_unary_operator] = STATE(4416), - [sym_binary_operator] = STATE(4416), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4416), - [sym_call] = STATE(4416), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4416), - [sym_anonymous_function] = STATE(4416), + [552] = { + [sym__expression] = STATE(4553), + [sym_block] = STATE(4553), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(4553), + [sym_nil] = STATE(4553), + [sym__atom] = STATE(4553), + [sym_quoted_atom] = STATE(4553), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4553), + [sym_charlist] = STATE(4553), + [sym_sigil] = STATE(4553), + [sym_list] = STATE(4553), + [sym_tuple] = STATE(4553), + [sym_bitstring] = STATE(4553), + [sym_map] = STATE(4553), + [sym__nullary_operator] = STATE(4553), + [sym_unary_operator] = STATE(4553), + [sym_binary_operator] = STATE(4553), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4553), + [sym_call] = STATE(4553), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4553), + [sym_anonymous_function] = STATE(4553), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1975), - [sym_integer] = ACTIONS(1975), - [sym_float] = ACTIONS(1975), - [sym_char] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [sym_alias] = ACTIONS(1969), + [sym_integer] = ACTIONS(1969), + [sym_float] = ACTIONS(1969), + [sym_char] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99489,86 +99138,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [554] = { - [sym__expression] = STATE(4417), - [sym_block] = STATE(4417), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4417), - [sym_nil] = STATE(4417), - [sym__atom] = STATE(4417), - [sym_quoted_atom] = STATE(4417), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4417), - [sym_charlist] = STATE(4417), - [sym_sigil] = STATE(4417), - [sym_list] = STATE(4417), - [sym_tuple] = STATE(4417), - [sym_bitstring] = STATE(4417), - [sym_map] = STATE(4417), - [sym__nullary_operator] = STATE(4417), - [sym_unary_operator] = STATE(4417), - [sym_binary_operator] = STATE(4417), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4417), - [sym_call] = STATE(4417), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4417), - [sym_anonymous_function] = STATE(4417), + [553] = { + [sym__expression] = STATE(4367), + [sym_block] = STATE(4367), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4367), + [sym_nil] = STATE(4367), + [sym__atom] = STATE(4367), + [sym_quoted_atom] = STATE(4367), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4367), + [sym_charlist] = STATE(4367), + [sym_sigil] = STATE(4367), + [sym_list] = STATE(4367), + [sym_tuple] = STATE(4367), + [sym_bitstring] = STATE(4367), + [sym_map] = STATE(4367), + [sym__nullary_operator] = STATE(4367), + [sym_unary_operator] = STATE(4367), + [sym_binary_operator] = STATE(4367), + [sym_operator_identifier] = STATE(6916), + [sym_dot] = STATE(4367), + [sym_call] = STATE(4367), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4367), + [sym_anonymous_function] = STATE(4367), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1977), - [sym_integer] = ACTIONS(1977), - [sym_float] = ACTIONS(1977), - [sym_char] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1971), + [sym_integer] = ACTIONS(1971), + [sym_float] = ACTIONS(1971), + [sym_char] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_DOT_DOT] = ACTIONS(43), + [anon_sym_AMP] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(47), + [anon_sym_DASH] = ACTIONS(47), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_CARET] = ACTIONS(47), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(47), + [anon_sym_AT] = ACTIONS(49), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99606,86 +99255,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(51), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(53), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(57), }, - [555] = { - [sym__expression] = STATE(4291), - [sym_block] = STATE(4291), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4291), - [sym_nil] = STATE(4291), - [sym__atom] = STATE(4291), - [sym_quoted_atom] = STATE(4291), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4291), - [sym_charlist] = STATE(4291), - [sym_sigil] = STATE(4291), - [sym_list] = STATE(4291), - [sym_tuple] = STATE(4291), - [sym_bitstring] = STATE(4291), - [sym_map] = STATE(4291), - [sym__nullary_operator] = STATE(4291), - [sym_unary_operator] = STATE(4291), - [sym_binary_operator] = STATE(4291), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4291), - [sym_call] = STATE(4291), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4291), - [sym_anonymous_function] = STATE(4291), + [554] = { + [sym__expression] = STATE(3489), + [sym_block] = STATE(3489), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3489), + [sym_nil] = STATE(3489), + [sym__atom] = STATE(3489), + [sym_quoted_atom] = STATE(3489), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3489), + [sym_charlist] = STATE(3489), + [sym_sigil] = STATE(3489), + [sym_list] = STATE(3489), + [sym_tuple] = STATE(3489), + [sym_bitstring] = STATE(3489), + [sym_map] = STATE(3489), + [sym__nullary_operator] = STATE(3489), + [sym_unary_operator] = STATE(3489), + [sym_binary_operator] = STATE(3489), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3489), + [sym_call] = STATE(3489), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3489), + [sym_anonymous_function] = STATE(3489), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1979), - [sym_integer] = ACTIONS(1979), - [sym_float] = ACTIONS(1979), - [sym_char] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(1503), + [sym_integer] = ACTIONS(1503), + [sym_float] = ACTIONS(1503), + [sym_char] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99723,64 +99372,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(281), }, - [556] = { - [sym__expression] = STATE(4196), - [sym_block] = STATE(4196), + [555] = { + [sym__expression] = STATE(4064), + [sym_block] = STATE(4064), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4196), - [sym_nil] = STATE(4196), - [sym__atom] = STATE(4196), - [sym_quoted_atom] = STATE(4196), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4196), - [sym_charlist] = STATE(4196), - [sym_sigil] = STATE(4196), - [sym_list] = STATE(4196), - [sym_tuple] = STATE(4196), - [sym_bitstring] = STATE(4196), - [sym_map] = STATE(4196), - [sym__nullary_operator] = STATE(4196), - [sym_unary_operator] = STATE(4196), - [sym_binary_operator] = STATE(4196), + [sym_boolean] = STATE(4064), + [sym_nil] = STATE(4064), + [sym__atom] = STATE(4064), + [sym_quoted_atom] = STATE(4064), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4064), + [sym_charlist] = STATE(4064), + [sym_sigil] = STATE(4064), + [sym_list] = STATE(4064), + [sym_tuple] = STATE(4064), + [sym_bitstring] = STATE(4064), + [sym_map] = STATE(4064), + [sym__nullary_operator] = STATE(4064), + [sym_unary_operator] = STATE(4064), + [sym_binary_operator] = STATE(4064), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4196), - [sym_call] = STATE(4196), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4064), + [sym_call] = STATE(4064), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4196), - [sym_anonymous_function] = STATE(4196), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4064), + [sym_anonymous_function] = STATE(4064), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1981), - [sym_integer] = ACTIONS(1981), - [sym_float] = ACTIONS(1981), - [sym_char] = ACTIONS(1981), + [sym_alias] = ACTIONS(1973), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1973), + [sym_char] = ACTIONS(1973), [anon_sym_true] = ACTIONS(808), [anon_sym_false] = ACTIONS(808), [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1981), + [sym_atom] = ACTIONS(1973), [anon_sym_DQUOTE] = ACTIONS(812), [anon_sym_SQUOTE] = ACTIONS(814), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), @@ -99848,78 +99497,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(844), }, - [557] = { - [sym__expression] = STATE(4158), - [sym_block] = STATE(4158), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4158), - [sym_nil] = STATE(4158), - [sym__atom] = STATE(4158), - [sym_quoted_atom] = STATE(4158), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4158), - [sym_charlist] = STATE(4158), - [sym_sigil] = STATE(4158), - [sym_list] = STATE(4158), - [sym_tuple] = STATE(4158), - [sym_bitstring] = STATE(4158), - [sym_map] = STATE(4158), - [sym__nullary_operator] = STATE(4158), - [sym_unary_operator] = STATE(4158), - [sym_binary_operator] = STATE(4158), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4158), - [sym_call] = STATE(4158), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4158), - [sym_anonymous_function] = STATE(4158), + [556] = { + [sym__expression] = STATE(2977), + [sym_block] = STATE(2977), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2977), + [sym_nil] = STATE(2977), + [sym__atom] = STATE(2977), + [sym_quoted_atom] = STATE(2977), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2977), + [sym_charlist] = STATE(2977), + [sym_sigil] = STATE(2977), + [sym_list] = STATE(2977), + [sym_tuple] = STATE(2977), + [sym_bitstring] = STATE(2977), + [sym_map] = STATE(2977), + [sym__nullary_operator] = STATE(2977), + [sym_unary_operator] = STATE(2977), + [sym_binary_operator] = STATE(2977), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(2977), + [sym_call] = STATE(2977), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(2977), + [sym_anonymous_function] = STATE(2977), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1983), - [sym_integer] = ACTIONS(1983), - [sym_float] = ACTIONS(1983), - [sym_char] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1975), + [sym_integer] = ACTIONS(1975), + [sym_float] = ACTIONS(1975), + [sym_char] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -99957,86 +99606,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(586), }, - [558] = { - [sym__expression] = STATE(4149), - [sym_block] = STATE(4149), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4149), - [sym_nil] = STATE(4149), - [sym__atom] = STATE(4149), - [sym_quoted_atom] = STATE(4149), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4149), - [sym_charlist] = STATE(4149), - [sym_sigil] = STATE(4149), - [sym_list] = STATE(4149), - [sym_tuple] = STATE(4149), - [sym_bitstring] = STATE(4149), - [sym_map] = STATE(4149), - [sym__nullary_operator] = STATE(4149), - [sym_unary_operator] = STATE(4149), - [sym_binary_operator] = STATE(4149), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4149), - [sym_call] = STATE(4149), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4149), - [sym_anonymous_function] = STATE(4149), + [557] = { + [sym__expression] = STATE(2976), + [sym_block] = STATE(2976), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2976), + [sym_nil] = STATE(2976), + [sym__atom] = STATE(2976), + [sym_quoted_atom] = STATE(2976), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(2976), + [sym_charlist] = STATE(2976), + [sym_sigil] = STATE(2976), + [sym_list] = STATE(2976), + [sym_tuple] = STATE(2976), + [sym_bitstring] = STATE(2976), + [sym_map] = STATE(2976), + [sym__nullary_operator] = STATE(2976), + [sym_unary_operator] = STATE(2976), + [sym_binary_operator] = STATE(2976), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(2976), + [sym_call] = STATE(2976), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(2976), + [sym_anonymous_function] = STATE(2976), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1985), - [sym_integer] = ACTIONS(1985), - [sym_float] = ACTIONS(1985), - [sym_char] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1977), + [sym_integer] = ACTIONS(1977), + [sym_float] = ACTIONS(1977), + [sym_char] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100074,64 +99723,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(586), }, - [559] = { - [sym__expression] = STATE(4178), - [sym_block] = STATE(4178), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4178), - [sym_nil] = STATE(4178), - [sym__atom] = STATE(4178), - [sym_quoted_atom] = STATE(4178), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [558] = { + [sym__expression] = STATE(4066), + [sym_block] = STATE(4066), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4066), + [sym_nil] = STATE(4066), + [sym__atom] = STATE(4066), + [sym_quoted_atom] = STATE(4066), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4178), - [sym_charlist] = STATE(4178), - [sym_sigil] = STATE(4178), - [sym_list] = STATE(4178), - [sym_tuple] = STATE(4178), - [sym_bitstring] = STATE(4178), - [sym_map] = STATE(4178), - [sym__nullary_operator] = STATE(4178), - [sym_unary_operator] = STATE(4178), - [sym_binary_operator] = STATE(4178), + [sym_string] = STATE(4066), + [sym_charlist] = STATE(4066), + [sym_sigil] = STATE(4066), + [sym_list] = STATE(4066), + [sym_tuple] = STATE(4066), + [sym_bitstring] = STATE(4066), + [sym_map] = STATE(4066), + [sym__nullary_operator] = STATE(4066), + [sym_unary_operator] = STATE(4066), + [sym_binary_operator] = STATE(4066), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4178), - [sym_call] = STATE(4178), + [sym_dot] = STATE(4066), + [sym_call] = STATE(4066), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4178), - [sym_anonymous_function] = STATE(4178), + [sym_access_call] = STATE(4066), + [sym_anonymous_function] = STATE(4066), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1987), - [sym_integer] = ACTIONS(1987), - [sym_float] = ACTIONS(1987), - [sym_char] = ACTIONS(1987), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1979), + [sym_integer] = ACTIONS(1979), + [sym_float] = ACTIONS(1979), + [sym_char] = ACTIONS(1979), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1987), + [sym_atom] = ACTIONS(1979), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -100142,18 +99791,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100195,82 +99844,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [560] = { - [sym__expression] = STATE(4104), - [sym_block] = STATE(4104), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4104), - [sym_nil] = STATE(4104), - [sym__atom] = STATE(4104), - [sym_quoted_atom] = STATE(4104), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4104), - [sym_charlist] = STATE(4104), - [sym_sigil] = STATE(4104), - [sym_list] = STATE(4104), - [sym_tuple] = STATE(4104), - [sym_bitstring] = STATE(4104), - [sym_map] = STATE(4104), - [sym__nullary_operator] = STATE(4104), - [sym_unary_operator] = STATE(4104), - [sym_binary_operator] = STATE(4104), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4104), - [sym_call] = STATE(4104), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4104), - [sym_anonymous_function] = STATE(4104), + [559] = { + [sym__expression] = STATE(4154), + [sym_block] = STATE(4154), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4154), + [sym_nil] = STATE(4154), + [sym__atom] = STATE(4154), + [sym_quoted_atom] = STATE(4154), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4154), + [sym_charlist] = STATE(4154), + [sym_sigil] = STATE(4154), + [sym_list] = STATE(4154), + [sym_tuple] = STATE(4154), + [sym_bitstring] = STATE(4154), + [sym_map] = STATE(4154), + [sym__nullary_operator] = STATE(4154), + [sym_unary_operator] = STATE(4154), + [sym_binary_operator] = STATE(4154), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4154), + [sym_call] = STATE(4154), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4154), + [sym_anonymous_function] = STATE(4154), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1989), - [sym_integer] = ACTIONS(1989), - [sym_float] = ACTIONS(1989), - [sym_char] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1981), + [sym_integer] = ACTIONS(1981), + [sym_float] = ACTIONS(1981), + [sym_char] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100308,86 +99957,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(958), }, - [561] = { - [sym__expression] = STATE(4100), - [sym_block] = STATE(4100), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4100), - [sym_nil] = STATE(4100), - [sym__atom] = STATE(4100), - [sym_quoted_atom] = STATE(4100), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4100), - [sym_charlist] = STATE(4100), - [sym_sigil] = STATE(4100), - [sym_list] = STATE(4100), - [sym_tuple] = STATE(4100), - [sym_bitstring] = STATE(4100), - [sym_map] = STATE(4100), - [sym__nullary_operator] = STATE(4100), - [sym_unary_operator] = STATE(4100), - [sym_binary_operator] = STATE(4100), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4100), - [sym_call] = STATE(4100), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4100), - [sym_anonymous_function] = STATE(4100), + [560] = { + [sym__expression] = STATE(3452), + [sym_block] = STATE(3452), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3452), + [sym_nil] = STATE(3452), + [sym__atom] = STATE(3452), + [sym_quoted_atom] = STATE(3452), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3452), + [sym_charlist] = STATE(3452), + [sym_sigil] = STATE(3452), + [sym_list] = STATE(3452), + [sym_tuple] = STATE(3452), + [sym_bitstring] = STATE(3452), + [sym_map] = STATE(3452), + [sym__nullary_operator] = STATE(3452), + [sym_unary_operator] = STATE(3452), + [sym_binary_operator] = STATE(3452), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3452), + [sym_call] = STATE(3452), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3452), + [sym_anonymous_function] = STATE(3452), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1991), - [sym_integer] = ACTIONS(1991), - [sym_float] = ACTIONS(1991), - [sym_char] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1983), + [sym_integer] = ACTIONS(1983), + [sym_float] = ACTIONS(1983), + [sym_char] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100425,86 +100074,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(586), }, - [562] = { - [sym__expression] = STATE(4099), - [sym_block] = STATE(4099), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4099), - [sym_nil] = STATE(4099), - [sym__atom] = STATE(4099), - [sym_quoted_atom] = STATE(4099), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4099), - [sym_charlist] = STATE(4099), - [sym_sigil] = STATE(4099), - [sym_list] = STATE(4099), - [sym_tuple] = STATE(4099), - [sym_bitstring] = STATE(4099), - [sym_map] = STATE(4099), - [sym__nullary_operator] = STATE(4099), - [sym_unary_operator] = STATE(4099), - [sym_binary_operator] = STATE(4099), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4099), - [sym_call] = STATE(4099), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4099), - [sym_anonymous_function] = STATE(4099), + [561] = { + [sym__expression] = STATE(4153), + [sym_block] = STATE(4153), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4153), + [sym_nil] = STATE(4153), + [sym__atom] = STATE(4153), + [sym_quoted_atom] = STATE(4153), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4153), + [sym_charlist] = STATE(4153), + [sym_sigil] = STATE(4153), + [sym_list] = STATE(4153), + [sym_tuple] = STATE(4153), + [sym_bitstring] = STATE(4153), + [sym_map] = STATE(4153), + [sym__nullary_operator] = STATE(4153), + [sym_unary_operator] = STATE(4153), + [sym_binary_operator] = STATE(4153), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4153), + [sym_call] = STATE(4153), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4153), + [sym_anonymous_function] = STATE(4153), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1993), - [sym_integer] = ACTIONS(1993), - [sym_float] = ACTIONS(1993), - [sym_char] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1985), + [sym_integer] = ACTIONS(1985), + [sym_float] = ACTIONS(1985), + [sym_char] = ACTIONS(1985), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100542,86 +100191,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(958), }, - [563] = { - [sym__expression] = STATE(4096), - [sym_block] = STATE(4096), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4096), - [sym_nil] = STATE(4096), - [sym__atom] = STATE(4096), - [sym_quoted_atom] = STATE(4096), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4096), - [sym_charlist] = STATE(4096), - [sym_sigil] = STATE(4096), - [sym_list] = STATE(4096), - [sym_tuple] = STATE(4096), - [sym_bitstring] = STATE(4096), - [sym_map] = STATE(4096), - [sym__nullary_operator] = STATE(4096), - [sym_unary_operator] = STATE(4096), - [sym_binary_operator] = STATE(4096), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4096), - [sym_call] = STATE(4096), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4096), - [sym_anonymous_function] = STATE(4096), + [562] = { + [sym__expression] = STATE(4150), + [sym_block] = STATE(4150), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4150), + [sym_nil] = STATE(4150), + [sym__atom] = STATE(4150), + [sym_quoted_atom] = STATE(4150), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4150), + [sym_charlist] = STATE(4150), + [sym_sigil] = STATE(4150), + [sym_list] = STATE(4150), + [sym_tuple] = STATE(4150), + [sym_bitstring] = STATE(4150), + [sym_map] = STATE(4150), + [sym__nullary_operator] = STATE(4150), + [sym_unary_operator] = STATE(4150), + [sym_binary_operator] = STATE(4150), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4150), + [sym_call] = STATE(4150), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4150), + [sym_anonymous_function] = STATE(4150), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1995), - [sym_integer] = ACTIONS(1995), - [sym_float] = ACTIONS(1995), - [sym_char] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1987), + [sym_integer] = ACTIONS(1987), + [sym_float] = ACTIONS(1987), + [sym_char] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100659,64 +100308,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(958), }, - [564] = { - [sym__expression] = STATE(4179), - [sym_block] = STATE(4179), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4179), - [sym_nil] = STATE(4179), - [sym__atom] = STATE(4179), - [sym_quoted_atom] = STATE(4179), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [563] = { + [sym__expression] = STATE(4149), + [sym_block] = STATE(4149), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4149), + [sym_nil] = STATE(4149), + [sym__atom] = STATE(4149), + [sym_quoted_atom] = STATE(4149), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4179), - [sym_charlist] = STATE(4179), - [sym_sigil] = STATE(4179), - [sym_list] = STATE(4179), - [sym_tuple] = STATE(4179), - [sym_bitstring] = STATE(4179), - [sym_map] = STATE(4179), - [sym__nullary_operator] = STATE(4179), - [sym_unary_operator] = STATE(4179), - [sym_binary_operator] = STATE(4179), + [sym_string] = STATE(4149), + [sym_charlist] = STATE(4149), + [sym_sigil] = STATE(4149), + [sym_list] = STATE(4149), + [sym_tuple] = STATE(4149), + [sym_bitstring] = STATE(4149), + [sym_map] = STATE(4149), + [sym__nullary_operator] = STATE(4149), + [sym_unary_operator] = STATE(4149), + [sym_binary_operator] = STATE(4149), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4179), - [sym_call] = STATE(4179), + [sym_dot] = STATE(4149), + [sym_call] = STATE(4149), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4179), - [sym_anonymous_function] = STATE(4179), + [sym_access_call] = STATE(4149), + [sym_anonymous_function] = STATE(4149), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1997), - [sym_integer] = ACTIONS(1997), - [sym_float] = ACTIONS(1997), - [sym_char] = ACTIONS(1997), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1989), + [sym_integer] = ACTIONS(1989), + [sym_float] = ACTIONS(1989), + [sym_char] = ACTIONS(1989), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1997), + [sym_atom] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -100727,18 +100376,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100780,82 +100429,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [565] = { - [sym__expression] = STATE(4077), - [sym_block] = STATE(4077), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4077), - [sym_nil] = STATE(4077), - [sym__atom] = STATE(4077), - [sym_quoted_atom] = STATE(4077), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4077), - [sym_charlist] = STATE(4077), - [sym_sigil] = STATE(4077), - [sym_list] = STATE(4077), - [sym_tuple] = STATE(4077), - [sym_bitstring] = STATE(4077), - [sym_map] = STATE(4077), - [sym__nullary_operator] = STATE(4077), - [sym_unary_operator] = STATE(4077), - [sym_binary_operator] = STATE(4077), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4077), - [sym_call] = STATE(4077), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4077), - [sym_anonymous_function] = STATE(4077), + [564] = { + [sym__expression] = STATE(4144), + [sym_block] = STATE(4144), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4144), + [sym_nil] = STATE(4144), + [sym__atom] = STATE(4144), + [sym_quoted_atom] = STATE(4144), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4144), + [sym_charlist] = STATE(4144), + [sym_sigil] = STATE(4144), + [sym_list] = STATE(4144), + [sym_tuple] = STATE(4144), + [sym_bitstring] = STATE(4144), + [sym_map] = STATE(4144), + [sym__nullary_operator] = STATE(4144), + [sym_unary_operator] = STATE(4144), + [sym_binary_operator] = STATE(4144), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4144), + [sym_call] = STATE(4144), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4144), + [sym_anonymous_function] = STATE(4144), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1999), - [sym_integer] = ACTIONS(1999), - [sym_float] = ACTIONS(1999), - [sym_char] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1991), + [sym_integer] = ACTIONS(1991), + [sym_float] = ACTIONS(1991), + [sym_char] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -100893,86 +100542,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(958), }, - [566] = { - [sym__expression] = STATE(4075), - [sym_block] = STATE(4075), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4075), - [sym_nil] = STATE(4075), - [sym__atom] = STATE(4075), - [sym_quoted_atom] = STATE(4075), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4075), - [sym_charlist] = STATE(4075), - [sym_sigil] = STATE(4075), - [sym_list] = STATE(4075), - [sym_tuple] = STATE(4075), - [sym_bitstring] = STATE(4075), - [sym_map] = STATE(4075), - [sym__nullary_operator] = STATE(4075), - [sym_unary_operator] = STATE(4075), - [sym_binary_operator] = STATE(4075), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4075), - [sym_call] = STATE(4075), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4075), - [sym_anonymous_function] = STATE(4075), + [565] = { + [sym__expression] = STATE(4143), + [sym_block] = STATE(4143), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4143), + [sym_nil] = STATE(4143), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4143), + [sym_charlist] = STATE(4143), + [sym_sigil] = STATE(4143), + [sym_list] = STATE(4143), + [sym_tuple] = STATE(4143), + [sym_bitstring] = STATE(4143), + [sym_map] = STATE(4143), + [sym__nullary_operator] = STATE(4143), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4143), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4143), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4143), + [sym_anonymous_function] = STATE(4143), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2001), - [sym_integer] = ACTIONS(2001), - [sym_float] = ACTIONS(2001), - [sym_char] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1993), + [sym_integer] = ACTIONS(1993), + [sym_float] = ACTIONS(1993), + [sym_char] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101010,86 +100659,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(958), }, - [567] = { - [sym__expression] = STATE(4180), - [sym_block] = STATE(4180), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4180), - [sym_nil] = STATE(4180), - [sym__atom] = STATE(4180), - [sym_quoted_atom] = STATE(4180), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4180), - [sym_charlist] = STATE(4180), - [sym_sigil] = STATE(4180), - [sym_list] = STATE(4180), - [sym_tuple] = STATE(4180), - [sym_bitstring] = STATE(4180), - [sym_map] = STATE(4180), - [sym__nullary_operator] = STATE(4180), - [sym_unary_operator] = STATE(4180), - [sym_binary_operator] = STATE(4180), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4180), - [sym_call] = STATE(4180), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4180), - [sym_anonymous_function] = STATE(4180), + [566] = { + [sym__expression] = STATE(3479), + [sym_block] = STATE(3479), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3479), + [sym_nil] = STATE(3479), + [sym__atom] = STATE(3479), + [sym_quoted_atom] = STATE(3479), + [sym__quoted_i_double] = STATE(2951), + [sym__quoted_i_single] = STATE(2952), + [sym__quoted_i_heredoc_single] = STATE(2953), + [sym__quoted_i_heredoc_double] = STATE(2954), + [sym_string] = STATE(3479), + [sym_charlist] = STATE(3479), + [sym_sigil] = STATE(3479), + [sym_list] = STATE(3479), + [sym_tuple] = STATE(3479), + [sym_bitstring] = STATE(3479), + [sym_map] = STATE(3479), + [sym__nullary_operator] = STATE(3479), + [sym_unary_operator] = STATE(3479), + [sym_binary_operator] = STATE(3479), + [sym_operator_identifier] = STATE(6952), + [sym_dot] = STATE(3479), + [sym_call] = STATE(3479), + [sym__call_without_parentheses] = STATE(2955), + [sym__call_with_parentheses] = STATE(2919), + [sym__local_call_without_parentheses] = STATE(2956), + [sym__local_call_with_parentheses] = STATE(2174), + [sym__local_call_just_do_block] = STATE(2957), + [sym__remote_call_without_parentheses] = STATE(2958), + [sym__remote_call_with_parentheses] = STATE(2173), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(2172), + [sym__anonymous_dot] = STATE(6824), + [sym__double_call] = STATE(2961), + [sym_access_call] = STATE(3479), + [sym_anonymous_function] = STATE(3479), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2003), - [sym_integer] = ACTIONS(2003), - [sym_float] = ACTIONS(2003), - [sym_char] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(540), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1463), + [sym_integer] = ACTIONS(1463), + [sym_float] = ACTIONS(1463), + [sym_char] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(544), + [anon_sym_false] = ACTIONS(544), + [anon_sym_nil] = ACTIONS(546), + [sym_atom] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_SQUOTE] = ACTIONS(550), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), + [anon_sym_not] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(578), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101127,86 +100776,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(580), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(584), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(586), }, - [568] = { - [sym__expression] = STATE(4181), - [sym_block] = STATE(4181), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4181), - [sym_nil] = STATE(4181), - [sym__atom] = STATE(4181), - [sym_quoted_atom] = STATE(4181), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4181), - [sym_charlist] = STATE(4181), - [sym_sigil] = STATE(4181), - [sym_list] = STATE(4181), - [sym_tuple] = STATE(4181), - [sym_bitstring] = STATE(4181), - [sym_map] = STATE(4181), - [sym__nullary_operator] = STATE(4181), - [sym_unary_operator] = STATE(4181), - [sym_binary_operator] = STATE(4181), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4181), - [sym_call] = STATE(4181), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4181), - [sym_anonymous_function] = STATE(4181), + [567] = { + [sym__expression] = STATE(4163), + [sym_block] = STATE(4163), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4163), + [sym_nil] = STATE(4163), + [sym__atom] = STATE(4163), + [sym_quoted_atom] = STATE(4163), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4163), + [sym_charlist] = STATE(4163), + [sym_sigil] = STATE(4163), + [sym_list] = STATE(4163), + [sym_tuple] = STATE(4163), + [sym_bitstring] = STATE(4163), + [sym_map] = STATE(4163), + [sym__nullary_operator] = STATE(4163), + [sym_unary_operator] = STATE(4163), + [sym_binary_operator] = STATE(4163), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4163), + [sym_call] = STATE(4163), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4163), + [sym_anonymous_function] = STATE(4163), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2005), - [sym_integer] = ACTIONS(2005), - [sym_float] = ACTIONS(2005), - [sym_char] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_char] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101244,86 +100893,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(844), }, - [569] = { - [sym__expression] = STATE(4182), - [sym_block] = STATE(4182), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4182), - [sym_nil] = STATE(4182), - [sym__atom] = STATE(4182), - [sym_quoted_atom] = STATE(4182), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4182), - [sym_charlist] = STATE(4182), - [sym_sigil] = STATE(4182), - [sym_list] = STATE(4182), - [sym_tuple] = STATE(4182), - [sym_bitstring] = STATE(4182), - [sym_map] = STATE(4182), - [sym__nullary_operator] = STATE(4182), - [sym_unary_operator] = STATE(4182), - [sym_binary_operator] = STATE(4182), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4182), - [sym_call] = STATE(4182), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4182), - [sym_anonymous_function] = STATE(4182), + [568] = { + [sym__expression] = STATE(4164), + [sym_block] = STATE(4164), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4164), + [sym_nil] = STATE(4164), + [sym__atom] = STATE(4164), + [sym_quoted_atom] = STATE(4164), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4164), + [sym_charlist] = STATE(4164), + [sym_sigil] = STATE(4164), + [sym_list] = STATE(4164), + [sym_tuple] = STATE(4164), + [sym_bitstring] = STATE(4164), + [sym_map] = STATE(4164), + [sym__nullary_operator] = STATE(4164), + [sym_unary_operator] = STATE(4164), + [sym_binary_operator] = STATE(4164), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4164), + [sym_call] = STATE(4164), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4164), + [sym_anonymous_function] = STATE(4164), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2007), - [sym_integer] = ACTIONS(2007), - [sym_float] = ACTIONS(2007), - [sym_char] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(1997), + [sym_integer] = ACTIONS(1997), + [sym_float] = ACTIONS(1997), + [sym_char] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101361,64 +101010,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(844), }, - [570] = { - [sym__expression] = STATE(4210), - [sym_block] = STATE(4210), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4210), - [sym_nil] = STATE(4210), - [sym__atom] = STATE(4210), - [sym_quoted_atom] = STATE(4210), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [569] = { + [sym__expression] = STATE(4142), + [sym_block] = STATE(4142), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4142), + [sym_nil] = STATE(4142), + [sym__atom] = STATE(4142), + [sym_quoted_atom] = STATE(4142), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4210), - [sym_charlist] = STATE(4210), - [sym_sigil] = STATE(4210), - [sym_list] = STATE(4210), - [sym_tuple] = STATE(4210), - [sym_bitstring] = STATE(4210), - [sym_map] = STATE(4210), - [sym__nullary_operator] = STATE(4210), - [sym_unary_operator] = STATE(4210), - [sym_binary_operator] = STATE(4210), + [sym_string] = STATE(4142), + [sym_charlist] = STATE(4142), + [sym_sigil] = STATE(4142), + [sym_list] = STATE(4142), + [sym_tuple] = STATE(4142), + [sym_bitstring] = STATE(4142), + [sym_map] = STATE(4142), + [sym__nullary_operator] = STATE(4142), + [sym_unary_operator] = STATE(4142), + [sym_binary_operator] = STATE(4142), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4210), - [sym_call] = STATE(4210), + [sym_dot] = STATE(4142), + [sym_call] = STATE(4142), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4210), - [sym_anonymous_function] = STATE(4210), + [sym_access_call] = STATE(4142), + [sym_anonymous_function] = STATE(4142), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2009), - [sym_integer] = ACTIONS(2009), - [sym_float] = ACTIONS(2009), - [sym_char] = ACTIONS(2009), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1999), + [sym_integer] = ACTIONS(1999), + [sym_float] = ACTIONS(1999), + [sym_char] = ACTIONS(1999), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2009), + [sym_atom] = ACTIONS(1999), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -101429,18 +101078,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1397), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101482,82 +101131,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [571] = { - [sym__expression] = STATE(4184), - [sym_block] = STATE(4184), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4184), - [sym_nil] = STATE(4184), - [sym__atom] = STATE(4184), - [sym_quoted_atom] = STATE(4184), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4184), - [sym_charlist] = STATE(4184), - [sym_sigil] = STATE(4184), - [sym_list] = STATE(4184), - [sym_tuple] = STATE(4184), - [sym_bitstring] = STATE(4184), - [sym_map] = STATE(4184), - [sym__nullary_operator] = STATE(4184), - [sym_unary_operator] = STATE(4184), - [sym_binary_operator] = STATE(4184), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4184), - [sym_call] = STATE(4184), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4184), - [sym_anonymous_function] = STATE(4184), + [570] = { + [sym__expression] = STATE(4168), + [sym_block] = STATE(4168), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4168), + [sym_nil] = STATE(4168), + [sym__atom] = STATE(4168), + [sym_quoted_atom] = STATE(4168), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4168), + [sym_charlist] = STATE(4168), + [sym_sigil] = STATE(4168), + [sym_list] = STATE(4168), + [sym_tuple] = STATE(4168), + [sym_bitstring] = STATE(4168), + [sym_map] = STATE(4168), + [sym__nullary_operator] = STATE(4168), + [sym_unary_operator] = STATE(4168), + [sym_binary_operator] = STATE(4168), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4168), + [sym_call] = STATE(4168), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4168), + [sym_anonymous_function] = STATE(4168), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2011), - [sym_integer] = ACTIONS(2011), - [sym_float] = ACTIONS(2011), - [sym_char] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2001), + [sym_integer] = ACTIONS(2001), + [sym_float] = ACTIONS(2001), + [sym_char] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101595,86 +101244,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(844), }, - [572] = { - [sym__expression] = STATE(2361), - [sym_block] = STATE(2361), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2361), - [sym_nil] = STATE(2361), - [sym__atom] = STATE(2361), - [sym_quoted_atom] = STATE(2361), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2361), - [sym_charlist] = STATE(2361), - [sym_sigil] = STATE(2361), - [sym_list] = STATE(2361), - [sym_tuple] = STATE(2361), - [sym_bitstring] = STATE(2361), - [sym_map] = STATE(2361), - [sym__nullary_operator] = STATE(2361), - [sym_unary_operator] = STATE(2361), - [sym_binary_operator] = STATE(2361), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2361), - [sym_call] = STATE(2361), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2361), - [sym_anonymous_function] = STATE(2361), + [571] = { + [sym__expression] = STATE(4169), + [sym_block] = STATE(4169), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4169), + [sym_nil] = STATE(4169), + [sym__atom] = STATE(4169), + [sym_quoted_atom] = STATE(4169), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4169), + [sym_charlist] = STATE(4169), + [sym_sigil] = STATE(4169), + [sym_list] = STATE(4169), + [sym_tuple] = STATE(4169), + [sym_bitstring] = STATE(4169), + [sym_map] = STATE(4169), + [sym__nullary_operator] = STATE(4169), + [sym_unary_operator] = STATE(4169), + [sym_binary_operator] = STATE(4169), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4169), + [sym_call] = STATE(4169), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4169), + [sym_anonymous_function] = STATE(4169), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(1369), - [sym_integer] = ACTIONS(1369), - [sym_float] = ACTIONS(1369), - [sym_char] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2003), + [sym_char] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -101712,64 +101361,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, - [573] = { - [sym__expression] = STATE(4113), - [sym_block] = STATE(4113), + [572] = { + [sym__expression] = STATE(4125), + [sym_block] = STATE(4125), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4113), - [sym_nil] = STATE(4113), - [sym__atom] = STATE(4113), - [sym_quoted_atom] = STATE(4113), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4113), - [sym_charlist] = STATE(4113), - [sym_sigil] = STATE(4113), - [sym_list] = STATE(4113), - [sym_tuple] = STATE(4113), - [sym_bitstring] = STATE(4113), - [sym_map] = STATE(4113), - [sym__nullary_operator] = STATE(4113), - [sym_unary_operator] = STATE(4113), - [sym_binary_operator] = STATE(4113), + [sym_boolean] = STATE(4125), + [sym_nil] = STATE(4125), + [sym__atom] = STATE(4125), + [sym_quoted_atom] = STATE(4125), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4125), + [sym_charlist] = STATE(4125), + [sym_sigil] = STATE(4125), + [sym_list] = STATE(4125), + [sym_tuple] = STATE(4125), + [sym_bitstring] = STATE(4125), + [sym_map] = STATE(4125), + [sym__nullary_operator] = STATE(4125), + [sym_unary_operator] = STATE(4125), + [sym_binary_operator] = STATE(4125), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4113), - [sym_call] = STATE(4113), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4125), + [sym_call] = STATE(4125), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4113), - [sym_anonymous_function] = STATE(4113), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4125), + [sym_anonymous_function] = STATE(4125), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2013), - [sym_integer] = ACTIONS(2013), - [sym_float] = ACTIONS(2013), - [sym_char] = ACTIONS(2013), + [sym_alias] = ACTIONS(2005), + [sym_integer] = ACTIONS(2005), + [sym_float] = ACTIONS(2005), + [sym_char] = ACTIONS(2005), [anon_sym_true] = ACTIONS(808), [anon_sym_false] = ACTIONS(808), [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2013), + [sym_atom] = ACTIONS(2005), [anon_sym_DQUOTE] = ACTIONS(812), [anon_sym_SQUOTE] = ACTIONS(814), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), @@ -101837,56 +101486,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(844), }, - [574] = { - [sym__expression] = STATE(4114), - [sym_block] = STATE(4114), + [573] = { + [sym__expression] = STATE(4174), + [sym_block] = STATE(4174), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4114), - [sym_nil] = STATE(4114), - [sym__atom] = STATE(4114), - [sym_quoted_atom] = STATE(4114), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4114), - [sym_charlist] = STATE(4114), - [sym_sigil] = STATE(4114), - [sym_list] = STATE(4114), - [sym_tuple] = STATE(4114), - [sym_bitstring] = STATE(4114), - [sym_map] = STATE(4114), - [sym__nullary_operator] = STATE(4114), - [sym_unary_operator] = STATE(4114), - [sym_binary_operator] = STATE(4114), + [sym_boolean] = STATE(4174), + [sym_nil] = STATE(4174), + [sym__atom] = STATE(4174), + [sym_quoted_atom] = STATE(4174), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4174), + [sym_charlist] = STATE(4174), + [sym_sigil] = STATE(4174), + [sym_list] = STATE(4174), + [sym_tuple] = STATE(4174), + [sym_bitstring] = STATE(4174), + [sym_map] = STATE(4174), + [sym__nullary_operator] = STATE(4174), + [sym_unary_operator] = STATE(4174), + [sym_binary_operator] = STATE(4174), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4114), - [sym_call] = STATE(4114), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4174), + [sym_call] = STATE(4174), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4114), - [sym_anonymous_function] = STATE(4114), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4174), + [sym_anonymous_function] = STATE(4174), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2015), - [sym_integer] = ACTIONS(2015), - [sym_float] = ACTIONS(2015), - [sym_char] = ACTIONS(2015), + [sym_alias] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2007), + [sym_char] = ACTIONS(2007), [anon_sym_true] = ACTIONS(808), [anon_sym_false] = ACTIONS(808), [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2015), + [sym_atom] = ACTIONS(2007), [anon_sym_DQUOTE] = ACTIONS(812), [anon_sym_SQUOTE] = ACTIONS(814), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), @@ -101954,78 +101603,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(844), }, + [574] = { + [sym__expression] = STATE(4179), + [sym_block] = STATE(4179), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4179), + [sym_nil] = STATE(4179), + [sym__atom] = STATE(4179), + [sym_quoted_atom] = STATE(4179), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4179), + [sym_charlist] = STATE(4179), + [sym_sigil] = STATE(4179), + [sym_list] = STATE(4179), + [sym_tuple] = STATE(4179), + [sym_bitstring] = STATE(4179), + [sym_map] = STATE(4179), + [sym__nullary_operator] = STATE(4179), + [sym_unary_operator] = STATE(4179), + [sym_binary_operator] = STATE(4179), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4179), + [sym_call] = STATE(4179), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4179), + [sym_anonymous_function] = STATE(4179), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(2009), + [sym_integer] = ACTIONS(2009), + [sym_float] = ACTIONS(2009), + [sym_char] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(954), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1405), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(958), + }, [575] = { - [sym__expression] = STATE(2437), - [sym_block] = STATE(2437), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2437), - [sym_nil] = STATE(2437), - [sym__atom] = STATE(2437), - [sym_quoted_atom] = STATE(2437), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2437), - [sym_charlist] = STATE(2437), - [sym_sigil] = STATE(2437), - [sym_list] = STATE(2437), - [sym_tuple] = STATE(2437), - [sym_bitstring] = STATE(2437), - [sym_map] = STATE(2437), - [sym__nullary_operator] = STATE(2437), - [sym_unary_operator] = STATE(2437), - [sym_binary_operator] = STATE(2437), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2437), - [sym_call] = STATE(2437), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2437), - [sym_anonymous_function] = STATE(2437), + [sym__expression] = STATE(3894), + [sym_block] = STATE(3894), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3894), + [sym_nil] = STATE(3894), + [sym__atom] = STATE(3894), + [sym_quoted_atom] = STATE(3894), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3894), + [sym_charlist] = STATE(3894), + [sym_sigil] = STATE(3894), + [sym_list] = STATE(3894), + [sym_tuple] = STATE(3894), + [sym_bitstring] = STATE(3894), + [sym_map] = STATE(3894), + [sym__nullary_operator] = STATE(3894), + [sym_unary_operator] = STATE(3894), + [sym_binary_operator] = STATE(3894), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3894), + [sym_call] = STATE(3894), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3894), + [sym_anonymous_function] = STATE(3894), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2017), - [sym_integer] = ACTIONS(2017), - [sym_float] = ACTIONS(2017), - [sym_char] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_alias] = ACTIONS(2011), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2011), + [sym_char] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), + [sym_atom] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102063,86 +101829,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, [576] = { - [sym__expression] = STATE(1178), - [sym_block] = STATE(1178), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(1178), - [sym_nil] = STATE(1178), - [sym__atom] = STATE(1178), - [sym_quoted_atom] = STATE(1178), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1178), - [sym_charlist] = STATE(1178), - [sym_sigil] = STATE(1178), - [sym_list] = STATE(1178), - [sym_tuple] = STATE(1178), - [sym_bitstring] = STATE(1178), - [sym_map] = STATE(1178), - [sym__nullary_operator] = STATE(1178), - [sym_unary_operator] = STATE(1178), - [sym_binary_operator] = STATE(1178), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1178), - [sym_call] = STATE(1178), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1178), - [sym_anonymous_function] = STATE(1178), + [sym__expression] = STATE(4576), + [sym_block] = STATE(4576), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4576), + [sym_nil] = STATE(4576), + [sym__atom] = STATE(4576), + [sym_quoted_atom] = STATE(4576), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4576), + [sym_charlist] = STATE(4576), + [sym_sigil] = STATE(4576), + [sym_list] = STATE(4576), + [sym_tuple] = STATE(4576), + [sym_bitstring] = STATE(4576), + [sym_map] = STATE(4576), + [sym__nullary_operator] = STATE(4576), + [sym_unary_operator] = STATE(4576), + [sym_binary_operator] = STATE(4576), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4576), + [sym_call] = STATE(4576), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4576), + [sym_anonymous_function] = STATE(4576), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2019), - [sym_integer] = ACTIONS(2019), - [sym_float] = ACTIONS(2019), - [sym_char] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2013), + [sym_integer] = ACTIONS(2013), + [sym_float] = ACTIONS(2013), + [sym_char] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102180,64 +101946,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [577] = { - [sym__expression] = STATE(4132), - [sym_block] = STATE(4132), + [sym__expression] = STATE(4575), + [sym_block] = STATE(4575), [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4132), - [sym_nil] = STATE(4132), - [sym__atom] = STATE(4132), - [sym_quoted_atom] = STATE(4132), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4132), - [sym_charlist] = STATE(4132), - [sym_sigil] = STATE(4132), - [sym_list] = STATE(4132), - [sym_tuple] = STATE(4132), - [sym_bitstring] = STATE(4132), - [sym_map] = STATE(4132), - [sym__nullary_operator] = STATE(4132), - [sym_unary_operator] = STATE(4132), - [sym_binary_operator] = STATE(4132), + [sym_boolean] = STATE(4575), + [sym_nil] = STATE(4575), + [sym__atom] = STATE(4575), + [sym_quoted_atom] = STATE(4575), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4575), + [sym_charlist] = STATE(4575), + [sym_sigil] = STATE(4575), + [sym_list] = STATE(4575), + [sym_tuple] = STATE(4575), + [sym_bitstring] = STATE(4575), + [sym_map] = STATE(4575), + [sym__nullary_operator] = STATE(4575), + [sym_unary_operator] = STATE(4575), + [sym_binary_operator] = STATE(4575), [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4132), - [sym_call] = STATE(4132), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), + [sym_dot] = STATE(4575), + [sym_call] = STATE(4575), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4132), - [sym_anonymous_function] = STATE(4132), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4575), + [sym_anonymous_function] = STATE(4575), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1373), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2021), - [sym_integer] = ACTIONS(2021), - [sym_float] = ACTIONS(2021), - [sym_char] = ACTIONS(2021), + [sym_alias] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2015), + [sym_char] = ACTIONS(2015), [anon_sym_true] = ACTIONS(808), [anon_sym_false] = ACTIONS(808), [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2021), + [sym_atom] = ACTIONS(2015), [anon_sym_DQUOTE] = ACTIONS(812), [anon_sym_SQUOTE] = ACTIONS(814), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), @@ -102247,7 +102013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(824), [anon_sym_LT_LT] = ACTIONS(826), [anon_sym_PERCENT] = ACTIONS(828), @@ -102313,10 +102079,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nil] = STATE(4456), [sym__atom] = STATE(4456), [sym_quoted_atom] = STATE(4456), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), [sym_string] = STATE(4456), [sym_charlist] = STATE(4456), [sym_sigil] = STATE(4456), @@ -102330,17 +102096,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_identifier] = STATE(6916), [sym_dot] = STATE(4456), [sym_call] = STATE(4456), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), [sym_access_call] = STATE(4456), [sym_anonymous_function] = STATE(4456), [aux_sym__terminator_token1] = ACTIONS(3), @@ -102423,77 +102189,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [579] = { - [sym__expression] = STATE(4135), - [sym_block] = STATE(4135), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4135), - [sym_nil] = STATE(4135), - [sym__atom] = STATE(4135), - [sym_quoted_atom] = STATE(4135), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4135), - [sym_charlist] = STATE(4135), - [sym_sigil] = STATE(4135), - [sym_list] = STATE(4135), - [sym_tuple] = STATE(4135), - [sym_bitstring] = STATE(4135), - [sym_map] = STATE(4135), - [sym__nullary_operator] = STATE(4135), - [sym_unary_operator] = STATE(4135), - [sym_binary_operator] = STATE(4135), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4135), - [sym_call] = STATE(4135), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4135), - [sym_anonymous_function] = STATE(4135), + [sym__expression] = STATE(3871), + [sym_block] = STATE(3871), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3871), + [sym_nil] = STATE(3871), + [sym__atom] = STATE(3871), + [sym_quoted_atom] = STATE(3871), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3871), + [sym_charlist] = STATE(3871), + [sym_sigil] = STATE(3871), + [sym_list] = STATE(3871), + [sym_tuple] = STATE(3871), + [sym_bitstring] = STATE(3871), + [sym_map] = STATE(3871), + [sym__nullary_operator] = STATE(3871), + [sym_unary_operator] = STATE(3871), + [sym_binary_operator] = STATE(3871), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3871), + [sym_call] = STATE(3871), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3871), + [sym_anonymous_function] = STATE(3871), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2023), - [sym_integer] = ACTIONS(2023), - [sym_float] = ACTIONS(2023), - [sym_char] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_alias] = ACTIONS(1423), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1423), + [sym_char] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), + [sym_atom] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102531,86 +102297,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(634), }, [580] = { - [sym__expression] = STATE(2365), - [sym_block] = STATE(2365), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2365), - [sym_nil] = STATE(2365), - [sym__atom] = STATE(2365), - [sym_quoted_atom] = STATE(2365), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2365), - [sym_charlist] = STATE(2365), - [sym_sigil] = STATE(2365), - [sym_list] = STATE(2365), - [sym_tuple] = STATE(2365), - [sym_bitstring] = STATE(2365), - [sym_map] = STATE(2365), - [sym__nullary_operator] = STATE(2365), - [sym_unary_operator] = STATE(2365), - [sym_binary_operator] = STATE(2365), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2365), - [sym_call] = STATE(2365), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2365), - [sym_anonymous_function] = STATE(2365), + [sym__expression] = STATE(4182), + [sym_block] = STATE(4182), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4182), + [sym_nil] = STATE(4182), + [sym__atom] = STATE(4182), + [sym_quoted_atom] = STATE(4182), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4182), + [sym_charlist] = STATE(4182), + [sym_sigil] = STATE(4182), + [sym_list] = STATE(4182), + [sym_tuple] = STATE(4182), + [sym_bitstring] = STATE(4182), + [sym_map] = STATE(4182), + [sym__nullary_operator] = STATE(4182), + [sym_unary_operator] = STATE(4182), + [sym_binary_operator] = STATE(4182), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4182), + [sym_call] = STATE(4182), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4182), + [sym_anonymous_function] = STATE(4182), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2025), - [sym_integer] = ACTIONS(2025), - [sym_float] = ACTIONS(2025), - [sym_char] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2017), + [sym_integer] = ACTIONS(2017), + [sym_float] = ACTIONS(2017), + [sym_char] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102648,86 +102414,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [581] = { - [sym__expression] = STATE(1228), - [sym_block] = STATE(1228), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(1228), - [sym_nil] = STATE(1228), - [sym__atom] = STATE(1228), - [sym_quoted_atom] = STATE(1228), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1228), - [sym_charlist] = STATE(1228), - [sym_sigil] = STATE(1228), - [sym_list] = STATE(1228), - [sym_tuple] = STATE(1228), - [sym_bitstring] = STATE(1228), - [sym_map] = STATE(1228), - [sym__nullary_operator] = STATE(1228), - [sym_unary_operator] = STATE(1228), - [sym_binary_operator] = STATE(1228), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1228), - [sym_call] = STATE(1228), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1228), - [sym_anonymous_function] = STATE(1228), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2027), - [sym_integer] = ACTIONS(2027), - [sym_float] = ACTIONS(2027), - [sym_char] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [sym__expression] = STATE(4183), + [sym_block] = STATE(4183), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4183), + [sym_nil] = STATE(4183), + [sym__atom] = STATE(4183), + [sym_quoted_atom] = STATE(4183), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4183), + [sym_charlist] = STATE(4183), + [sym_sigil] = STATE(4183), + [sym_list] = STATE(4183), + [sym_tuple] = STATE(4183), + [sym_bitstring] = STATE(4183), + [sym_map] = STATE(4183), + [sym__nullary_operator] = STATE(4183), + [sym_unary_operator] = STATE(4183), + [sym_binary_operator] = STATE(4183), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4183), + [sym_call] = STATE(4183), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4183), + [sym_anonymous_function] = STATE(4183), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2019), + [sym_integer] = ACTIONS(2019), + [sym_float] = ACTIONS(2019), + [sym_char] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102765,86 +102531,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [582] = { - [sym__expression] = STATE(2391), - [sym_block] = STATE(2391), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2391), - [sym_nil] = STATE(2391), - [sym__atom] = STATE(2391), - [sym_quoted_atom] = STATE(2391), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2391), - [sym_charlist] = STATE(2391), - [sym_sigil] = STATE(2391), - [sym_list] = STATE(2391), - [sym_tuple] = STATE(2391), - [sym_bitstring] = STATE(2391), - [sym_map] = STATE(2391), - [sym__nullary_operator] = STATE(2391), - [sym_unary_operator] = STATE(2391), - [sym_binary_operator] = STATE(2391), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2391), - [sym_call] = STATE(2391), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2391), - [sym_anonymous_function] = STATE(2391), + [sym__expression] = STATE(4184), + [sym_block] = STATE(4184), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4184), + [sym_nil] = STATE(4184), + [sym__atom] = STATE(4184), + [sym_quoted_atom] = STATE(4184), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4184), + [sym_charlist] = STATE(4184), + [sym_sigil] = STATE(4184), + [sym_list] = STATE(4184), + [sym_tuple] = STATE(4184), + [sym_bitstring] = STATE(4184), + [sym_map] = STATE(4184), + [sym__nullary_operator] = STATE(4184), + [sym_unary_operator] = STATE(4184), + [sym_binary_operator] = STATE(4184), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4184), + [sym_call] = STATE(4184), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4184), + [sym_anonymous_function] = STATE(4184), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2029), - [sym_integer] = ACTIONS(2029), - [sym_float] = ACTIONS(2029), - [sym_char] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2021), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2021), + [sym_char] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102882,86 +102648,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [583] = { - [sym__expression] = STATE(2389), - [sym_block] = STATE(2389), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2389), - [sym_nil] = STATE(2389), - [sym__atom] = STATE(2389), - [sym_quoted_atom] = STATE(2389), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2389), - [sym_charlist] = STATE(2389), - [sym_sigil] = STATE(2389), - [sym_list] = STATE(2389), - [sym_tuple] = STATE(2389), - [sym_bitstring] = STATE(2389), - [sym_map] = STATE(2389), - [sym__nullary_operator] = STATE(2389), - [sym_unary_operator] = STATE(2389), - [sym_binary_operator] = STATE(2389), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2389), - [sym_call] = STATE(2389), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2389), - [sym_anonymous_function] = STATE(2389), + [sym__expression] = STATE(2672), + [sym_block] = STATE(2672), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2672), + [sym_nil] = STATE(2672), + [sym__atom] = STATE(2672), + [sym_quoted_atom] = STATE(2672), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2672), + [sym_charlist] = STATE(2672), + [sym_sigil] = STATE(2672), + [sym_list] = STATE(2672), + [sym_tuple] = STATE(2672), + [sym_bitstring] = STATE(2672), + [sym_map] = STATE(2672), + [sym__nullary_operator] = STATE(2672), + [sym_unary_operator] = STATE(2672), + [sym_binary_operator] = STATE(2672), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2672), + [sym_call] = STATE(2672), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2672), + [sym_anonymous_function] = STATE(2672), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2031), - [sym_integer] = ACTIONS(2031), - [sym_float] = ACTIONS(2031), - [sym_char] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2023), + [sym_integer] = ACTIONS(2023), + [sym_float] = ACTIONS(2023), + [sym_char] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -102999,86 +102765,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, [584] = { - [sym__expression] = STATE(2386), - [sym_block] = STATE(2386), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2386), - [sym_nil] = STATE(2386), - [sym__atom] = STATE(2386), - [sym_quoted_atom] = STATE(2386), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2386), - [sym_charlist] = STATE(2386), - [sym_sigil] = STATE(2386), - [sym_list] = STATE(2386), - [sym_tuple] = STATE(2386), - [sym_bitstring] = STATE(2386), - [sym_map] = STATE(2386), - [sym__nullary_operator] = STATE(2386), - [sym_unary_operator] = STATE(2386), - [sym_binary_operator] = STATE(2386), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2386), - [sym_call] = STATE(2386), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2386), - [sym_anonymous_function] = STATE(2386), + [sym__expression] = STATE(2380), + [sym_block] = STATE(2380), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2380), + [sym_nil] = STATE(2380), + [sym__atom] = STATE(2380), + [sym_quoted_atom] = STATE(2380), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2380), + [sym_charlist] = STATE(2380), + [sym_sigil] = STATE(2380), + [sym_list] = STATE(2380), + [sym_tuple] = STATE(2380), + [sym_bitstring] = STATE(2380), + [sym_map] = STATE(2380), + [sym__nullary_operator] = STATE(2380), + [sym_unary_operator] = STATE(2380), + [sym_binary_operator] = STATE(2380), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2380), + [sym_call] = STATE(2380), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2380), + [sym_anonymous_function] = STATE(2380), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2033), - [sym_integer] = ACTIONS(2033), - [sym_float] = ACTIONS(2033), - [sym_char] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -103116,86 +102882,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, [585] = { - [sym__expression] = STATE(2385), - [sym_block] = STATE(2385), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2385), - [sym_nil] = STATE(2385), - [sym__atom] = STATE(2385), - [sym_quoted_atom] = STATE(2385), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2385), - [sym_charlist] = STATE(2385), - [sym_sigil] = STATE(2385), - [sym_list] = STATE(2385), - [sym_tuple] = STATE(2385), - [sym_bitstring] = STATE(2385), - [sym_map] = STATE(2385), - [sym__nullary_operator] = STATE(2385), - [sym_unary_operator] = STATE(2385), - [sym_binary_operator] = STATE(2385), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2385), - [sym_call] = STATE(2385), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2385), - [sym_anonymous_function] = STATE(2385), + [sym__expression] = STATE(4188), + [sym_block] = STATE(4188), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4188), + [sym_nil] = STATE(4188), + [sym__atom] = STATE(4188), + [sym_quoted_atom] = STATE(4188), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4188), + [sym_charlist] = STATE(4188), + [sym_sigil] = STATE(4188), + [sym_list] = STATE(4188), + [sym_tuple] = STATE(4188), + [sym_bitstring] = STATE(4188), + [sym_map] = STATE(4188), + [sym__nullary_operator] = STATE(4188), + [sym_unary_operator] = STATE(4188), + [sym_binary_operator] = STATE(4188), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4188), + [sym_call] = STATE(4188), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4188), + [sym_anonymous_function] = STATE(4188), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2035), - [sym_integer] = ACTIONS(2035), - [sym_float] = ACTIONS(2035), - [sym_char] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2025), + [sym_integer] = ACTIONS(2025), + [sym_float] = ACTIONS(2025), + [sym_char] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -103233,86 +102999,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [586] = { - [sym__expression] = STATE(2383), - [sym_block] = STATE(2383), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2383), - [sym_nil] = STATE(2383), - [sym__atom] = STATE(2383), - [sym_quoted_atom] = STATE(2383), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2383), - [sym_charlist] = STATE(2383), - [sym_sigil] = STATE(2383), - [sym_list] = STATE(2383), - [sym_tuple] = STATE(2383), - [sym_bitstring] = STATE(2383), - [sym_map] = STATE(2383), - [sym__nullary_operator] = STATE(2383), - [sym_unary_operator] = STATE(2383), - [sym_binary_operator] = STATE(2383), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2383), - [sym_call] = STATE(2383), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2383), - [sym_anonymous_function] = STATE(2383), + [sym__expression] = STATE(4191), + [sym_block] = STATE(4191), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4191), + [sym_nil] = STATE(4191), + [sym__atom] = STATE(4191), + [sym_quoted_atom] = STATE(4191), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4191), + [sym_charlist] = STATE(4191), + [sym_sigil] = STATE(4191), + [sym_list] = STATE(4191), + [sym_tuple] = STATE(4191), + [sym_bitstring] = STATE(4191), + [sym_map] = STATE(4191), + [sym__nullary_operator] = STATE(4191), + [sym_unary_operator] = STATE(4191), + [sym_binary_operator] = STATE(4191), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4191), + [sym_call] = STATE(4191), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4191), + [sym_anonymous_function] = STATE(4191), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2037), - [sym_integer] = ACTIONS(2037), - [sym_float] = ACTIONS(2037), - [sym_char] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2027), + [sym_char] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -103350,86 +103116,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [587] = { - [sym__expression] = STATE(2382), - [sym_block] = STATE(2382), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2382), - [sym_nil] = STATE(2382), - [sym__atom] = STATE(2382), - [sym_quoted_atom] = STATE(2382), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2382), - [sym_charlist] = STATE(2382), - [sym_sigil] = STATE(2382), - [sym_list] = STATE(2382), - [sym_tuple] = STATE(2382), - [sym_bitstring] = STATE(2382), - [sym_map] = STATE(2382), - [sym__nullary_operator] = STATE(2382), - [sym_unary_operator] = STATE(2382), - [sym_binary_operator] = STATE(2382), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2382), - [sym_call] = STATE(2382), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2382), - [sym_anonymous_function] = STATE(2382), + [sym__expression] = STATE(4192), + [sym_block] = STATE(4192), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4192), + [sym_nil] = STATE(4192), + [sym__atom] = STATE(4192), + [sym_quoted_atom] = STATE(4192), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4192), + [sym_charlist] = STATE(4192), + [sym_sigil] = STATE(4192), + [sym_list] = STATE(4192), + [sym_tuple] = STATE(4192), + [sym_bitstring] = STATE(4192), + [sym_map] = STATE(4192), + [sym__nullary_operator] = STATE(4192), + [sym_unary_operator] = STATE(4192), + [sym_binary_operator] = STATE(4192), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4192), + [sym_call] = STATE(4192), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4192), + [sym_anonymous_function] = STATE(4192), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2039), - [sym_integer] = ACTIONS(2039), - [sym_float] = ACTIONS(2039), - [sym_char] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2039), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2029), + [sym_integer] = ACTIONS(2029), + [sym_float] = ACTIONS(2029), + [sym_char] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -103467,64 +103233,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [588] = { - [sym__expression] = STATE(4443), - [sym_block] = STATE(4443), + [sym__expression] = STATE(4441), + [sym_block] = STATE(4441), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4443), - [sym_nil] = STATE(4443), - [sym__atom] = STATE(4443), - [sym_quoted_atom] = STATE(4443), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4443), - [sym_charlist] = STATE(4443), - [sym_sigil] = STATE(4443), - [sym_list] = STATE(4443), - [sym_tuple] = STATE(4443), - [sym_bitstring] = STATE(4443), - [sym_map] = STATE(4443), - [sym__nullary_operator] = STATE(4443), - [sym_unary_operator] = STATE(4443), - [sym_binary_operator] = STATE(4443), + [sym_boolean] = STATE(4441), + [sym_nil] = STATE(4441), + [sym__atom] = STATE(4441), + [sym_quoted_atom] = STATE(4441), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4441), + [sym_charlist] = STATE(4441), + [sym_sigil] = STATE(4441), + [sym_list] = STATE(4441), + [sym_tuple] = STATE(4441), + [sym_bitstring] = STATE(4441), + [sym_map] = STATE(4441), + [sym__nullary_operator] = STATE(4441), + [sym_unary_operator] = STATE(4441), + [sym_binary_operator] = STATE(4441), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4443), - [sym_call] = STATE(4443), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(4441), + [sym_call] = STATE(4441), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4443), - [sym_anonymous_function] = STATE(4443), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4441), + [sym_anonymous_function] = STATE(4441), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1417), - [sym_integer] = ACTIONS(1417), - [sym_float] = ACTIONS(1417), - [sym_char] = ACTIONS(1417), + [sym_alias] = ACTIONS(1419), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym_char] = ACTIONS(1419), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1417), + [sym_atom] = ACTIONS(1419), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -103593,55 +103359,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1085), }, [589] = { - [sym__expression] = STATE(2379), - [sym_block] = STATE(2379), + [sym__expression] = STATE(2733), + [sym_block] = STATE(2733), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2379), - [sym_nil] = STATE(2379), - [sym__atom] = STATE(2379), - [sym_quoted_atom] = STATE(2379), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2379), - [sym_charlist] = STATE(2379), - [sym_sigil] = STATE(2379), - [sym_list] = STATE(2379), - [sym_tuple] = STATE(2379), - [sym_bitstring] = STATE(2379), - [sym_map] = STATE(2379), - [sym__nullary_operator] = STATE(2379), - [sym_unary_operator] = STATE(2379), - [sym_binary_operator] = STATE(2379), + [sym_boolean] = STATE(2733), + [sym_nil] = STATE(2733), + [sym__atom] = STATE(2733), + [sym_quoted_atom] = STATE(2733), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2733), + [sym_charlist] = STATE(2733), + [sym_sigil] = STATE(2733), + [sym_list] = STATE(2733), + [sym_tuple] = STATE(2733), + [sym_bitstring] = STATE(2733), + [sym_map] = STATE(2733), + [sym__nullary_operator] = STATE(2733), + [sym_unary_operator] = STATE(2733), + [sym_binary_operator] = STATE(2733), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2379), - [sym_call] = STATE(2379), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2733), + [sym_call] = STATE(2733), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2379), - [sym_anonymous_function] = STATE(2379), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2733), + [sym_anonymous_function] = STATE(2733), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2041), - [sym_integer] = ACTIONS(2041), - [sym_float] = ACTIONS(2041), - [sym_char] = ACTIONS(2041), + [sym_alias] = ACTIONS(2031), + [sym_integer] = ACTIONS(2031), + [sym_float] = ACTIONS(2031), + [sym_char] = ACTIONS(2031), [anon_sym_true] = ACTIONS(195), [anon_sym_false] = ACTIONS(195), [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2041), + [sym_atom] = ACTIONS(2031), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), @@ -103710,55 +103476,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [590] = { - [sym__expression] = STATE(2378), - [sym_block] = STATE(2378), + [sym__expression] = STATE(2509), + [sym_block] = STATE(2509), [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2378), - [sym_nil] = STATE(2378), - [sym__atom] = STATE(2378), - [sym_quoted_atom] = STATE(2378), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2378), - [sym_charlist] = STATE(2378), - [sym_sigil] = STATE(2378), - [sym_list] = STATE(2378), - [sym_tuple] = STATE(2378), - [sym_bitstring] = STATE(2378), - [sym_map] = STATE(2378), - [sym__nullary_operator] = STATE(2378), - [sym_unary_operator] = STATE(2378), - [sym_binary_operator] = STATE(2378), + [sym_boolean] = STATE(2509), + [sym_nil] = STATE(2509), + [sym__atom] = STATE(2509), + [sym_quoted_atom] = STATE(2509), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2509), + [sym_charlist] = STATE(2509), + [sym_sigil] = STATE(2509), + [sym_list] = STATE(2509), + [sym_tuple] = STATE(2509), + [sym_bitstring] = STATE(2509), + [sym_map] = STATE(2509), + [sym__nullary_operator] = STATE(2509), + [sym_unary_operator] = STATE(2509), + [sym_binary_operator] = STATE(2509), [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2378), - [sym_call] = STATE(2378), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), + [sym_dot] = STATE(2509), + [sym_call] = STATE(2509), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), [sym__remote_call_without_parentheses] = STATE(1153), [sym__remote_call_with_parentheses] = STATE(1087), [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2378), - [sym_anonymous_function] = STATE(2378), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2509), + [sym_anonymous_function] = STATE(2509), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2043), - [sym_integer] = ACTIONS(2043), - [sym_float] = ACTIONS(2043), - [sym_char] = ACTIONS(2043), + [sym_alias] = ACTIONS(1369), + [sym_integer] = ACTIONS(1369), + [sym_float] = ACTIONS(1369), + [sym_char] = ACTIONS(1369), [anon_sym_true] = ACTIONS(195), [anon_sym_false] = ACTIONS(195), [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2043), + [sym_atom] = ACTIONS(1369), [anon_sym_DQUOTE] = ACTIONS(199), [anon_sym_SQUOTE] = ACTIONS(201), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), @@ -103827,77 +103593,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(231), }, [591] = { - [sym__expression] = STATE(2377), - [sym_block] = STATE(2377), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2377), - [sym_nil] = STATE(2377), - [sym__atom] = STATE(2377), - [sym_quoted_atom] = STATE(2377), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2377), - [sym_charlist] = STATE(2377), - [sym_sigil] = STATE(2377), - [sym_list] = STATE(2377), - [sym_tuple] = STATE(2377), - [sym_bitstring] = STATE(2377), - [sym_map] = STATE(2377), - [sym__nullary_operator] = STATE(2377), - [sym_unary_operator] = STATE(2377), - [sym_binary_operator] = STATE(2377), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2377), - [sym_call] = STATE(2377), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2377), - [sym_anonymous_function] = STATE(2377), + [sym__expression] = STATE(4197), + [sym_block] = STATE(4197), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4197), + [sym_nil] = STATE(4197), + [sym__atom] = STATE(4197), + [sym_quoted_atom] = STATE(4197), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4197), + [sym_charlist] = STATE(4197), + [sym_sigil] = STATE(4197), + [sym_list] = STATE(4197), + [sym_tuple] = STATE(4197), + [sym_bitstring] = STATE(4197), + [sym_map] = STATE(4197), + [sym__nullary_operator] = STATE(4197), + [sym_unary_operator] = STATE(4197), + [sym_binary_operator] = STATE(4197), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4197), + [sym_call] = STATE(4197), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4197), + [sym_anonymous_function] = STATE(4197), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2045), - [sym_integer] = ACTIONS(2045), - [sym_float] = ACTIONS(2045), - [sym_char] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_char] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), + [sym_atom] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -103935,86 +103701,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(844), }, [592] = { - [sym__expression] = STATE(2376), - [sym_block] = STATE(2376), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2376), - [sym_nil] = STATE(2376), - [sym__atom] = STATE(2376), - [sym_quoted_atom] = STATE(2376), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2376), - [sym_charlist] = STATE(2376), - [sym_sigil] = STATE(2376), - [sym_list] = STATE(2376), - [sym_tuple] = STATE(2376), - [sym_bitstring] = STATE(2376), - [sym_map] = STATE(2376), - [sym__nullary_operator] = STATE(2376), - [sym_unary_operator] = STATE(2376), - [sym_binary_operator] = STATE(2376), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2376), - [sym_call] = STATE(2376), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2376), - [sym_anonymous_function] = STATE(2376), + [sym__expression] = STATE(4424), + [sym_block] = STATE(4424), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4424), + [sym_nil] = STATE(4424), + [sym__atom] = STATE(4424), + [sym_quoted_atom] = STATE(4424), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4424), + [sym_charlist] = STATE(4424), + [sym_sigil] = STATE(4424), + [sym_list] = STATE(4424), + [sym_tuple] = STATE(4424), + [sym_bitstring] = STATE(4424), + [sym_map] = STATE(4424), + [sym__nullary_operator] = STATE(4424), + [sym_unary_operator] = STATE(4424), + [sym_binary_operator] = STATE(4424), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4424), + [sym_call] = STATE(4424), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4424), + [sym_anonymous_function] = STATE(4424), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2047), - [sym_integer] = ACTIONS(2047), - [sym_float] = ACTIONS(2047), - [sym_char] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2035), + [sym_integer] = ACTIONS(2035), + [sym_float] = ACTIONS(2035), + [sym_char] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104052,86 +103818,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(1135), }, [593] = { - [sym__expression] = STATE(2898), - [sym_block] = STATE(2898), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2898), - [sym_nil] = STATE(2898), - [sym__atom] = STATE(2898), - [sym_quoted_atom] = STATE(2898), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2898), - [sym_charlist] = STATE(2898), - [sym_sigil] = STATE(2898), - [sym_list] = STATE(2898), - [sym_tuple] = STATE(2898), - [sym_bitstring] = STATE(2898), - [sym_map] = STATE(2898), - [sym__nullary_operator] = STATE(2898), - [sym_unary_operator] = STATE(2898), - [sym_binary_operator] = STATE(2898), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2898), - [sym_call] = STATE(2898), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2898), - [sym_anonymous_function] = STATE(2898), + [sym__expression] = STATE(4541), + [sym_block] = STATE(4541), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4541), + [sym_nil] = STATE(4541), + [sym__atom] = STATE(4541), + [sym_quoted_atom] = STATE(4541), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4541), + [sym_charlist] = STATE(4541), + [sym_sigil] = STATE(4541), + [sym_list] = STATE(4541), + [sym_tuple] = STATE(4541), + [sym_bitstring] = STATE(4541), + [sym_map] = STATE(4541), + [sym__nullary_operator] = STATE(4541), + [sym_unary_operator] = STATE(4541), + [sym_binary_operator] = STATE(4541), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4541), + [sym_call] = STATE(4541), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4541), + [sym_anonymous_function] = STATE(4541), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1357), - [sym_integer] = ACTIONS(1357), - [sym_float] = ACTIONS(1357), - [sym_char] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2037), + [sym_integer] = ACTIONS(2037), + [sym_float] = ACTIONS(2037), + [sym_char] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104169,86 +103935,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1135), }, [594] = { - [sym__expression] = STATE(2375), - [sym_block] = STATE(2375), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2375), - [sym_nil] = STATE(2375), - [sym__atom] = STATE(2375), - [sym_quoted_atom] = STATE(2375), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2375), - [sym_charlist] = STATE(2375), - [sym_sigil] = STATE(2375), - [sym_list] = STATE(2375), - [sym_tuple] = STATE(2375), - [sym_bitstring] = STATE(2375), - [sym_map] = STATE(2375), - [sym__nullary_operator] = STATE(2375), - [sym_unary_operator] = STATE(2375), - [sym_binary_operator] = STATE(2375), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2375), - [sym_call] = STATE(2375), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2375), - [sym_anonymous_function] = STATE(2375), + [sym__expression] = STATE(3490), + [sym_block] = STATE(3490), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3490), + [sym_nil] = STATE(3490), + [sym__atom] = STATE(3490), + [sym_quoted_atom] = STATE(3490), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3490), + [sym_charlist] = STATE(3490), + [sym_sigil] = STATE(3490), + [sym_list] = STATE(3490), + [sym_tuple] = STATE(3490), + [sym_bitstring] = STATE(3490), + [sym_map] = STATE(3490), + [sym__nullary_operator] = STATE(3490), + [sym_unary_operator] = STATE(3490), + [sym_binary_operator] = STATE(3490), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3490), + [sym_call] = STATE(3490), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3490), + [sym_anonymous_function] = STATE(3490), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2049), - [sym_integer] = ACTIONS(2049), - [sym_float] = ACTIONS(2049), - [sym_char] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2039), + [sym_char] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104286,86 +104052,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(532), }, [595] = { - [sym__expression] = STATE(2374), - [sym_block] = STATE(2374), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2374), - [sym_nil] = STATE(2374), - [sym__atom] = STATE(2374), - [sym_quoted_atom] = STATE(2374), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2374), - [sym_charlist] = STATE(2374), - [sym_sigil] = STATE(2374), - [sym_list] = STATE(2374), - [sym_tuple] = STATE(2374), - [sym_bitstring] = STATE(2374), - [sym_map] = STATE(2374), - [sym__nullary_operator] = STATE(2374), - [sym_unary_operator] = STATE(2374), - [sym_binary_operator] = STATE(2374), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2374), - [sym_call] = STATE(2374), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2374), - [sym_anonymous_function] = STATE(2374), + [sym__expression] = STATE(4437), + [sym_block] = STATE(4437), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4437), + [sym_nil] = STATE(4437), + [sym__atom] = STATE(4437), + [sym_quoted_atom] = STATE(4437), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4437), + [sym_charlist] = STATE(4437), + [sym_sigil] = STATE(4437), + [sym_list] = STATE(4437), + [sym_tuple] = STATE(4437), + [sym_bitstring] = STATE(4437), + [sym_map] = STATE(4437), + [sym__nullary_operator] = STATE(4437), + [sym_unary_operator] = STATE(4437), + [sym_binary_operator] = STATE(4437), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4437), + [sym_call] = STATE(4437), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4437), + [sym_anonymous_function] = STATE(4437), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2051), - [sym_integer] = ACTIONS(2051), - [sym_float] = ACTIONS(2051), - [sym_char] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2041), + [sym_integer] = ACTIONS(2041), + [sym_float] = ACTIONS(2041), + [sym_char] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104403,86 +104169,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(1135), }, [596] = { - [sym__expression] = STATE(2373), - [sym_block] = STATE(2373), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2373), - [sym_nil] = STATE(2373), - [sym__atom] = STATE(2373), - [sym_quoted_atom] = STATE(2373), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2373), - [sym_charlist] = STATE(2373), - [sym_sigil] = STATE(2373), - [sym_list] = STATE(2373), - [sym_tuple] = STATE(2373), - [sym_bitstring] = STATE(2373), - [sym_map] = STATE(2373), - [sym__nullary_operator] = STATE(2373), - [sym_unary_operator] = STATE(2373), - [sym_binary_operator] = STATE(2373), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2373), - [sym_call] = STATE(2373), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2373), - [sym_anonymous_function] = STATE(2373), + [sym__expression] = STATE(4113), + [sym_block] = STATE(4113), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4113), + [sym_nil] = STATE(4113), + [sym__atom] = STATE(4113), + [sym_quoted_atom] = STATE(4113), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4113), + [sym_charlist] = STATE(4113), + [sym_sigil] = STATE(4113), + [sym_list] = STATE(4113), + [sym_tuple] = STATE(4113), + [sym_bitstring] = STATE(4113), + [sym_map] = STATE(4113), + [sym__nullary_operator] = STATE(4113), + [sym_unary_operator] = STATE(4113), + [sym_binary_operator] = STATE(4113), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4113), + [sym_call] = STATE(4113), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4113), + [sym_anonymous_function] = STATE(4113), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2053), - [sym_integer] = ACTIONS(2053), - [sym_float] = ACTIONS(2053), - [sym_char] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2043), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2043), + [sym_char] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104520,86 +104286,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(958), }, [597] = { - [sym__expression] = STATE(2372), - [sym_block] = STATE(2372), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2372), - [sym_nil] = STATE(2372), - [sym__atom] = STATE(2372), - [sym_quoted_atom] = STATE(2372), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2372), - [sym_charlist] = STATE(2372), - [sym_sigil] = STATE(2372), - [sym_list] = STATE(2372), - [sym_tuple] = STATE(2372), - [sym_bitstring] = STATE(2372), - [sym_map] = STATE(2372), - [sym__nullary_operator] = STATE(2372), - [sym_unary_operator] = STATE(2372), - [sym_binary_operator] = STATE(2372), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2372), - [sym_call] = STATE(2372), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2372), - [sym_anonymous_function] = STATE(2372), + [sym__expression] = STATE(4114), + [sym_block] = STATE(4114), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4114), + [sym_nil] = STATE(4114), + [sym__atom] = STATE(4114), + [sym_quoted_atom] = STATE(4114), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4114), + [sym_charlist] = STATE(4114), + [sym_sigil] = STATE(4114), + [sym_list] = STATE(4114), + [sym_tuple] = STATE(4114), + [sym_bitstring] = STATE(4114), + [sym_map] = STATE(4114), + [sym__nullary_operator] = STATE(4114), + [sym_unary_operator] = STATE(4114), + [sym_binary_operator] = STATE(4114), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4114), + [sym_call] = STATE(4114), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4114), + [sym_anonymous_function] = STATE(4114), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2055), - [sym_integer] = ACTIONS(2055), - [sym_float] = ACTIONS(2055), - [sym_char] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2045), + [sym_integer] = ACTIONS(2045), + [sym_float] = ACTIONS(2045), + [sym_char] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104637,86 +104403,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(958), }, [598] = { - [sym__expression] = STATE(2371), - [sym_block] = STATE(2371), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2371), - [sym_nil] = STATE(2371), - [sym__atom] = STATE(2371), - [sym_quoted_atom] = STATE(2371), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2371), - [sym_charlist] = STATE(2371), - [sym_sigil] = STATE(2371), - [sym_list] = STATE(2371), - [sym_tuple] = STATE(2371), - [sym_bitstring] = STATE(2371), - [sym_map] = STATE(2371), - [sym__nullary_operator] = STATE(2371), - [sym_unary_operator] = STATE(2371), - [sym_binary_operator] = STATE(2371), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2371), - [sym_call] = STATE(2371), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2371), - [sym_anonymous_function] = STATE(2371), + [sym__expression] = STATE(4116), + [sym_block] = STATE(4116), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4116), + [sym_nil] = STATE(4116), + [sym__atom] = STATE(4116), + [sym_quoted_atom] = STATE(4116), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4116), + [sym_charlist] = STATE(4116), + [sym_sigil] = STATE(4116), + [sym_list] = STATE(4116), + [sym_tuple] = STATE(4116), + [sym_bitstring] = STATE(4116), + [sym_map] = STATE(4116), + [sym__nullary_operator] = STATE(4116), + [sym_unary_operator] = STATE(4116), + [sym_binary_operator] = STATE(4116), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4116), + [sym_call] = STATE(4116), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4116), + [sym_anonymous_function] = STATE(4116), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2057), - [sym_integer] = ACTIONS(2057), - [sym_float] = ACTIONS(2057), - [sym_char] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2057), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2047), + [sym_integer] = ACTIONS(2047), + [sym_float] = ACTIONS(2047), + [sym_char] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104754,86 +104520,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(958), }, [599] = { - [sym__expression] = STATE(2370), - [sym_block] = STATE(2370), - [sym_identifier] = STATE(45), - [sym_boolean] = STATE(2370), - [sym_nil] = STATE(2370), - [sym__atom] = STATE(2370), - [sym_quoted_atom] = STATE(2370), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(2370), - [sym_charlist] = STATE(2370), - [sym_sigil] = STATE(2370), - [sym_list] = STATE(2370), - [sym_tuple] = STATE(2370), - [sym_bitstring] = STATE(2370), - [sym_map] = STATE(2370), - [sym__nullary_operator] = STATE(2370), - [sym_unary_operator] = STATE(2370), - [sym_binary_operator] = STATE(2370), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(2370), - [sym_call] = STATE(2370), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(44), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(2370), - [sym_anonymous_function] = STATE(2370), + [sym__expression] = STATE(3150), + [sym_block] = STATE(3150), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3150), + [sym_nil] = STATE(3150), + [sym__atom] = STATE(3150), + [sym_quoted_atom] = STATE(3150), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3150), + [sym_charlist] = STATE(3150), + [sym_sigil] = STATE(3150), + [sym_list] = STATE(3150), + [sym_tuple] = STATE(3150), + [sym_bitstring] = STATE(3150), + [sym_map] = STATE(3150), + [sym__nullary_operator] = STATE(3150), + [sym_unary_operator] = STATE(3150), + [sym_binary_operator] = STATE(3150), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3150), + [sym_call] = STATE(3150), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3150), + [sym_anonymous_function] = STATE(3150), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2059), - [sym_integer] = ACTIONS(2059), - [sym_float] = ACTIONS(2059), - [sym_char] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(1427), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym_char] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(471), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(477), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_CARET] = ACTIONS(477), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), - [anon_sym_not] = ACTIONS(477), - [anon_sym_AT] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104871,86 +104637,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(481), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(532), }, [600] = { - [sym__expression] = STATE(2660), - [sym_block] = STATE(2660), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2660), - [sym_nil] = STATE(2660), - [sym__atom] = STATE(2660), - [sym_quoted_atom] = STATE(2660), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2660), - [sym_charlist] = STATE(2660), - [sym_sigil] = STATE(2660), - [sym_list] = STATE(2660), - [sym_tuple] = STATE(2660), - [sym_bitstring] = STATE(2660), - [sym_map] = STATE(2660), - [sym__nullary_operator] = STATE(2660), - [sym_unary_operator] = STATE(2660), - [sym_binary_operator] = STATE(2660), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2660), - [sym_call] = STATE(2660), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2660), - [sym_anonymous_function] = STATE(2660), + [sym__expression] = STATE(4549), + [sym_block] = STATE(4549), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4549), + [sym_nil] = STATE(4549), + [sym__atom] = STATE(4549), + [sym_quoted_atom] = STATE(4549), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4549), + [sym_charlist] = STATE(4549), + [sym_sigil] = STATE(4549), + [sym_list] = STATE(4549), + [sym_tuple] = STATE(4549), + [sym_bitstring] = STATE(4549), + [sym_map] = STATE(4549), + [sym__nullary_operator] = STATE(4549), + [sym_unary_operator] = STATE(4549), + [sym_binary_operator] = STATE(4549), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4549), + [sym_call] = STATE(4549), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4549), + [sym_anonymous_function] = STATE(4549), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2061), - [sym_integer] = ACTIONS(2061), - [sym_float] = ACTIONS(2061), - [sym_char] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2049), + [sym_char] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -104988,86 +104754,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1135), }, [601] = { - [sym__expression] = STATE(3926), - [sym_block] = STATE(3926), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3926), - [sym_nil] = STATE(3926), - [sym__atom] = STATE(3926), - [sym_quoted_atom] = STATE(3926), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3926), - [sym_charlist] = STATE(3926), - [sym_sigil] = STATE(3926), - [sym_list] = STATE(3926), - [sym_tuple] = STATE(3926), - [sym_bitstring] = STATE(3926), - [sym_map] = STATE(3926), - [sym__nullary_operator] = STATE(3926), - [sym_unary_operator] = STATE(3926), - [sym_binary_operator] = STATE(3926), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3926), - [sym_call] = STATE(3926), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3926), - [sym_anonymous_function] = STATE(3926), + [sym__expression] = STATE(4117), + [sym_block] = STATE(4117), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4117), + [sym_nil] = STATE(4117), + [sym__atom] = STATE(4117), + [sym_quoted_atom] = STATE(4117), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4117), + [sym_charlist] = STATE(4117), + [sym_sigil] = STATE(4117), + [sym_list] = STATE(4117), + [sym_tuple] = STATE(4117), + [sym_bitstring] = STATE(4117), + [sym_map] = STATE(4117), + [sym__nullary_operator] = STATE(4117), + [sym_unary_operator] = STATE(4117), + [sym_binary_operator] = STATE(4117), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4117), + [sym_call] = STATE(4117), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4117), + [sym_anonymous_function] = STATE(4117), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(1421), - [sym_integer] = ACTIONS(1421), - [sym_float] = ACTIONS(1421), - [sym_char] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2051), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2051), + [sym_char] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105105,86 +104871,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [602] = { - [sym__expression] = STATE(4576), - [sym_block] = STATE(4576), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4576), - [sym_nil] = STATE(4576), - [sym__atom] = STATE(4576), - [sym_quoted_atom] = STATE(4576), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4576), - [sym_charlist] = STATE(4576), - [sym_sigil] = STATE(4576), - [sym_list] = STATE(4576), - [sym_tuple] = STATE(4576), - [sym_bitstring] = STATE(4576), - [sym_map] = STATE(4576), - [sym__nullary_operator] = STATE(4576), - [sym_unary_operator] = STATE(4576), - [sym_binary_operator] = STATE(4576), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4576), - [sym_call] = STATE(4576), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4576), - [sym_anonymous_function] = STATE(4576), + [sym__expression] = STATE(4439), + [sym_block] = STATE(4439), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4439), + [sym_nil] = STATE(4439), + [sym__atom] = STATE(4439), + [sym_quoted_atom] = STATE(4439), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4439), + [sym_charlist] = STATE(4439), + [sym_sigil] = STATE(4439), + [sym_list] = STATE(4439), + [sym_tuple] = STATE(4439), + [sym_bitstring] = STATE(4439), + [sym_map] = STATE(4439), + [sym__nullary_operator] = STATE(4439), + [sym_unary_operator] = STATE(4439), + [sym_binary_operator] = STATE(4439), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4439), + [sym_call] = STATE(4439), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4439), + [sym_anonymous_function] = STATE(4439), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2063), - [sym_integer] = ACTIONS(2063), - [sym_float] = ACTIONS(2063), - [sym_char] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2053), + [sym_integer] = ACTIONS(2053), + [sym_float] = ACTIONS(2053), + [sym_char] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105222,86 +104988,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(1135), }, [603] = { - [sym__expression] = STATE(4570), - [sym_block] = STATE(4570), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4570), - [sym_nil] = STATE(4570), - [sym__atom] = STATE(4570), - [sym_quoted_atom] = STATE(4570), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4570), - [sym_charlist] = STATE(4570), - [sym_sigil] = STATE(4570), - [sym_list] = STATE(4570), - [sym_tuple] = STATE(4570), - [sym_bitstring] = STATE(4570), - [sym_map] = STATE(4570), - [sym__nullary_operator] = STATE(4570), - [sym_unary_operator] = STATE(4570), - [sym_binary_operator] = STATE(4570), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4570), - [sym_call] = STATE(4570), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4570), - [sym_anonymous_function] = STATE(4570), + [sym__expression] = STATE(4118), + [sym_block] = STATE(4118), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4118), + [sym_nil] = STATE(4118), + [sym__atom] = STATE(4118), + [sym_quoted_atom] = STATE(4118), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4118), + [sym_charlist] = STATE(4118), + [sym_sigil] = STATE(4118), + [sym_list] = STATE(4118), + [sym_tuple] = STATE(4118), + [sym_bitstring] = STATE(4118), + [sym_map] = STATE(4118), + [sym__nullary_operator] = STATE(4118), + [sym_unary_operator] = STATE(4118), + [sym_binary_operator] = STATE(4118), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4118), + [sym_call] = STATE(4118), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4118), + [sym_anonymous_function] = STATE(4118), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2065), - [sym_integer] = ACTIONS(2065), - [sym_float] = ACTIONS(2065), - [sym_char] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2065), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2055), + [sym_char] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105339,86 +105105,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(958), }, [604] = { - [sym__expression] = STATE(3821), - [sym_block] = STATE(3821), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3821), - [sym_nil] = STATE(3821), - [sym__atom] = STATE(3821), - [sym_quoted_atom] = STATE(3821), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3821), - [sym_charlist] = STATE(3821), - [sym_sigil] = STATE(3821), - [sym_list] = STATE(3821), - [sym_tuple] = STATE(3821), - [sym_bitstring] = STATE(3821), - [sym_map] = STATE(3821), - [sym__nullary_operator] = STATE(3821), - [sym_unary_operator] = STATE(3821), - [sym_binary_operator] = STATE(3821), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3821), - [sym_call] = STATE(3821), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3821), - [sym_anonymous_function] = STATE(3821), + [sym__expression] = STATE(4440), + [sym_block] = STATE(4440), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4440), + [sym_nil] = STATE(4440), + [sym__atom] = STATE(4440), + [sym_quoted_atom] = STATE(4440), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4440), + [sym_charlist] = STATE(4440), + [sym_sigil] = STATE(4440), + [sym_list] = STATE(4440), + [sym_tuple] = STATE(4440), + [sym_bitstring] = STATE(4440), + [sym_map] = STATE(4440), + [sym__nullary_operator] = STATE(4440), + [sym_unary_operator] = STATE(4440), + [sym_binary_operator] = STATE(4440), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4440), + [sym_call] = STATE(4440), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4440), + [sym_anonymous_function] = STATE(4440), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2067), - [sym_integer] = ACTIONS(2067), - [sym_float] = ACTIONS(2067), - [sym_char] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2057), + [sym_integer] = ACTIONS(2057), + [sym_float] = ACTIONS(2057), + [sym_char] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105456,86 +105222,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1135), }, [605] = { - [sym__expression] = STATE(3401), - [sym_block] = STATE(3401), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3401), - [sym_nil] = STATE(3401), - [sym__atom] = STATE(3401), - [sym_quoted_atom] = STATE(3401), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3401), - [sym_charlist] = STATE(3401), - [sym_sigil] = STATE(3401), - [sym_list] = STATE(3401), - [sym_tuple] = STATE(3401), - [sym_bitstring] = STATE(3401), - [sym_map] = STATE(3401), - [sym__nullary_operator] = STATE(3401), - [sym_unary_operator] = STATE(3401), - [sym_binary_operator] = STATE(3401), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3401), - [sym_call] = STATE(3401), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3401), - [sym_anonymous_function] = STATE(3401), + [sym__expression] = STATE(4422), + [sym_block] = STATE(4422), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4422), + [sym_nil] = STATE(4422), + [sym__atom] = STATE(4422), + [sym_quoted_atom] = STATE(4422), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4422), + [sym_charlist] = STATE(4422), + [sym_sigil] = STATE(4422), + [sym_list] = STATE(4422), + [sym_tuple] = STATE(4422), + [sym_bitstring] = STATE(4422), + [sym_map] = STATE(4422), + [sym__nullary_operator] = STATE(4422), + [sym_unary_operator] = STATE(4422), + [sym_binary_operator] = STATE(4422), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4422), + [sym_call] = STATE(4422), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4422), + [sym_anonymous_function] = STATE(4422), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1463), - [sym_integer] = ACTIONS(1463), - [sym_float] = ACTIONS(1463), - [sym_char] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2059), + [sym_integer] = ACTIONS(2059), + [sym_float] = ACTIONS(2059), + [sym_char] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105573,86 +105339,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(1135), }, [606] = { - [sym__expression] = STATE(3477), - [sym_block] = STATE(3477), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3477), - [sym_nil] = STATE(3477), - [sym__atom] = STATE(3477), - [sym_quoted_atom] = STATE(3477), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3477), - [sym_charlist] = STATE(3477), - [sym_sigil] = STATE(3477), - [sym_list] = STATE(3477), - [sym_tuple] = STATE(3477), - [sym_bitstring] = STATE(3477), - [sym_map] = STATE(3477), - [sym__nullary_operator] = STATE(3477), - [sym_unary_operator] = STATE(3477), - [sym_binary_operator] = STATE(3477), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3477), - [sym_call] = STATE(3477), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3477), - [sym_anonymous_function] = STATE(3477), + [sym__expression] = STATE(2234), + [sym_block] = STATE(2234), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(2234), + [sym_nil] = STATE(2234), + [sym__atom] = STATE(2234), + [sym_quoted_atom] = STATE(2234), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2234), + [sym_charlist] = STATE(2234), + [sym_sigil] = STATE(2234), + [sym_list] = STATE(2234), + [sym_tuple] = STATE(2234), + [sym_bitstring] = STATE(2234), + [sym_map] = STATE(2234), + [sym__nullary_operator] = STATE(2234), + [sym_unary_operator] = STATE(2234), + [sym_binary_operator] = STATE(2234), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2234), + [sym_call] = STATE(2234), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2234), + [sym_anonymous_function] = STATE(2234), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2069), - [sym_integer] = ACTIONS(2069), - [sym_float] = ACTIONS(2069), - [sym_char] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [sym_alias] = ACTIONS(2061), + [sym_integer] = ACTIONS(2061), + [sym_float] = ACTIONS(2061), + [sym_char] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105690,86 +105456,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(407), }, [607] = { - [sym__expression] = STATE(4555), - [sym_block] = STATE(4555), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4555), - [sym_nil] = STATE(4555), - [sym__atom] = STATE(4555), - [sym_quoted_atom] = STATE(4555), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4555), - [sym_charlist] = STATE(4555), - [sym_sigil] = STATE(4555), - [sym_list] = STATE(4555), - [sym_tuple] = STATE(4555), - [sym_bitstring] = STATE(4555), - [sym_map] = STATE(4555), - [sym__nullary_operator] = STATE(4555), - [sym_unary_operator] = STATE(4555), - [sym_binary_operator] = STATE(4555), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4555), - [sym_call] = STATE(4555), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4555), - [sym_anonymous_function] = STATE(4555), + [sym__expression] = STATE(3615), + [sym_block] = STATE(3615), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3615), + [sym_nil] = STATE(3615), + [sym__atom] = STATE(3615), + [sym_quoted_atom] = STATE(3615), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3615), + [sym_charlist] = STATE(3615), + [sym_sigil] = STATE(3615), + [sym_list] = STATE(3615), + [sym_tuple] = STATE(3615), + [sym_bitstring] = STATE(3615), + [sym_map] = STATE(3615), + [sym__nullary_operator] = STATE(3615), + [sym_unary_operator] = STATE(3615), + [sym_binary_operator] = STATE(3615), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3615), + [sym_call] = STATE(3615), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3615), + [sym_anonymous_function] = STATE(3615), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2071), - [sym_integer] = ACTIONS(2071), - [sym_float] = ACTIONS(2071), - [sym_char] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2063), + [sym_integer] = ACTIONS(2063), + [sym_float] = ACTIONS(2063), + [sym_char] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105807,86 +105573,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(407), }, [608] = { - [sym__expression] = STATE(3489), - [sym_block] = STATE(3489), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3489), - [sym_nil] = STATE(3489), - [sym__atom] = STATE(3489), - [sym_quoted_atom] = STATE(3489), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3489), - [sym_charlist] = STATE(3489), - [sym_sigil] = STATE(3489), - [sym_list] = STATE(3489), - [sym_tuple] = STATE(3489), - [sym_bitstring] = STATE(3489), - [sym_map] = STATE(3489), - [sym__nullary_operator] = STATE(3489), - [sym_unary_operator] = STATE(3489), - [sym_binary_operator] = STATE(3489), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3489), - [sym_call] = STATE(3489), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3489), - [sym_anonymous_function] = STATE(3489), + [sym__expression] = STATE(3617), + [sym_block] = STATE(3617), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3617), + [sym_nil] = STATE(3617), + [sym__atom] = STATE(3617), + [sym_quoted_atom] = STATE(3617), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3617), + [sym_charlist] = STATE(3617), + [sym_sigil] = STATE(3617), + [sym_list] = STATE(3617), + [sym_tuple] = STATE(3617), + [sym_bitstring] = STATE(3617), + [sym_map] = STATE(3617), + [sym__nullary_operator] = STATE(3617), + [sym_unary_operator] = STATE(3617), + [sym_binary_operator] = STATE(3617), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3617), + [sym_call] = STATE(3617), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3617), + [sym_anonymous_function] = STATE(3617), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(1503), - [sym_integer] = ACTIONS(1503), - [sym_float] = ACTIONS(1503), - [sym_char] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2065), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2065), + [sym_char] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -105924,86 +105690,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(407), }, [609] = { - [sym__expression] = STATE(4384), - [sym_block] = STATE(4384), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4384), - [sym_nil] = STATE(4384), - [sym__atom] = STATE(4384), - [sym_quoted_atom] = STATE(4384), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4384), - [sym_charlist] = STATE(4384), - [sym_sigil] = STATE(4384), - [sym_list] = STATE(4384), - [sym_tuple] = STATE(4384), - [sym_bitstring] = STATE(4384), - [sym_map] = STATE(4384), - [sym__nullary_operator] = STATE(4384), - [sym_unary_operator] = STATE(4384), - [sym_binary_operator] = STATE(4384), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4384), - [sym_call] = STATE(4384), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4384), - [sym_anonymous_function] = STATE(4384), + [sym__expression] = STATE(3618), + [sym_block] = STATE(3618), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3618), + [sym_nil] = STATE(3618), + [sym__atom] = STATE(3618), + [sym_quoted_atom] = STATE(3618), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3618), + [sym_charlist] = STATE(3618), + [sym_sigil] = STATE(3618), + [sym_list] = STATE(3618), + [sym_tuple] = STATE(3618), + [sym_bitstring] = STATE(3618), + [sym_map] = STATE(3618), + [sym__nullary_operator] = STATE(3618), + [sym_unary_operator] = STATE(3618), + [sym_binary_operator] = STATE(3618), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3618), + [sym_call] = STATE(3618), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3618), + [sym_anonymous_function] = STATE(3618), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2073), - [sym_integer] = ACTIONS(2073), - [sym_float] = ACTIONS(2073), - [sym_char] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2073), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2067), + [sym_integer] = ACTIONS(2067), + [sym_float] = ACTIONS(2067), + [sym_char] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106041,86 +105807,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(407), }, [610] = { - [sym__expression] = STATE(4170), - [sym_block] = STATE(4170), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4170), - [sym_nil] = STATE(4170), - [sym__atom] = STATE(4170), - [sym_quoted_atom] = STATE(4170), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4170), - [sym_charlist] = STATE(4170), - [sym_sigil] = STATE(4170), - [sym_list] = STATE(4170), - [sym_tuple] = STATE(4170), - [sym_bitstring] = STATE(4170), - [sym_map] = STATE(4170), - [sym__nullary_operator] = STATE(4170), - [sym_unary_operator] = STATE(4170), - [sym_binary_operator] = STATE(4170), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4170), - [sym_call] = STATE(4170), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4170), - [sym_anonymous_function] = STATE(4170), + [sym__expression] = STATE(3619), + [sym_block] = STATE(3619), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3619), + [sym_nil] = STATE(3619), + [sym__atom] = STATE(3619), + [sym_quoted_atom] = STATE(3619), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3619), + [sym_charlist] = STATE(3619), + [sym_sigil] = STATE(3619), + [sym_list] = STATE(3619), + [sym_tuple] = STATE(3619), + [sym_bitstring] = STATE(3619), + [sym_map] = STATE(3619), + [sym__nullary_operator] = STATE(3619), + [sym_unary_operator] = STATE(3619), + [sym_binary_operator] = STATE(3619), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3619), + [sym_call] = STATE(3619), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3619), + [sym_anonymous_function] = STATE(3619), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2075), - [sym_integer] = ACTIONS(2075), - [sym_float] = ACTIONS(2075), - [sym_char] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2069), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2069), + [sym_char] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106158,86 +105924,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(407), }, [611] = { - [sym__expression] = STATE(2204), - [sym_block] = STATE(2204), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2204), - [sym_nil] = STATE(2204), - [sym__atom] = STATE(2204), - [sym_quoted_atom] = STATE(2204), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2204), - [sym_charlist] = STATE(2204), - [sym_sigil] = STATE(2204), - [sym_list] = STATE(2204), - [sym_tuple] = STATE(2204), - [sym_bitstring] = STATE(2204), - [sym_map] = STATE(2204), - [sym__nullary_operator] = STATE(2204), - [sym_unary_operator] = STATE(2204), - [sym_binary_operator] = STATE(2204), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2204), - [sym_call] = STATE(2204), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2204), - [sym_anonymous_function] = STATE(2204), + [sym__expression] = STATE(3620), + [sym_block] = STATE(3620), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3620), + [sym_nil] = STATE(3620), + [sym__atom] = STATE(3620), + [sym_quoted_atom] = STATE(3620), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3620), + [sym_charlist] = STATE(3620), + [sym_sigil] = STATE(3620), + [sym_list] = STATE(3620), + [sym_tuple] = STATE(3620), + [sym_bitstring] = STATE(3620), + [sym_map] = STATE(3620), + [sym__nullary_operator] = STATE(3620), + [sym_unary_operator] = STATE(3620), + [sym_binary_operator] = STATE(3620), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3620), + [sym_call] = STATE(3620), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3620), + [sym_anonymous_function] = STATE(3620), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2077), - [sym_integer] = ACTIONS(2077), - [sym_float] = ACTIONS(2077), - [sym_char] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2071), + [sym_integer] = ACTIONS(2071), + [sym_float] = ACTIONS(2071), + [sym_char] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106275,86 +106041,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, [612] = { - [sym__expression] = STATE(4571), - [sym_block] = STATE(4571), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(4571), - [sym_nil] = STATE(4571), - [sym__atom] = STATE(4571), - [sym_quoted_atom] = STATE(4571), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4571), - [sym_charlist] = STATE(4571), - [sym_sigil] = STATE(4571), - [sym_list] = STATE(4571), - [sym_tuple] = STATE(4571), - [sym_bitstring] = STATE(4571), - [sym_map] = STATE(4571), - [sym__nullary_operator] = STATE(4571), - [sym_unary_operator] = STATE(4571), - [sym_binary_operator] = STATE(4571), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4571), - [sym_call] = STATE(4571), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4571), - [sym_anonymous_function] = STATE(4571), + [sym__expression] = STATE(3621), + [sym_block] = STATE(3621), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3621), + [sym_nil] = STATE(3621), + [sym__atom] = STATE(3621), + [sym_quoted_atom] = STATE(3621), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3621), + [sym_charlist] = STATE(3621), + [sym_sigil] = STATE(3621), + [sym_list] = STATE(3621), + [sym_tuple] = STATE(3621), + [sym_bitstring] = STATE(3621), + [sym_map] = STATE(3621), + [sym__nullary_operator] = STATE(3621), + [sym_unary_operator] = STATE(3621), + [sym_binary_operator] = STATE(3621), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3621), + [sym_call] = STATE(3621), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3621), + [sym_anonymous_function] = STATE(3621), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2079), - [sym_integer] = ACTIONS(2079), - [sym_float] = ACTIONS(2079), - [sym_char] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2073), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2073), + [sym_char] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106392,86 +106158,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(407), }, [613] = { - [sym__expression] = STATE(4357), - [sym_block] = STATE(4357), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4357), - [sym_nil] = STATE(4357), - [sym__atom] = STATE(4357), - [sym_quoted_atom] = STATE(4357), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4357), - [sym_charlist] = STATE(4357), - [sym_sigil] = STATE(4357), - [sym_list] = STATE(4357), - [sym_tuple] = STATE(4357), - [sym_bitstring] = STATE(4357), - [sym_map] = STATE(4357), - [sym__nullary_operator] = STATE(4357), - [sym_unary_operator] = STATE(4357), - [sym_binary_operator] = STATE(4357), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4357), - [sym_call] = STATE(4357), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4357), - [sym_anonymous_function] = STATE(4357), + [sym__expression] = STATE(3622), + [sym_block] = STATE(3622), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3622), + [sym_nil] = STATE(3622), + [sym__atom] = STATE(3622), + [sym_quoted_atom] = STATE(3622), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3622), + [sym_charlist] = STATE(3622), + [sym_sigil] = STATE(3622), + [sym_list] = STATE(3622), + [sym_tuple] = STATE(3622), + [sym_bitstring] = STATE(3622), + [sym_map] = STATE(3622), + [sym__nullary_operator] = STATE(3622), + [sym_unary_operator] = STATE(3622), + [sym_binary_operator] = STATE(3622), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3622), + [sym_call] = STATE(3622), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3622), + [sym_anonymous_function] = STATE(3622), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2081), - [sym_integer] = ACTIONS(2081), - [sym_float] = ACTIONS(2081), - [sym_char] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2075), + [sym_integer] = ACTIONS(2075), + [sym_float] = ACTIONS(2075), + [sym_char] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106509,86 +106275,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(407), }, [614] = { - [sym__expression] = STATE(1828), - [sym_block] = STATE(1828), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1828), - [sym_nil] = STATE(1828), - [sym__atom] = STATE(1828), - [sym_quoted_atom] = STATE(1828), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1828), - [sym_charlist] = STATE(1828), - [sym_sigil] = STATE(1828), - [sym_list] = STATE(1828), - [sym_tuple] = STATE(1828), - [sym_bitstring] = STATE(1828), - [sym_map] = STATE(1828), - [sym__nullary_operator] = STATE(1828), - [sym_unary_operator] = STATE(1828), - [sym_binary_operator] = STATE(1828), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1828), - [sym_call] = STATE(1828), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1828), - [sym_anonymous_function] = STATE(1828), + [sym__expression] = STATE(3623), + [sym_block] = STATE(3623), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3623), + [sym_nil] = STATE(3623), + [sym__atom] = STATE(3623), + [sym_quoted_atom] = STATE(3623), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3623), + [sym_charlist] = STATE(3623), + [sym_sigil] = STATE(3623), + [sym_list] = STATE(3623), + [sym_tuple] = STATE(3623), + [sym_bitstring] = STATE(3623), + [sym_map] = STATE(3623), + [sym__nullary_operator] = STATE(3623), + [sym_unary_operator] = STATE(3623), + [sym_binary_operator] = STATE(3623), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3623), + [sym_call] = STATE(3623), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3623), + [sym_anonymous_function] = STATE(3623), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2083), - [sym_integer] = ACTIONS(2083), - [sym_float] = ACTIONS(2083), - [sym_char] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2083), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2077), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2077), + [sym_char] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106626,86 +106392,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(407), }, [615] = { - [sym__expression] = STATE(4349), - [sym_block] = STATE(4349), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4349), - [sym_nil] = STATE(4349), - [sym__atom] = STATE(4349), - [sym_quoted_atom] = STATE(4349), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4349), - [sym_charlist] = STATE(4349), - [sym_sigil] = STATE(4349), - [sym_list] = STATE(4349), - [sym_tuple] = STATE(4349), - [sym_bitstring] = STATE(4349), - [sym_map] = STATE(4349), - [sym__nullary_operator] = STATE(4349), - [sym_unary_operator] = STATE(4349), - [sym_binary_operator] = STATE(4349), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4349), - [sym_call] = STATE(4349), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4349), - [sym_anonymous_function] = STATE(4349), + [sym__expression] = STATE(3624), + [sym_block] = STATE(3624), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3624), + [sym_nil] = STATE(3624), + [sym__atom] = STATE(3624), + [sym_quoted_atom] = STATE(3624), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3624), + [sym_charlist] = STATE(3624), + [sym_sigil] = STATE(3624), + [sym_list] = STATE(3624), + [sym_tuple] = STATE(3624), + [sym_bitstring] = STATE(3624), + [sym_map] = STATE(3624), + [sym__nullary_operator] = STATE(3624), + [sym_unary_operator] = STATE(3624), + [sym_binary_operator] = STATE(3624), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3624), + [sym_call] = STATE(3624), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3624), + [sym_anonymous_function] = STATE(3624), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2085), - [sym_integer] = ACTIONS(2085), - [sym_float] = ACTIONS(2085), - [sym_char] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2079), + [sym_integer] = ACTIONS(2079), + [sym_float] = ACTIONS(2079), + [sym_char] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106743,86 +106509,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(407), }, [616] = { - [sym__expression] = STATE(4064), - [sym_block] = STATE(4064), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4064), - [sym_nil] = STATE(4064), - [sym__atom] = STATE(4064), - [sym_quoted_atom] = STATE(4064), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4064), - [sym_charlist] = STATE(4064), - [sym_sigil] = STATE(4064), - [sym_list] = STATE(4064), - [sym_tuple] = STATE(4064), - [sym_bitstring] = STATE(4064), - [sym_map] = STATE(4064), - [sym__nullary_operator] = STATE(4064), - [sym_unary_operator] = STATE(4064), - [sym_binary_operator] = STATE(4064), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4064), - [sym_call] = STATE(4064), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4064), - [sym_anonymous_function] = STATE(4064), + [sym__expression] = STATE(3626), + [sym_block] = STATE(3626), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3626), + [sym_nil] = STATE(3626), + [sym__atom] = STATE(3626), + [sym_quoted_atom] = STATE(3626), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3626), + [sym_charlist] = STATE(3626), + [sym_sigil] = STATE(3626), + [sym_list] = STATE(3626), + [sym_tuple] = STATE(3626), + [sym_bitstring] = STATE(3626), + [sym_map] = STATE(3626), + [sym__nullary_operator] = STATE(3626), + [sym_unary_operator] = STATE(3626), + [sym_binary_operator] = STATE(3626), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3626), + [sym_call] = STATE(3626), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3626), + [sym_anonymous_function] = STATE(3626), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2087), - [sym_integer] = ACTIONS(2087), - [sym_float] = ACTIONS(2087), - [sym_char] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2081), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2081), + [sym_char] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106860,86 +106626,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(407), }, [617] = { - [sym__expression] = STATE(1577), - [sym_block] = STATE(1577), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1577), - [sym_nil] = STATE(1577), - [sym__atom] = STATE(1577), - [sym_quoted_atom] = STATE(1577), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1577), - [sym_charlist] = STATE(1577), - [sym_sigil] = STATE(1577), - [sym_list] = STATE(1577), - [sym_tuple] = STATE(1577), - [sym_bitstring] = STATE(1577), - [sym_map] = STATE(1577), - [sym__nullary_operator] = STATE(1577), - [sym_unary_operator] = STATE(1577), - [sym_binary_operator] = STATE(1577), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1577), - [sym_call] = STATE(1577), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1577), - [sym_anonymous_function] = STATE(1577), + [sym__expression] = STATE(3627), + [sym_block] = STATE(3627), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3627), + [sym_nil] = STATE(3627), + [sym__atom] = STATE(3627), + [sym_quoted_atom] = STATE(3627), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3627), + [sym_charlist] = STATE(3627), + [sym_sigil] = STATE(3627), + [sym_list] = STATE(3627), + [sym_tuple] = STATE(3627), + [sym_bitstring] = STATE(3627), + [sym_map] = STATE(3627), + [sym__nullary_operator] = STATE(3627), + [sym_unary_operator] = STATE(3627), + [sym_binary_operator] = STATE(3627), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3627), + [sym_call] = STATE(3627), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3627), + [sym_anonymous_function] = STATE(3627), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2089), - [sym_integer] = ACTIONS(2089), - [sym_float] = ACTIONS(2089), - [sym_char] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2083), + [sym_char] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -106977,86 +106743,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(407), }, [618] = { - [sym__expression] = STATE(3369), - [sym_block] = STATE(3369), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3369), - [sym_nil] = STATE(3369), - [sym__atom] = STATE(3369), - [sym_quoted_atom] = STATE(3369), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3369), - [sym_charlist] = STATE(3369), - [sym_sigil] = STATE(3369), - [sym_list] = STATE(3369), - [sym_tuple] = STATE(3369), - [sym_bitstring] = STATE(3369), - [sym_map] = STATE(3369), - [sym__nullary_operator] = STATE(3369), - [sym_unary_operator] = STATE(3369), - [sym_binary_operator] = STATE(3369), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3369), - [sym_call] = STATE(3369), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3369), - [sym_anonymous_function] = STATE(3369), + [sym__expression] = STATE(3628), + [sym_block] = STATE(3628), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3628), + [sym_nil] = STATE(3628), + [sym__atom] = STATE(3628), + [sym_quoted_atom] = STATE(3628), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3628), + [sym_charlist] = STATE(3628), + [sym_sigil] = STATE(3628), + [sym_list] = STATE(3628), + [sym_tuple] = STATE(3628), + [sym_bitstring] = STATE(3628), + [sym_map] = STATE(3628), + [sym__nullary_operator] = STATE(3628), + [sym_unary_operator] = STATE(3628), + [sym_binary_operator] = STATE(3628), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3628), + [sym_call] = STATE(3628), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3628), + [sym_anonymous_function] = STATE(3628), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2091), - [sym_integer] = ACTIONS(2091), - [sym_float] = ACTIONS(2091), - [sym_char] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2085), + [sym_integer] = ACTIONS(2085), + [sym_float] = ACTIONS(2085), + [sym_char] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107094,86 +106860,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(407), }, [619] = { - [sym__expression] = STATE(4068), - [sym_block] = STATE(4068), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4068), - [sym_nil] = STATE(4068), - [sym__atom] = STATE(4068), - [sym_quoted_atom] = STATE(4068), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4068), - [sym_charlist] = STATE(4068), - [sym_sigil] = STATE(4068), - [sym_list] = STATE(4068), - [sym_tuple] = STATE(4068), - [sym_bitstring] = STATE(4068), - [sym_map] = STATE(4068), - [sym__nullary_operator] = STATE(4068), - [sym_unary_operator] = STATE(4068), - [sym_binary_operator] = STATE(4068), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4068), - [sym_call] = STATE(4068), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4068), - [sym_anonymous_function] = STATE(4068), + [sym__expression] = STATE(3629), + [sym_block] = STATE(3629), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3629), + [sym_nil] = STATE(3629), + [sym__atom] = STATE(3629), + [sym_quoted_atom] = STATE(3629), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3629), + [sym_charlist] = STATE(3629), + [sym_sigil] = STATE(3629), + [sym_list] = STATE(3629), + [sym_tuple] = STATE(3629), + [sym_bitstring] = STATE(3629), + [sym_map] = STATE(3629), + [sym__nullary_operator] = STATE(3629), + [sym_unary_operator] = STATE(3629), + [sym_binary_operator] = STATE(3629), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3629), + [sym_call] = STATE(3629), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3629), + [sym_anonymous_function] = STATE(3629), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2093), - [sym_integer] = ACTIONS(2093), - [sym_float] = ACTIONS(2093), - [sym_char] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2087), + [sym_integer] = ACTIONS(2087), + [sym_float] = ACTIONS(2087), + [sym_char] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107211,86 +106977,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(407), }, [620] = { - [sym__expression] = STATE(4198), - [sym_block] = STATE(4198), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4198), - [sym_nil] = STATE(4198), - [sym__atom] = STATE(4198), - [sym_quoted_atom] = STATE(4198), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4198), - [sym_charlist] = STATE(4198), - [sym_sigil] = STATE(4198), - [sym_list] = STATE(4198), - [sym_tuple] = STATE(4198), - [sym_bitstring] = STATE(4198), - [sym_map] = STATE(4198), - [sym__nullary_operator] = STATE(4198), - [sym_unary_operator] = STATE(4198), - [sym_binary_operator] = STATE(4198), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4198), - [sym_call] = STATE(4198), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4198), - [sym_anonymous_function] = STATE(4198), + [sym__expression] = STATE(3631), + [sym_block] = STATE(3631), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3631), + [sym_nil] = STATE(3631), + [sym__atom] = STATE(3631), + [sym_quoted_atom] = STATE(3631), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3631), + [sym_charlist] = STATE(3631), + [sym_sigil] = STATE(3631), + [sym_list] = STATE(3631), + [sym_tuple] = STATE(3631), + [sym_bitstring] = STATE(3631), + [sym_map] = STATE(3631), + [sym__nullary_operator] = STATE(3631), + [sym_unary_operator] = STATE(3631), + [sym_binary_operator] = STATE(3631), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(3631), + [sym_call] = STATE(3631), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3631), + [sym_anonymous_function] = STATE(3631), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2095), - [sym_integer] = ACTIONS(2095), - [sym_float] = ACTIONS(2095), - [sym_char] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2089), + [sym_integer] = ACTIONS(2089), + [sym_float] = ACTIONS(2089), + [sym_char] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107328,64 +107094,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, [621] = { - [sym__expression] = STATE(2187), - [sym_block] = STATE(2187), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2187), - [sym_nil] = STATE(2187), - [sym__atom] = STATE(2187), - [sym_quoted_atom] = STATE(2187), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2187), - [sym_charlist] = STATE(2187), - [sym_sigil] = STATE(2187), - [sym_list] = STATE(2187), - [sym_tuple] = STATE(2187), - [sym_bitstring] = STATE(2187), - [sym_map] = STATE(2187), - [sym__nullary_operator] = STATE(2187), - [sym_unary_operator] = STATE(2187), - [sym_binary_operator] = STATE(2187), + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym__atom] = STATE(3632), + [sym_quoted_atom] = STATE(3632), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym__nullary_operator] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2187), - [sym_call] = STATE(2187), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2187), - [sym_anonymous_function] = STATE(2187), + [sym_dot] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1911), - [sym_integer] = ACTIONS(1911), - [sym_float] = ACTIONS(1911), - [sym_char] = ACTIONS(1911), + [sym_alias] = ACTIONS(2091), + [sym_integer] = ACTIONS(2091), + [sym_float] = ACTIONS(2091), + [sym_char] = ACTIONS(2091), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1911), + [sym_atom] = ACTIONS(2091), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -107395,19 +107161,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(381), [anon_sym_LT_LT] = ACTIONS(385), [anon_sym_PERCENT] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107449,82 +107215,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(407), }, [622] = { - [sym__expression] = STATE(4445), - [sym_block] = STATE(4445), - [sym_identifier] = STATE(81), - [sym_boolean] = STATE(4445), - [sym_nil] = STATE(4445), - [sym__atom] = STATE(4445), - [sym_quoted_atom] = STATE(4445), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(4445), - [sym_charlist] = STATE(4445), - [sym_sigil] = STATE(4445), - [sym_list] = STATE(4445), - [sym_tuple] = STATE(4445), - [sym_bitstring] = STATE(4445), - [sym_map] = STATE(4445), - [sym__nullary_operator] = STATE(4445), - [sym_unary_operator] = STATE(4445), - [sym_binary_operator] = STATE(4445), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(4445), - [sym_call] = STATE(4445), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(65), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(4445), - [sym_anonymous_function] = STATE(4445), + [sym__expression] = STATE(2245), + [sym_block] = STATE(2245), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(2245), + [sym_nil] = STATE(2245), + [sym__atom] = STATE(2245), + [sym_quoted_atom] = STATE(2245), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2245), + [sym_charlist] = STATE(2245), + [sym_sigil] = STATE(2245), + [sym_list] = STATE(2245), + [sym_tuple] = STATE(2245), + [sym_bitstring] = STATE(2245), + [sym_map] = STATE(2245), + [sym__nullary_operator] = STATE(2245), + [sym_unary_operator] = STATE(2245), + [sym_binary_operator] = STATE(2245), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2245), + [sym_call] = STATE(2245), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2245), + [sym_anonymous_function] = STATE(2245), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2097), - [sym_integer] = ACTIONS(2097), - [sym_float] = ACTIONS(2097), - [sym_char] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(2097), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2093), + [sym_integer] = ACTIONS(2093), + [sym_float] = ACTIONS(2093), + [sym_char] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_CARET] = ACTIONS(1349), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1349), - [anon_sym_not] = ACTIONS(1349), - [anon_sym_AT] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107562,64 +107328,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1353), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(407), }, [623] = { - [sym__expression] = STATE(2186), - [sym_block] = STATE(2186), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2186), - [sym_nil] = STATE(2186), - [sym__atom] = STATE(2186), - [sym_quoted_atom] = STATE(2186), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2186), - [sym_charlist] = STATE(2186), - [sym_sigil] = STATE(2186), - [sym_list] = STATE(2186), - [sym_tuple] = STATE(2186), - [sym_bitstring] = STATE(2186), - [sym_map] = STATE(2186), - [sym__nullary_operator] = STATE(2186), - [sym_unary_operator] = STATE(2186), - [sym_binary_operator] = STATE(2186), + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym__nullary_operator] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2186), - [sym_call] = STATE(2186), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2186), - [sym_anonymous_function] = STATE(2186), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1913), - [sym_integer] = ACTIONS(1913), - [sym_float] = ACTIONS(1913), - [sym_char] = ACTIONS(1913), + [sym_alias] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2095), + [sym_char] = ACTIONS(2095), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1913), + [sym_atom] = ACTIONS(2095), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -107629,19 +107395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(381), [anon_sym_LT_LT] = ACTIONS(385), [anon_sym_PERCENT] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107683,60 +107449,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(407), }, [624] = { - [sym__expression] = STATE(2137), - [sym_block] = STATE(2137), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2137), - [sym_nil] = STATE(2137), - [sym__atom] = STATE(2137), - [sym_quoted_atom] = STATE(2137), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2137), - [sym_charlist] = STATE(2137), - [sym_sigil] = STATE(2137), - [sym_list] = STATE(2137), - [sym_tuple] = STATE(2137), - [sym_bitstring] = STATE(2137), - [sym_map] = STATE(2137), - [sym__nullary_operator] = STATE(2137), - [sym_unary_operator] = STATE(2137), - [sym_binary_operator] = STATE(2137), + [sym__expression] = STATE(2257), + [sym_block] = STATE(2257), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(2257), + [sym_nil] = STATE(2257), + [sym__atom] = STATE(2257), + [sym_quoted_atom] = STATE(2257), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2257), + [sym_charlist] = STATE(2257), + [sym_sigil] = STATE(2257), + [sym_list] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_bitstring] = STATE(2257), + [sym_map] = STATE(2257), + [sym__nullary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_binary_operator] = STATE(2257), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2137), - [sym_call] = STATE(2137), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2137), - [sym_anonymous_function] = STATE(2137), + [sym_dot] = STATE(2257), + [sym_call] = STATE(2257), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2257), + [sym_anonymous_function] = STATE(2257), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1915), - [sym_integer] = ACTIONS(1915), - [sym_float] = ACTIONS(1915), - [sym_char] = ACTIONS(1915), + [sym_alias] = ACTIONS(2097), + [sym_integer] = ACTIONS(2097), + [sym_float] = ACTIONS(2097), + [sym_char] = ACTIONS(2097), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1915), + [sym_atom] = ACTIONS(2097), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -107746,19 +107512,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), [anon_sym_TILDE] = ACTIONS(381), [anon_sym_LT_LT] = ACTIONS(385), [anon_sym_PERCENT] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107800,60 +107566,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(407), }, [625] = { - [sym__expression] = STATE(2138), - [sym_block] = STATE(2138), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2138), - [sym_nil] = STATE(2138), - [sym__atom] = STATE(2138), - [sym_quoted_atom] = STATE(2138), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2138), - [sym_charlist] = STATE(2138), - [sym_sigil] = STATE(2138), - [sym_list] = STATE(2138), - [sym_tuple] = STATE(2138), - [sym_bitstring] = STATE(2138), - [sym_map] = STATE(2138), - [sym__nullary_operator] = STATE(2138), - [sym_unary_operator] = STATE(2138), - [sym_binary_operator] = STATE(2138), + [sym__expression] = STATE(2258), + [sym_block] = STATE(2258), + [sym_identifier] = STATE(64), + [sym_boolean] = STATE(2258), + [sym_nil] = STATE(2258), + [sym__atom] = STATE(2258), + [sym_quoted_atom] = STATE(2258), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2258), + [sym_charlist] = STATE(2258), + [sym_sigil] = STATE(2258), + [sym_list] = STATE(2258), + [sym_tuple] = STATE(2258), + [sym_bitstring] = STATE(2258), + [sym_map] = STATE(2258), + [sym__nullary_operator] = STATE(2258), + [sym_unary_operator] = STATE(2258), + [sym_binary_operator] = STATE(2258), [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2138), - [sym_call] = STATE(2138), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2138), - [sym_anonymous_function] = STATE(2138), + [sym_dot] = STATE(2258), + [sym_call] = STATE(2258), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(69), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2258), + [sym_anonymous_function] = STATE(2258), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(359), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1919), - [sym_integer] = ACTIONS(1919), - [sym_float] = ACTIONS(1919), - [sym_char] = ACTIONS(1919), + [sym_alias] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2099), + [sym_char] = ACTIONS(2099), [anon_sym_true] = ACTIONS(365), [anon_sym_false] = ACTIONS(365), [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1919), + [sym_atom] = ACTIONS(2099), [anon_sym_DQUOTE] = ACTIONS(369), [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), @@ -107863,19 +107629,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), [anon_sym_TILDE] = ACTIONS(381), [anon_sym_LT_LT] = ACTIONS(385), [anon_sym_PERCENT] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(658), + [anon_sym_DASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_CARET] = ACTIONS(658), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), + [anon_sym_not] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(660), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -107917,82 +107683,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(662), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(407), }, [626] = { - [sym__expression] = STATE(2546), - [sym_block] = STATE(2546), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2546), - [sym_nil] = STATE(2546), - [sym__atom] = STATE(2546), - [sym_quoted_atom] = STATE(2546), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2546), - [sym_charlist] = STATE(2546), - [sym_sigil] = STATE(2546), - [sym_list] = STATE(2546), - [sym_tuple] = STATE(2546), - [sym_bitstring] = STATE(2546), - [sym_map] = STATE(2546), - [sym__nullary_operator] = STATE(2546), - [sym_unary_operator] = STATE(2546), - [sym_binary_operator] = STATE(2546), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2546), - [sym_call] = STATE(2546), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), + [sym__expression] = STATE(4120), + [sym_block] = STATE(4120), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4120), + [sym_nil] = STATE(4120), + [sym__atom] = STATE(4120), + [sym_quoted_atom] = STATE(4120), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4120), + [sym_charlist] = STATE(4120), + [sym_sigil] = STATE(4120), + [sym_list] = STATE(4120), + [sym_tuple] = STATE(4120), + [sym_bitstring] = STATE(4120), + [sym_map] = STATE(4120), + [sym__nullary_operator] = STATE(4120), + [sym_unary_operator] = STATE(4120), + [sym_binary_operator] = STATE(4120), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4120), + [sym_call] = STATE(4120), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2546), - [sym_anonymous_function] = STATE(2546), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4120), + [sym_anonymous_function] = STATE(4120), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2099), - [sym_integer] = ACTIONS(2099), - [sym_float] = ACTIONS(2099), - [sym_char] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2101), + [sym_integer] = ACTIONS(2101), + [sym_float] = ACTIONS(2101), + [sym_char] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108030,86 +107796,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(958), }, [627] = { - [sym__expression] = STATE(2547), - [sym_block] = STATE(2547), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2547), - [sym_nil] = STATE(2547), - [sym__atom] = STATE(2547), - [sym_quoted_atom] = STATE(2547), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2547), - [sym_charlist] = STATE(2547), - [sym_sigil] = STATE(2547), - [sym_list] = STATE(2547), - [sym_tuple] = STATE(2547), - [sym_bitstring] = STATE(2547), - [sym_map] = STATE(2547), - [sym__nullary_operator] = STATE(2547), - [sym_unary_operator] = STATE(2547), - [sym_binary_operator] = STATE(2547), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2547), - [sym_call] = STATE(2547), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2547), - [sym_anonymous_function] = STATE(2547), + [sym__expression] = STATE(4442), + [sym_block] = STATE(4442), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4442), + [sym_nil] = STATE(4442), + [sym__atom] = STATE(4442), + [sym_quoted_atom] = STATE(4442), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4442), + [sym_charlist] = STATE(4442), + [sym_sigil] = STATE(4442), + [sym_list] = STATE(4442), + [sym_tuple] = STATE(4442), + [sym_bitstring] = STATE(4442), + [sym_map] = STATE(4442), + [sym__nullary_operator] = STATE(4442), + [sym_unary_operator] = STATE(4442), + [sym_binary_operator] = STATE(4442), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4442), + [sym_call] = STATE(4442), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4442), + [sym_anonymous_function] = STATE(4442), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2101), - [sym_integer] = ACTIONS(2101), - [sym_float] = ACTIONS(2101), - [sym_char] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(2101), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2103), + [sym_char] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108147,86 +107913,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1135), }, [628] = { - [sym__expression] = STATE(2550), - [sym_block] = STATE(2550), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2550), - [sym_nil] = STATE(2550), - [sym__atom] = STATE(2550), - [sym_quoted_atom] = STATE(2550), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2550), - [sym_charlist] = STATE(2550), - [sym_sigil] = STATE(2550), - [sym_list] = STATE(2550), - [sym_tuple] = STATE(2550), - [sym_bitstring] = STATE(2550), - [sym_map] = STATE(2550), - [sym__nullary_operator] = STATE(2550), - [sym_unary_operator] = STATE(2550), - [sym_binary_operator] = STATE(2550), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2550), - [sym_call] = STATE(2550), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), + [sym__expression] = STATE(4122), + [sym_block] = STATE(4122), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4122), + [sym_nil] = STATE(4122), + [sym__atom] = STATE(4122), + [sym_quoted_atom] = STATE(4122), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4122), + [sym_charlist] = STATE(4122), + [sym_sigil] = STATE(4122), + [sym_list] = STATE(4122), + [sym_tuple] = STATE(4122), + [sym_bitstring] = STATE(4122), + [sym_map] = STATE(4122), + [sym__nullary_operator] = STATE(4122), + [sym_unary_operator] = STATE(4122), + [sym_binary_operator] = STATE(4122), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4122), + [sym_call] = STATE(4122), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2550), - [sym_anonymous_function] = STATE(2550), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4122), + [sym_anonymous_function] = STATE(4122), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2103), - [sym_integer] = ACTIONS(2103), - [sym_float] = ACTIONS(2103), - [sym_char] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2105), + [sym_integer] = ACTIONS(2105), + [sym_float] = ACTIONS(2105), + [sym_char] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108264,64 +108030,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(958), }, [629] = { - [sym__expression] = STATE(4063), - [sym_block] = STATE(4063), + [sym__expression] = STATE(4123), + [sym_block] = STATE(4123), [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4063), - [sym_nil] = STATE(4063), - [sym__atom] = STATE(4063), - [sym_quoted_atom] = STATE(4063), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [sym_boolean] = STATE(4123), + [sym_nil] = STATE(4123), + [sym__atom] = STATE(4123), + [sym_quoted_atom] = STATE(4123), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4063), - [sym_charlist] = STATE(4063), - [sym_sigil] = STATE(4063), - [sym_list] = STATE(4063), - [sym_tuple] = STATE(4063), - [sym_bitstring] = STATE(4063), - [sym_map] = STATE(4063), - [sym__nullary_operator] = STATE(4063), - [sym_unary_operator] = STATE(4063), - [sym_binary_operator] = STATE(4063), + [sym_string] = STATE(4123), + [sym_charlist] = STATE(4123), + [sym_sigil] = STATE(4123), + [sym_list] = STATE(4123), + [sym_tuple] = STATE(4123), + [sym_bitstring] = STATE(4123), + [sym_map] = STATE(4123), + [sym__nullary_operator] = STATE(4123), + [sym_unary_operator] = STATE(4123), + [sym_binary_operator] = STATE(4123), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4063), - [sym_call] = STATE(4063), + [sym_dot] = STATE(4123), + [sym_call] = STATE(4123), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), + [sym__remote_call_with_parentheses] = STATE(1419), [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4063), - [sym_anonymous_function] = STATE(4063), + [sym_access_call] = STATE(4123), + [sym_anonymous_function] = STATE(4123), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2105), - [sym_integer] = ACTIONS(2105), - [sym_float] = ACTIONS(2105), - [sym_char] = ACTIONS(2105), + [sym_alias] = ACTIONS(2107), + [sym_integer] = ACTIONS(2107), + [sym_float] = ACTIONS(2107), + [sym_char] = ACTIONS(2107), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2105), + [sym_atom] = ACTIONS(2107), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -108332,18 +108098,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108385,82 +108151,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, [630] = { - [sym__expression] = STATE(2551), - [sym_block] = STATE(2551), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2551), - [sym_nil] = STATE(2551), - [sym__atom] = STATE(2551), - [sym_quoted_atom] = STATE(2551), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2551), - [sym_charlist] = STATE(2551), - [sym_sigil] = STATE(2551), - [sym_list] = STATE(2551), - [sym_tuple] = STATE(2551), - [sym_bitstring] = STATE(2551), - [sym_map] = STATE(2551), - [sym__nullary_operator] = STATE(2551), - [sym_unary_operator] = STATE(2551), - [sym_binary_operator] = STATE(2551), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2551), - [sym_call] = STATE(2551), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), + [sym__expression] = STATE(2660), + [sym_block] = STATE(2660), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2660), + [sym_nil] = STATE(2660), + [sym__atom] = STATE(2660), + [sym_quoted_atom] = STATE(2660), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2660), + [sym_charlist] = STATE(2660), + [sym_sigil] = STATE(2660), + [sym_list] = STATE(2660), + [sym_tuple] = STATE(2660), + [sym_bitstring] = STATE(2660), + [sym_map] = STATE(2660), + [sym__nullary_operator] = STATE(2660), + [sym_unary_operator] = STATE(2660), + [sym_binary_operator] = STATE(2660), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2660), + [sym_call] = STATE(2660), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2551), - [sym_anonymous_function] = STATE(2551), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2660), + [sym_anonymous_function] = STATE(2660), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2107), - [sym_integer] = ACTIONS(2107), - [sym_float] = ACTIONS(2107), - [sym_char] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(2107), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1297), + [sym_integer] = ACTIONS(1297), + [sym_float] = ACTIONS(1297), + [sym_char] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108498,86 +108264,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(958), }, [631] = { - [sym__expression] = STATE(2552), - [sym_block] = STATE(2552), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2552), - [sym_nil] = STATE(2552), - [sym__atom] = STATE(2552), - [sym_quoted_atom] = STATE(2552), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2552), - [sym_charlist] = STATE(2552), - [sym_sigil] = STATE(2552), - [sym_list] = STATE(2552), - [sym_tuple] = STATE(2552), - [sym_bitstring] = STATE(2552), - [sym_map] = STATE(2552), - [sym__nullary_operator] = STATE(2552), - [sym_unary_operator] = STATE(2552), - [sym_binary_operator] = STATE(2552), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2552), - [sym_call] = STATE(2552), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2552), - [sym_anonymous_function] = STATE(2552), + [sym__expression] = STATE(4443), + [sym_block] = STATE(4443), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4443), + [sym_nil] = STATE(4443), + [sym__atom] = STATE(4443), + [sym_quoted_atom] = STATE(4443), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4443), + [sym_charlist] = STATE(4443), + [sym_sigil] = STATE(4443), + [sym_list] = STATE(4443), + [sym_tuple] = STATE(4443), + [sym_bitstring] = STATE(4443), + [sym_map] = STATE(4443), + [sym__nullary_operator] = STATE(4443), + [sym_unary_operator] = STATE(4443), + [sym_binary_operator] = STATE(4443), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4443), + [sym_call] = STATE(4443), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4443), + [sym_anonymous_function] = STATE(4443), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2109), [sym_integer] = ACTIONS(2109), [sym_float] = ACTIONS(2109), [sym_char] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108615,86 +108381,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1135), }, [632] = { - [sym__expression] = STATE(2553), - [sym_block] = STATE(2553), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2553), - [sym_nil] = STATE(2553), - [sym__atom] = STATE(2553), - [sym_quoted_atom] = STATE(2553), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2553), - [sym_charlist] = STATE(2553), - [sym_sigil] = STATE(2553), - [sym_list] = STATE(2553), - [sym_tuple] = STATE(2553), - [sym_bitstring] = STATE(2553), - [sym_map] = STATE(2553), - [sym__nullary_operator] = STATE(2553), - [sym_unary_operator] = STATE(2553), - [sym_binary_operator] = STATE(2553), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2553), - [sym_call] = STATE(2553), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2553), - [sym_anonymous_function] = STATE(2553), + [sym__expression] = STATE(4444), + [sym_block] = STATE(4444), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4444), + [sym_nil] = STATE(4444), + [sym__atom] = STATE(4444), + [sym_quoted_atom] = STATE(4444), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4444), + [sym_charlist] = STATE(4444), + [sym_sigil] = STATE(4444), + [sym_list] = STATE(4444), + [sym_tuple] = STATE(4444), + [sym_bitstring] = STATE(4444), + [sym_map] = STATE(4444), + [sym__nullary_operator] = STATE(4444), + [sym_unary_operator] = STATE(4444), + [sym_binary_operator] = STATE(4444), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4444), + [sym_call] = STATE(4444), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4444), + [sym_anonymous_function] = STATE(4444), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2111), [sym_integer] = ACTIONS(2111), [sym_float] = ACTIONS(2111), [sym_char] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108732,86 +108498,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1135), }, [633] = { - [sym__expression] = STATE(2556), - [sym_block] = STATE(2556), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2556), - [sym_nil] = STATE(2556), - [sym__atom] = STATE(2556), - [sym_quoted_atom] = STATE(2556), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2556), - [sym_charlist] = STATE(2556), - [sym_sigil] = STATE(2556), - [sym_list] = STATE(2556), - [sym_tuple] = STATE(2556), - [sym_bitstring] = STATE(2556), - [sym_map] = STATE(2556), - [sym__nullary_operator] = STATE(2556), - [sym_unary_operator] = STATE(2556), - [sym_binary_operator] = STATE(2556), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2556), - [sym_call] = STATE(2556), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), + [sym__expression] = STATE(4124), + [sym_block] = STATE(4124), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4124), + [sym_nil] = STATE(4124), + [sym__atom] = STATE(4124), + [sym_quoted_atom] = STATE(4124), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4124), + [sym_charlist] = STATE(4124), + [sym_sigil] = STATE(4124), + [sym_list] = STATE(4124), + [sym_tuple] = STATE(4124), + [sym_bitstring] = STATE(4124), + [sym_map] = STATE(4124), + [sym__nullary_operator] = STATE(4124), + [sym_unary_operator] = STATE(4124), + [sym_binary_operator] = STATE(4124), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4124), + [sym_call] = STATE(4124), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2556), - [sym_anonymous_function] = STATE(2556), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4124), + [sym_anonymous_function] = STATE(4124), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2113), [sym_integer] = ACTIONS(2113), [sym_float] = ACTIONS(2113), [sym_char] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108849,86 +108615,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(958), }, [634] = { - [sym__expression] = STATE(2557), - [sym_block] = STATE(2557), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2557), - [sym_nil] = STATE(2557), - [sym__atom] = STATE(2557), - [sym_quoted_atom] = STATE(2557), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2557), - [sym_charlist] = STATE(2557), - [sym_sigil] = STATE(2557), - [sym_list] = STATE(2557), - [sym_tuple] = STATE(2557), - [sym_bitstring] = STATE(2557), - [sym_map] = STATE(2557), - [sym__nullary_operator] = STATE(2557), - [sym_unary_operator] = STATE(2557), - [sym_binary_operator] = STATE(2557), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2557), - [sym_call] = STATE(2557), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2557), - [sym_anonymous_function] = STATE(2557), + [sym__expression] = STATE(3438), + [sym_block] = STATE(3438), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3438), + [sym_nil] = STATE(3438), + [sym__atom] = STATE(3438), + [sym_quoted_atom] = STATE(3438), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3438), + [sym_charlist] = STATE(3438), + [sym_sigil] = STATE(3438), + [sym_list] = STATE(3438), + [sym_tuple] = STATE(3438), + [sym_bitstring] = STATE(3438), + [sym_map] = STATE(3438), + [sym__nullary_operator] = STATE(3438), + [sym_unary_operator] = STATE(3438), + [sym_binary_operator] = STATE(3438), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3438), + [sym_call] = STATE(3438), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3438), + [sym_anonymous_function] = STATE(3438), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2115), [sym_integer] = ACTIONS(2115), [sym_float] = ACTIONS(2115), [sym_char] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -108966,86 +108732,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(532), }, [635] = { - [sym__expression] = STATE(2558), - [sym_block] = STATE(2558), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2558), - [sym_nil] = STATE(2558), - [sym__atom] = STATE(2558), - [sym_quoted_atom] = STATE(2558), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2558), - [sym_charlist] = STATE(2558), - [sym_sigil] = STATE(2558), - [sym_list] = STATE(2558), - [sym_tuple] = STATE(2558), - [sym_bitstring] = STATE(2558), - [sym_map] = STATE(2558), - [sym__nullary_operator] = STATE(2558), - [sym_unary_operator] = STATE(2558), - [sym_binary_operator] = STATE(2558), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2558), - [sym_call] = STATE(2558), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2558), - [sym_anonymous_function] = STATE(2558), + [sym__expression] = STATE(3416), + [sym_block] = STATE(3416), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3416), + [sym_nil] = STATE(3416), + [sym__atom] = STATE(3416), + [sym_quoted_atom] = STATE(3416), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3416), + [sym_charlist] = STATE(3416), + [sym_sigil] = STATE(3416), + [sym_list] = STATE(3416), + [sym_tuple] = STATE(3416), + [sym_bitstring] = STATE(3416), + [sym_map] = STATE(3416), + [sym__nullary_operator] = STATE(3416), + [sym_unary_operator] = STATE(3416), + [sym_binary_operator] = STATE(3416), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3416), + [sym_call] = STATE(3416), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3416), + [sym_anonymous_function] = STATE(3416), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2117), [sym_integer] = ACTIONS(2117), [sym_float] = ACTIONS(2117), [sym_char] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -109083,86 +108849,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(532), }, [636] = { - [sym__expression] = STATE(2559), - [sym_block] = STATE(2559), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2559), - [sym_nil] = STATE(2559), - [sym__atom] = STATE(2559), - [sym_quoted_atom] = STATE(2559), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2559), - [sym_charlist] = STATE(2559), - [sym_sigil] = STATE(2559), - [sym_list] = STATE(2559), - [sym_tuple] = STATE(2559), - [sym_bitstring] = STATE(2559), - [sym_map] = STATE(2559), - [sym__nullary_operator] = STATE(2559), - [sym_unary_operator] = STATE(2559), - [sym_binary_operator] = STATE(2559), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2559), - [sym_call] = STATE(2559), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2559), - [sym_anonymous_function] = STATE(2559), + [sym__expression] = STATE(3193), + [sym_block] = STATE(3193), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(3193), + [sym_nil] = STATE(3193), + [sym__atom] = STATE(3193), + [sym_quoted_atom] = STATE(3193), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3193), + [sym_charlist] = STATE(3193), + [sym_sigil] = STATE(3193), + [sym_list] = STATE(3193), + [sym_tuple] = STATE(3193), + [sym_bitstring] = STATE(3193), + [sym_map] = STATE(3193), + [sym__nullary_operator] = STATE(3193), + [sym_unary_operator] = STATE(3193), + [sym_binary_operator] = STATE(3193), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3193), + [sym_call] = STATE(3193), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3193), + [sym_anonymous_function] = STATE(3193), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2119), [sym_integer] = ACTIONS(2119), [sym_float] = ACTIONS(2119), [sym_char] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -109200,54 +108966,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1085), }, [637] = { - [sym__expression] = STATE(3857), - [sym_block] = STATE(3857), + [sym__expression] = STATE(3648), + [sym_block] = STATE(3648), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3857), - [sym_nil] = STATE(3857), - [sym__atom] = STATE(3857), - [sym_quoted_atom] = STATE(3857), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3857), - [sym_charlist] = STATE(3857), - [sym_sigil] = STATE(3857), - [sym_list] = STATE(3857), - [sym_tuple] = STATE(3857), - [sym_bitstring] = STATE(3857), - [sym_map] = STATE(3857), - [sym__nullary_operator] = STATE(3857), - [sym_unary_operator] = STATE(3857), - [sym_binary_operator] = STATE(3857), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3857), - [sym_call] = STATE(3857), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3648), + [sym_nil] = STATE(3648), + [sym__atom] = STATE(3648), + [sym_quoted_atom] = STATE(3648), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3648), + [sym_charlist] = STATE(3648), + [sym_sigil] = STATE(3648), + [sym_list] = STATE(3648), + [sym_tuple] = STATE(3648), + [sym_bitstring] = STATE(3648), + [sym_map] = STATE(3648), + [sym__nullary_operator] = STATE(3648), + [sym_unary_operator] = STATE(3648), + [sym_binary_operator] = STATE(3648), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3648), + [sym_call] = STATE(3648), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3857), - [sym_anonymous_function] = STATE(3857), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3648), + [sym_anonymous_function] = STATE(3648), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2121), @@ -109326,55 +109092,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [638] = { - [sym__expression] = STATE(1733), - [sym_block] = STATE(1733), + [sym__expression] = STATE(1738), + [sym_block] = STATE(1738), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1733), - [sym_nil] = STATE(1733), - [sym__atom] = STATE(1733), - [sym_quoted_atom] = STATE(1733), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1733), - [sym_charlist] = STATE(1733), - [sym_sigil] = STATE(1733), - [sym_list] = STATE(1733), - [sym_tuple] = STATE(1733), - [sym_bitstring] = STATE(1733), - [sym_map] = STATE(1733), - [sym__nullary_operator] = STATE(1733), - [sym_unary_operator] = STATE(1733), - [sym_binary_operator] = STATE(1733), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1733), - [sym_call] = STATE(1733), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1738), + [sym_nil] = STATE(1738), + [sym__atom] = STATE(1738), + [sym_quoted_atom] = STATE(1738), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1738), + [sym_charlist] = STATE(1738), + [sym_sigil] = STATE(1738), + [sym_list] = STATE(1738), + [sym_tuple] = STATE(1738), + [sym_bitstring] = STATE(1738), + [sym_map] = STATE(1738), + [sym__nullary_operator] = STATE(1738), + [sym_unary_operator] = STATE(1738), + [sym_binary_operator] = STATE(1738), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1738), + [sym_call] = STATE(1738), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1733), - [sym_anonymous_function] = STATE(1733), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1738), + [sym_anonymous_function] = STATE(1738), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2123), - [sym_integer] = ACTIONS(2123), - [sym_float] = ACTIONS(2123), - [sym_char] = ACTIONS(2123), + [sym_alias] = ACTIONS(1797), + [sym_integer] = ACTIONS(1797), + [sym_float] = ACTIONS(1797), + [sym_char] = ACTIONS(1797), [anon_sym_true] = ACTIONS(69), [anon_sym_false] = ACTIONS(69), [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2123), + [sym_atom] = ACTIONS(1797), [anon_sym_DQUOTE] = ACTIONS(73), [anon_sym_SQUOTE] = ACTIONS(75), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), @@ -109443,77 +109209,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [639] = { - [sym__expression] = STATE(4069), - [sym_block] = STATE(4069), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4069), - [sym_nil] = STATE(4069), - [sym__atom] = STATE(4069), - [sym_quoted_atom] = STATE(4069), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4069), - [sym_charlist] = STATE(4069), - [sym_sigil] = STATE(4069), - [sym_list] = STATE(4069), - [sym_tuple] = STATE(4069), - [sym_bitstring] = STATE(4069), - [sym_map] = STATE(4069), - [sym__nullary_operator] = STATE(4069), - [sym_unary_operator] = STATE(4069), - [sym_binary_operator] = STATE(4069), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4069), - [sym_call] = STATE(4069), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4069), - [sym_anonymous_function] = STATE(4069), + [sym__expression] = STATE(4533), + [sym_block] = STATE(4533), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4533), + [sym_nil] = STATE(4533), + [sym__atom] = STATE(4533), + [sym_quoted_atom] = STATE(4533), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4533), + [sym_charlist] = STATE(4533), + [sym_sigil] = STATE(4533), + [sym_list] = STATE(4533), + [sym_tuple] = STATE(4533), + [sym_bitstring] = STATE(4533), + [sym_map] = STATE(4533), + [sym__nullary_operator] = STATE(4533), + [sym_unary_operator] = STATE(4533), + [sym_binary_operator] = STATE(4533), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4533), + [sym_call] = STATE(4533), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4533), + [sym_anonymous_function] = STATE(4533), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2123), + [sym_integer] = ACTIONS(2123), + [sym_float] = ACTIONS(2123), + [sym_char] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1081), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1339), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(1085), + }, + [640] = { + [sym__expression] = STATE(4532), + [sym_block] = STATE(4532), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4532), + [sym_nil] = STATE(4532), + [sym__atom] = STATE(4532), + [sym_quoted_atom] = STATE(4532), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4532), + [sym_charlist] = STATE(4532), + [sym_sigil] = STATE(4532), + [sym_list] = STATE(4532), + [sym_tuple] = STATE(4532), + [sym_bitstring] = STATE(4532), + [sym_map] = STATE(4532), + [sym__nullary_operator] = STATE(4532), + [sym_unary_operator] = STATE(4532), + [sym_binary_operator] = STATE(4532), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4532), + [sym_call] = STATE(4532), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4532), + [sym_anonymous_function] = STATE(4532), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2125), [sym_integer] = ACTIONS(2125), [sym_float] = ACTIONS(2125), [sym_char] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2125), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -109551,86 +109434,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [640] = { - [sym__expression] = STATE(4071), - [sym_block] = STATE(4071), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4071), - [sym_nil] = STATE(4071), - [sym__atom] = STATE(4071), - [sym_quoted_atom] = STATE(4071), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4071), - [sym_charlist] = STATE(4071), - [sym_sigil] = STATE(4071), - [sym_list] = STATE(4071), - [sym_tuple] = STATE(4071), - [sym_bitstring] = STATE(4071), - [sym_map] = STATE(4071), - [sym__nullary_operator] = STATE(4071), - [sym_unary_operator] = STATE(4071), - [sym_binary_operator] = STATE(4071), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4071), - [sym_call] = STATE(4071), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4071), - [sym_anonymous_function] = STATE(4071), + [641] = { + [sym__expression] = STATE(4531), + [sym_block] = STATE(4531), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4531), + [sym_nil] = STATE(4531), + [sym__atom] = STATE(4531), + [sym_quoted_atom] = STATE(4531), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4531), + [sym_charlist] = STATE(4531), + [sym_sigil] = STATE(4531), + [sym_list] = STATE(4531), + [sym_tuple] = STATE(4531), + [sym_bitstring] = STATE(4531), + [sym_map] = STATE(4531), + [sym__nullary_operator] = STATE(4531), + [sym_unary_operator] = STATE(4531), + [sym_binary_operator] = STATE(4531), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4531), + [sym_call] = STATE(4531), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4531), + [sym_anonymous_function] = STATE(4531), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2127), [sym_integer] = ACTIONS(2127), [sym_float] = ACTIONS(2127), [sym_char] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -109668,86 +109551,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [641] = { - [sym__expression] = STATE(4073), - [sym_block] = STATE(4073), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4073), - [sym_nil] = STATE(4073), - [sym__atom] = STATE(4073), - [sym_quoted_atom] = STATE(4073), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4073), - [sym_charlist] = STATE(4073), - [sym_sigil] = STATE(4073), - [sym_list] = STATE(4073), - [sym_tuple] = STATE(4073), - [sym_bitstring] = STATE(4073), - [sym_map] = STATE(4073), - [sym__nullary_operator] = STATE(4073), - [sym_unary_operator] = STATE(4073), - [sym_binary_operator] = STATE(4073), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4073), - [sym_call] = STATE(4073), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4073), - [sym_anonymous_function] = STATE(4073), + [642] = { + [sym__expression] = STATE(3407), + [sym_block] = STATE(3407), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3407), + [sym_nil] = STATE(3407), + [sym__atom] = STATE(3407), + [sym_quoted_atom] = STATE(3407), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3407), + [sym_charlist] = STATE(3407), + [sym_sigil] = STATE(3407), + [sym_list] = STATE(3407), + [sym_tuple] = STATE(3407), + [sym_bitstring] = STATE(3407), + [sym_map] = STATE(3407), + [sym__nullary_operator] = STATE(3407), + [sym_unary_operator] = STATE(3407), + [sym_binary_operator] = STATE(3407), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3407), + [sym_call] = STATE(3407), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3407), + [sym_anonymous_function] = STATE(3407), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2129), [sym_integer] = ACTIONS(2129), [sym_float] = ACTIONS(2129), [sym_char] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -109785,86 +109668,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(532), }, - [642] = { - [sym__expression] = STATE(2560), - [sym_block] = STATE(2560), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2560), - [sym_nil] = STATE(2560), - [sym__atom] = STATE(2560), - [sym_quoted_atom] = STATE(2560), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2560), - [sym_charlist] = STATE(2560), - [sym_sigil] = STATE(2560), - [sym_list] = STATE(2560), - [sym_tuple] = STATE(2560), - [sym_bitstring] = STATE(2560), - [sym_map] = STATE(2560), - [sym__nullary_operator] = STATE(2560), - [sym_unary_operator] = STATE(2560), - [sym_binary_operator] = STATE(2560), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2560), - [sym_call] = STATE(2560), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2560), - [sym_anonymous_function] = STATE(2560), + [643] = { + [sym__expression] = STATE(3405), + [sym_block] = STATE(3405), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3405), + [sym_nil] = STATE(3405), + [sym__atom] = STATE(3405), + [sym_quoted_atom] = STATE(3405), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3405), + [sym_charlist] = STATE(3405), + [sym_sigil] = STATE(3405), + [sym_list] = STATE(3405), + [sym_tuple] = STATE(3405), + [sym_bitstring] = STATE(3405), + [sym_map] = STATE(3405), + [sym__nullary_operator] = STATE(3405), + [sym_unary_operator] = STATE(3405), + [sym_binary_operator] = STATE(3405), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3405), + [sym_call] = STATE(3405), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3405), + [sym_anonymous_function] = STATE(3405), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2131), [sym_integer] = ACTIONS(2131), [sym_float] = ACTIONS(2131), [sym_char] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2131), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -109902,86 +109785,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(532), }, - [643] = { - [sym__expression] = STATE(2561), - [sym_block] = STATE(2561), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2561), - [sym_nil] = STATE(2561), - [sym__atom] = STATE(2561), - [sym_quoted_atom] = STATE(2561), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2561), - [sym_charlist] = STATE(2561), - [sym_sigil] = STATE(2561), - [sym_list] = STATE(2561), - [sym_tuple] = STATE(2561), - [sym_bitstring] = STATE(2561), - [sym_map] = STATE(2561), - [sym__nullary_operator] = STATE(2561), - [sym_unary_operator] = STATE(2561), - [sym_binary_operator] = STATE(2561), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2561), - [sym_call] = STATE(2561), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2561), - [sym_anonymous_function] = STATE(2561), + [644] = { + [sym__expression] = STATE(3404), + [sym_block] = STATE(3404), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3404), + [sym_nil] = STATE(3404), + [sym__atom] = STATE(3404), + [sym_quoted_atom] = STATE(3404), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3404), + [sym_charlist] = STATE(3404), + [sym_sigil] = STATE(3404), + [sym_list] = STATE(3404), + [sym_tuple] = STATE(3404), + [sym_bitstring] = STATE(3404), + [sym_map] = STATE(3404), + [sym__nullary_operator] = STATE(3404), + [sym_unary_operator] = STATE(3404), + [sym_binary_operator] = STATE(3404), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3404), + [sym_call] = STATE(3404), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3404), + [sym_anonymous_function] = STATE(3404), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2133), [sym_integer] = ACTIONS(2133), [sym_float] = ACTIONS(2133), [sym_char] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2133), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110019,86 +109902,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(532), }, - [644] = { - [sym__expression] = STATE(2562), - [sym_block] = STATE(2562), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2562), - [sym_nil] = STATE(2562), - [sym__atom] = STATE(2562), - [sym_quoted_atom] = STATE(2562), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2562), - [sym_charlist] = STATE(2562), - [sym_sigil] = STATE(2562), - [sym_list] = STATE(2562), - [sym_tuple] = STATE(2562), - [sym_bitstring] = STATE(2562), - [sym_map] = STATE(2562), - [sym__nullary_operator] = STATE(2562), - [sym_unary_operator] = STATE(2562), - [sym_binary_operator] = STATE(2562), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2562), - [sym_call] = STATE(2562), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2562), - [sym_anonymous_function] = STATE(2562), + [645] = { + [sym__expression] = STATE(3376), + [sym_block] = STATE(3376), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3376), + [sym_nil] = STATE(3376), + [sym__atom] = STATE(3376), + [sym_quoted_atom] = STATE(3376), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3376), + [sym_charlist] = STATE(3376), + [sym_sigil] = STATE(3376), + [sym_list] = STATE(3376), + [sym_tuple] = STATE(3376), + [sym_bitstring] = STATE(3376), + [sym_map] = STATE(3376), + [sym__nullary_operator] = STATE(3376), + [sym_unary_operator] = STATE(3376), + [sym_binary_operator] = STATE(3376), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3376), + [sym_call] = STATE(3376), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3376), + [sym_anonymous_function] = STATE(3376), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2135), [sym_integer] = ACTIONS(2135), [sym_float] = ACTIONS(2135), [sym_char] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110136,86 +110019,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(532), }, - [645] = { - [sym__expression] = STATE(2563), - [sym_block] = STATE(2563), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2563), - [sym_nil] = STATE(2563), - [sym__atom] = STATE(2563), - [sym_quoted_atom] = STATE(2563), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2563), - [sym_charlist] = STATE(2563), - [sym_sigil] = STATE(2563), - [sym_list] = STATE(2563), - [sym_tuple] = STATE(2563), - [sym_bitstring] = STATE(2563), - [sym_map] = STATE(2563), - [sym__nullary_operator] = STATE(2563), - [sym_unary_operator] = STATE(2563), - [sym_binary_operator] = STATE(2563), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2563), - [sym_call] = STATE(2563), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2563), - [sym_anonymous_function] = STATE(2563), + [646] = { + [sym__expression] = STATE(3350), + [sym_block] = STATE(3350), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3350), + [sym_nil] = STATE(3350), + [sym__atom] = STATE(3350), + [sym_quoted_atom] = STATE(3350), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3350), + [sym_charlist] = STATE(3350), + [sym_sigil] = STATE(3350), + [sym_list] = STATE(3350), + [sym_tuple] = STATE(3350), + [sym_bitstring] = STATE(3350), + [sym_map] = STATE(3350), + [sym__nullary_operator] = STATE(3350), + [sym_unary_operator] = STATE(3350), + [sym_binary_operator] = STATE(3350), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3350), + [sym_call] = STATE(3350), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3350), + [sym_anonymous_function] = STATE(3350), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2137), [sym_integer] = ACTIONS(2137), [sym_float] = ACTIONS(2137), [sym_char] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110253,86 +110136,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(532), }, - [646] = { - [sym__expression] = STATE(2564), - [sym_block] = STATE(2564), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2564), - [sym_nil] = STATE(2564), - [sym__atom] = STATE(2564), - [sym_quoted_atom] = STATE(2564), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2564), - [sym_charlist] = STATE(2564), - [sym_sigil] = STATE(2564), - [sym_list] = STATE(2564), - [sym_tuple] = STATE(2564), - [sym_bitstring] = STATE(2564), - [sym_map] = STATE(2564), - [sym__nullary_operator] = STATE(2564), - [sym_unary_operator] = STATE(2564), - [sym_binary_operator] = STATE(2564), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2564), - [sym_call] = STATE(2564), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2564), - [sym_anonymous_function] = STATE(2564), + [647] = { + [sym__expression] = STATE(4446), + [sym_block] = STATE(4446), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4446), + [sym_nil] = STATE(4446), + [sym__atom] = STATE(4446), + [sym_quoted_atom] = STATE(4446), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4446), + [sym_charlist] = STATE(4446), + [sym_sigil] = STATE(4446), + [sym_list] = STATE(4446), + [sym_tuple] = STATE(4446), + [sym_bitstring] = STATE(4446), + [sym_map] = STATE(4446), + [sym__nullary_operator] = STATE(4446), + [sym_unary_operator] = STATE(4446), + [sym_binary_operator] = STATE(4446), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4446), + [sym_call] = STATE(4446), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4446), + [sym_anonymous_function] = STATE(4446), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2139), [sym_integer] = ACTIONS(2139), [sym_float] = ACTIONS(2139), [sym_char] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2139), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110370,86 +110253,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(1135), }, - [647] = { - [sym__expression] = STATE(4169), - [sym_block] = STATE(4169), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4169), - [sym_nil] = STATE(4169), - [sym__atom] = STATE(4169), - [sym_quoted_atom] = STATE(4169), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4169), - [sym_charlist] = STATE(4169), - [sym_sigil] = STATE(4169), - [sym_list] = STATE(4169), - [sym_tuple] = STATE(4169), - [sym_bitstring] = STATE(4169), - [sym_map] = STATE(4169), - [sym__nullary_operator] = STATE(4169), - [sym_unary_operator] = STATE(4169), - [sym_binary_operator] = STATE(4169), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4169), - [sym_call] = STATE(4169), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4169), - [sym_anonymous_function] = STATE(4169), + [648] = { + [sym__expression] = STATE(3347), + [sym_block] = STATE(3347), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3347), + [sym_nil] = STATE(3347), + [sym__atom] = STATE(3347), + [sym_quoted_atom] = STATE(3347), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3347), + [sym_charlist] = STATE(3347), + [sym_sigil] = STATE(3347), + [sym_list] = STATE(3347), + [sym_tuple] = STATE(3347), + [sym_bitstring] = STATE(3347), + [sym_map] = STATE(3347), + [sym__nullary_operator] = STATE(3347), + [sym_unary_operator] = STATE(3347), + [sym_binary_operator] = STATE(3347), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3347), + [sym_call] = STATE(3347), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3347), + [sym_anonymous_function] = STATE(3347), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2141), [sym_integer] = ACTIONS(2141), [sym_float] = ACTIONS(2141), [sym_char] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110487,86 +110370,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(532), }, - [648] = { - [sym__expression] = STATE(2178), - [sym_block] = STATE(2178), - [sym_identifier] = STATE(35), - [sym_boolean] = STATE(2178), - [sym_nil] = STATE(2178), - [sym__atom] = STATE(2178), - [sym_quoted_atom] = STATE(2178), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(2178), - [sym_charlist] = STATE(2178), - [sym_sigil] = STATE(2178), - [sym_list] = STATE(2178), - [sym_tuple] = STATE(2178), - [sym_bitstring] = STATE(2178), - [sym_map] = STATE(2178), - [sym__nullary_operator] = STATE(2178), - [sym_unary_operator] = STATE(2178), - [sym_binary_operator] = STATE(2178), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(2178), - [sym_call] = STATE(2178), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(40), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(2178), - [sym_anonymous_function] = STATE(2178), + [649] = { + [sym__expression] = STATE(3439), + [sym_block] = STATE(3439), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3439), + [sym_nil] = STATE(3439), + [sym__atom] = STATE(3439), + [sym_quoted_atom] = STATE(3439), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3439), + [sym_charlist] = STATE(3439), + [sym_sigil] = STATE(3439), + [sym_list] = STATE(3439), + [sym_tuple] = STATE(3439), + [sym_bitstring] = STATE(3439), + [sym_map] = STATE(3439), + [sym__nullary_operator] = STATE(3439), + [sym_unary_operator] = STATE(3439), + [sym_binary_operator] = STATE(3439), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3439), + [sym_call] = STATE(3439), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3439), + [sym_anonymous_function] = STATE(3439), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1959), - [sym_integer] = ACTIONS(1959), - [sym_float] = ACTIONS(1959), - [sym_char] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2143), + [sym_char] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), - [anon_sym_not] = ACTIONS(397), - [anon_sym_AT] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110604,203 +110487,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(405), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), - }, - [649] = { - [sym__expression] = STATE(4369), - [sym_block] = STATE(4369), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4369), - [sym_nil] = STATE(4369), - [sym__atom] = STATE(4369), - [sym_quoted_atom] = STATE(4369), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4369), - [sym_charlist] = STATE(4369), - [sym_sigil] = STATE(4369), - [sym_list] = STATE(4369), - [sym_tuple] = STATE(4369), - [sym_bitstring] = STATE(4369), - [sym_map] = STATE(4369), - [sym__nullary_operator] = STATE(4369), - [sym_unary_operator] = STATE(4369), - [sym_binary_operator] = STATE(4369), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4369), - [sym_call] = STATE(4369), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4369), - [sym_anonymous_function] = STATE(4369), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2143), - [sym_integer] = ACTIONS(2143), - [sym_float] = ACTIONS(2143), - [sym_char] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(532), }, [650] = { - [sym__expression] = STATE(4215), - [sym_block] = STATE(4215), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4215), - [sym_nil] = STATE(4215), - [sym__atom] = STATE(4215), - [sym_quoted_atom] = STATE(4215), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4215), - [sym_charlist] = STATE(4215), - [sym_sigil] = STATE(4215), - [sym_list] = STATE(4215), - [sym_tuple] = STATE(4215), - [sym_bitstring] = STATE(4215), - [sym_map] = STATE(4215), - [sym__nullary_operator] = STATE(4215), - [sym_unary_operator] = STATE(4215), - [sym_binary_operator] = STATE(4215), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4215), - [sym_call] = STATE(4215), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4215), - [sym_anonymous_function] = STATE(4215), + [sym__expression] = STATE(4198), + [sym_block] = STATE(4198), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4198), + [sym_nil] = STATE(4198), + [sym__atom] = STATE(4198), + [sym_quoted_atom] = STATE(4198), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4198), + [sym_charlist] = STATE(4198), + [sym_sigil] = STATE(4198), + [sym_list] = STATE(4198), + [sym_tuple] = STATE(4198), + [sym_bitstring] = STATE(4198), + [sym_map] = STATE(4198), + [sym__nullary_operator] = STATE(4198), + [sym_unary_operator] = STATE(4198), + [sym_binary_operator] = STATE(4198), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4198), + [sym_call] = STATE(4198), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4198), + [sym_anonymous_function] = STATE(4198), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2145), [sym_integer] = ACTIONS(2145), [sym_float] = ACTIONS(2145), [sym_char] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), [sym_atom] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110838,86 +110604,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(844), }, [651] = { - [sym__expression] = STATE(3696), - [sym_block] = STATE(3696), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3696), - [sym_nil] = STATE(3696), - [sym__atom] = STATE(3696), - [sym_quoted_atom] = STATE(3696), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3696), - [sym_charlist] = STATE(3696), - [sym_sigil] = STATE(3696), - [sym_list] = STATE(3696), - [sym_tuple] = STATE(3696), - [sym_bitstring] = STATE(3696), - [sym_map] = STATE(3696), - [sym__nullary_operator] = STATE(3696), - [sym_unary_operator] = STATE(3696), - [sym_binary_operator] = STATE(3696), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3696), - [sym_call] = STATE(3696), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3696), - [sym_anonymous_function] = STATE(3696), + [sym__expression] = STATE(4530), + [sym_block] = STATE(4530), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4530), + [sym_nil] = STATE(4530), + [sym__atom] = STATE(4530), + [sym_quoted_atom] = STATE(4530), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4530), + [sym_charlist] = STATE(4530), + [sym_sigil] = STATE(4530), + [sym_list] = STATE(4530), + [sym_tuple] = STATE(4530), + [sym_bitstring] = STATE(4530), + [sym_map] = STATE(4530), + [sym__nullary_operator] = STATE(4530), + [sym_unary_operator] = STATE(4530), + [sym_binary_operator] = STATE(4530), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4530), + [sym_call] = STATE(4530), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4530), + [sym_anonymous_function] = STATE(4530), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2147), [sym_integer] = ACTIONS(2147), [sym_float] = ACTIONS(2147), [sym_char] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2147), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -110955,86 +110721,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1085), }, [652] = { - [sym__expression] = STATE(4216), - [sym_block] = STATE(4216), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4216), - [sym_nil] = STATE(4216), - [sym__atom] = STATE(4216), - [sym_quoted_atom] = STATE(4216), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4216), - [sym_charlist] = STATE(4216), - [sym_sigil] = STATE(4216), - [sym_list] = STATE(4216), - [sym_tuple] = STATE(4216), - [sym_bitstring] = STATE(4216), - [sym_map] = STATE(4216), - [sym__nullary_operator] = STATE(4216), - [sym_unary_operator] = STATE(4216), - [sym_binary_operator] = STATE(4216), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4216), - [sym_call] = STATE(4216), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4216), - [sym_anonymous_function] = STATE(4216), + [sym__expression] = STATE(4454), + [sym_block] = STATE(4454), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4454), + [sym_nil] = STATE(4454), + [sym__atom] = STATE(4454), + [sym_quoted_atom] = STATE(4454), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4454), + [sym_charlist] = STATE(4454), + [sym_sigil] = STATE(4454), + [sym_list] = STATE(4454), + [sym_tuple] = STATE(4454), + [sym_bitstring] = STATE(4454), + [sym_map] = STATE(4454), + [sym__nullary_operator] = STATE(4454), + [sym_unary_operator] = STATE(4454), + [sym_binary_operator] = STATE(4454), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4454), + [sym_call] = STATE(4454), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4454), + [sym_anonymous_function] = STATE(4454), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2149), [sym_integer] = ACTIONS(2149), [sym_float] = ACTIONS(2149), [sym_char] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -111072,86 +110838,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1135), }, [653] = { - [sym__expression] = STATE(3697), - [sym_block] = STATE(3697), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3697), - [sym_nil] = STATE(3697), - [sym__atom] = STATE(3697), - [sym_quoted_atom] = STATE(3697), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3697), - [sym_charlist] = STATE(3697), - [sym_sigil] = STATE(3697), - [sym_list] = STATE(3697), - [sym_tuple] = STATE(3697), - [sym_bitstring] = STATE(3697), - [sym_map] = STATE(3697), - [sym__nullary_operator] = STATE(3697), - [sym_unary_operator] = STATE(3697), - [sym_binary_operator] = STATE(3697), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3697), - [sym_call] = STATE(3697), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3697), - [sym_anonymous_function] = STATE(3697), + [sym__expression] = STATE(3324), + [sym_block] = STATE(3324), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3324), + [sym_nil] = STATE(3324), + [sym__atom] = STATE(3324), + [sym_quoted_atom] = STATE(3324), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3324), + [sym_charlist] = STATE(3324), + [sym_sigil] = STATE(3324), + [sym_list] = STATE(3324), + [sym_tuple] = STATE(3324), + [sym_bitstring] = STATE(3324), + [sym_map] = STATE(3324), + [sym__nullary_operator] = STATE(3324), + [sym_unary_operator] = STATE(3324), + [sym_binary_operator] = STATE(3324), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3324), + [sym_call] = STATE(3324), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3324), + [sym_anonymous_function] = STATE(3324), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2151), [sym_integer] = ACTIONS(2151), [sym_float] = ACTIONS(2151), [sym_char] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -111189,86 +110955,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(532), }, [654] = { - [sym__expression] = STATE(3785), - [sym_block] = STATE(3785), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3785), - [sym_nil] = STATE(3785), - [sym__atom] = STATE(3785), - [sym_quoted_atom] = STATE(3785), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3785), - [sym_charlist] = STATE(3785), - [sym_sigil] = STATE(3785), - [sym_list] = STATE(3785), - [sym_tuple] = STATE(3785), - [sym_bitstring] = STATE(3785), - [sym_map] = STATE(3785), - [sym__nullary_operator] = STATE(3785), - [sym_unary_operator] = STATE(3785), - [sym_binary_operator] = STATE(3785), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3785), - [sym_call] = STATE(3785), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3785), - [sym_anonymous_function] = STATE(3785), + [sym__expression] = STATE(4455), + [sym_block] = STATE(4455), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4455), + [sym_nil] = STATE(4455), + [sym__atom] = STATE(4455), + [sym_quoted_atom] = STATE(4455), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4455), + [sym_charlist] = STATE(4455), + [sym_sigil] = STATE(4455), + [sym_list] = STATE(4455), + [sym_tuple] = STATE(4455), + [sym_bitstring] = STATE(4455), + [sym_map] = STATE(4455), + [sym__nullary_operator] = STATE(4455), + [sym_unary_operator] = STATE(4455), + [sym_binary_operator] = STATE(4455), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4455), + [sym_call] = STATE(4455), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4455), + [sym_anonymous_function] = STATE(4455), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2153), [sym_integer] = ACTIONS(2153), [sym_float] = ACTIONS(2153), [sym_char] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2153), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -111306,86 +111072,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1135), }, [655] = { - [sym__expression] = STATE(3786), - [sym_block] = STATE(3786), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3786), - [sym_nil] = STATE(3786), - [sym__atom] = STATE(3786), - [sym_quoted_atom] = STATE(3786), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3786), - [sym_charlist] = STATE(3786), - [sym_sigil] = STATE(3786), - [sym_list] = STATE(3786), - [sym_tuple] = STATE(3786), - [sym_bitstring] = STATE(3786), - [sym_map] = STATE(3786), - [sym__nullary_operator] = STATE(3786), - [sym_unary_operator] = STATE(3786), - [sym_binary_operator] = STATE(3786), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3786), - [sym_call] = STATE(3786), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3786), - [sym_anonymous_function] = STATE(3786), + [sym__expression] = STATE(4529), + [sym_block] = STATE(4529), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4529), + [sym_nil] = STATE(4529), + [sym__atom] = STATE(4529), + [sym_quoted_atom] = STATE(4529), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4529), + [sym_charlist] = STATE(4529), + [sym_sigil] = STATE(4529), + [sym_list] = STATE(4529), + [sym_tuple] = STATE(4529), + [sym_bitstring] = STATE(4529), + [sym_map] = STATE(4529), + [sym__nullary_operator] = STATE(4529), + [sym_unary_operator] = STATE(4529), + [sym_binary_operator] = STATE(4529), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4529), + [sym_call] = STATE(4529), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4529), + [sym_anonymous_function] = STATE(4529), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2155), [sym_integer] = ACTIONS(2155), [sym_float] = ACTIONS(2155), [sym_char] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2155), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -111423,54 +111189,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1085), }, [656] = { - [sym__expression] = STATE(3940), - [sym_block] = STATE(3940), + [sym__expression] = STATE(3649), + [sym_block] = STATE(3649), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3940), - [sym_nil] = STATE(3940), - [sym__atom] = STATE(3940), - [sym_quoted_atom] = STATE(3940), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3940), - [sym_charlist] = STATE(3940), - [sym_sigil] = STATE(3940), - [sym_list] = STATE(3940), - [sym_tuple] = STATE(3940), - [sym_bitstring] = STATE(3940), - [sym_map] = STATE(3940), - [sym__nullary_operator] = STATE(3940), - [sym_unary_operator] = STATE(3940), - [sym_binary_operator] = STATE(3940), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3940), - [sym_call] = STATE(3940), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3649), + [sym_nil] = STATE(3649), + [sym__atom] = STATE(3649), + [sym_quoted_atom] = STATE(3649), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3649), + [sym_charlist] = STATE(3649), + [sym_sigil] = STATE(3649), + [sym_list] = STATE(3649), + [sym_tuple] = STATE(3649), + [sym_bitstring] = STATE(3649), + [sym_map] = STATE(3649), + [sym__nullary_operator] = STATE(3649), + [sym_unary_operator] = STATE(3649), + [sym_binary_operator] = STATE(3649), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3649), + [sym_call] = STATE(3649), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3940), - [sym_anonymous_function] = STATE(3940), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3649), + [sym_anonymous_function] = STATE(3649), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2157), @@ -111549,55 +111315,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [657] = { - [sym__expression] = STATE(1763), - [sym_block] = STATE(1763), + [sym__expression] = STATE(1667), + [sym_block] = STATE(1667), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(1763), - [sym_nil] = STATE(1763), - [sym__atom] = STATE(1763), - [sym_quoted_atom] = STATE(1763), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1763), - [sym_charlist] = STATE(1763), - [sym_sigil] = STATE(1763), - [sym_list] = STATE(1763), - [sym_tuple] = STATE(1763), - [sym_bitstring] = STATE(1763), - [sym_map] = STATE(1763), - [sym__nullary_operator] = STATE(1763), - [sym_unary_operator] = STATE(1763), - [sym_binary_operator] = STATE(1763), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1763), - [sym_call] = STATE(1763), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(1667), + [sym_nil] = STATE(1667), + [sym__atom] = STATE(1667), + [sym_quoted_atom] = STATE(1667), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(1667), + [sym_charlist] = STATE(1667), + [sym_sigil] = STATE(1667), + [sym_list] = STATE(1667), + [sym_tuple] = STATE(1667), + [sym_bitstring] = STATE(1667), + [sym_map] = STATE(1667), + [sym__nullary_operator] = STATE(1667), + [sym_unary_operator] = STATE(1667), + [sym_binary_operator] = STATE(1667), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(1667), + [sym_call] = STATE(1667), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1763), - [sym_anonymous_function] = STATE(1763), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(1667), + [sym_anonymous_function] = STATE(1667), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(2159), - [sym_integer] = ACTIONS(2159), - [sym_float] = ACTIONS(2159), - [sym_char] = ACTIONS(2159), + [sym_alias] = ACTIONS(1801), + [sym_integer] = ACTIONS(1801), + [sym_float] = ACTIONS(1801), + [sym_char] = ACTIONS(1801), [anon_sym_true] = ACTIONS(69), [anon_sym_false] = ACTIONS(69), [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2159), + [sym_atom] = ACTIONS(1801), [anon_sym_DQUOTE] = ACTIONS(73), [anon_sym_SQUOTE] = ACTIONS(75), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), @@ -111666,77 +111432,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(117), }, [658] = { - [sym__expression] = STATE(3869), - [sym_block] = STATE(3869), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3869), - [sym_nil] = STATE(3869), - [sym__atom] = STATE(3869), - [sym_quoted_atom] = STATE(3869), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3869), - [sym_charlist] = STATE(3869), - [sym_sigil] = STATE(3869), - [sym_list] = STATE(3869), - [sym_tuple] = STATE(3869), - [sym_bitstring] = STATE(3869), - [sym_map] = STATE(3869), - [sym__nullary_operator] = STATE(3869), - [sym_unary_operator] = STATE(3869), - [sym_binary_operator] = STATE(3869), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3869), - [sym_call] = STATE(3869), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3869), - [sym_anonymous_function] = STATE(3869), + [sym__expression] = STATE(4079), + [sym_block] = STATE(4079), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4079), + [sym_nil] = STATE(4079), + [sym__atom] = STATE(4079), + [sym_quoted_atom] = STATE(4079), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4079), + [sym_charlist] = STATE(4079), + [sym_sigil] = STATE(4079), + [sym_list] = STATE(4079), + [sym_tuple] = STATE(4079), + [sym_bitstring] = STATE(4079), + [sym_map] = STATE(4079), + [sym__nullary_operator] = STATE(4079), + [sym_unary_operator] = STATE(4079), + [sym_binary_operator] = STATE(4079), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4079), + [sym_call] = STATE(4079), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4079), + [sym_anonymous_function] = STATE(4079), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2161), - [sym_integer] = ACTIONS(2161), - [sym_float] = ACTIONS(2161), - [sym_char] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2159), + [sym_integer] = ACTIONS(2159), + [sym_float] = ACTIONS(2159), + [sym_char] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -111774,86 +111540,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [659] = { - [sym__expression] = STATE(3870), - [sym_block] = STATE(3870), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3870), - [sym_nil] = STATE(3870), - [sym__atom] = STATE(3870), - [sym_quoted_atom] = STATE(3870), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3870), - [sym_charlist] = STATE(3870), - [sym_sigil] = STATE(3870), - [sym_list] = STATE(3870), - [sym_tuple] = STATE(3870), - [sym_bitstring] = STATE(3870), - [sym_map] = STATE(3870), - [sym__nullary_operator] = STATE(3870), - [sym_unary_operator] = STATE(3870), - [sym_binary_operator] = STATE(3870), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3870), - [sym_call] = STATE(3870), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3870), - [sym_anonymous_function] = STATE(3870), + [sym__expression] = STATE(3293), + [sym_block] = STATE(3293), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3293), + [sym_nil] = STATE(3293), + [sym__atom] = STATE(3293), + [sym_quoted_atom] = STATE(3293), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3293), + [sym_charlist] = STATE(3293), + [sym_sigil] = STATE(3293), + [sym_list] = STATE(3293), + [sym_tuple] = STATE(3293), + [sym_bitstring] = STATE(3293), + [sym_map] = STATE(3293), + [sym__nullary_operator] = STATE(3293), + [sym_unary_operator] = STATE(3293), + [sym_binary_operator] = STATE(3293), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3293), + [sym_call] = STATE(3293), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3293), + [sym_anonymous_function] = STATE(3293), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2163), - [sym_integer] = ACTIONS(2163), - [sym_float] = ACTIONS(2163), - [sym_char] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(2163), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(2161), + [sym_integer] = ACTIONS(2161), + [sym_float] = ACTIONS(2161), + [sym_char] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -111891,86 +111657,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(532), }, [660] = { - [sym__expression] = STATE(3875), - [sym_block] = STATE(3875), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3875), - [sym_nil] = STATE(3875), - [sym__atom] = STATE(3875), - [sym_quoted_atom] = STATE(3875), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3875), - [sym_charlist] = STATE(3875), - [sym_sigil] = STATE(3875), - [sym_list] = STATE(3875), - [sym_tuple] = STATE(3875), - [sym_bitstring] = STATE(3875), - [sym_map] = STATE(3875), - [sym__nullary_operator] = STATE(3875), - [sym_unary_operator] = STATE(3875), - [sym_binary_operator] = STATE(3875), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3875), - [sym_call] = STATE(3875), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3875), - [sym_anonymous_function] = STATE(3875), + [sym__expression] = STATE(4528), + [sym_block] = STATE(4528), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4528), + [sym_nil] = STATE(4528), + [sym__atom] = STATE(4528), + [sym_quoted_atom] = STATE(4528), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4528), + [sym_charlist] = STATE(4528), + [sym_sigil] = STATE(4528), + [sym_list] = STATE(4528), + [sym_tuple] = STATE(4528), + [sym_bitstring] = STATE(4528), + [sym_map] = STATE(4528), + [sym__nullary_operator] = STATE(4528), + [sym_unary_operator] = STATE(4528), + [sym_binary_operator] = STATE(4528), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4528), + [sym_call] = STATE(4528), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4528), + [sym_anonymous_function] = STATE(4528), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2165), - [sym_integer] = ACTIONS(2165), - [sym_float] = ACTIONS(2165), - [sym_char] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2163), + [sym_integer] = ACTIONS(2163), + [sym_float] = ACTIONS(2163), + [sym_char] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112008,86 +111774,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1085), }, [661] = { - [sym__expression] = STATE(3876), - [sym_block] = STATE(3876), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3876), - [sym_nil] = STATE(3876), - [sym__atom] = STATE(3876), - [sym_quoted_atom] = STATE(3876), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3876), - [sym_charlist] = STATE(3876), - [sym_sigil] = STATE(3876), - [sym_list] = STATE(3876), - [sym_tuple] = STATE(3876), - [sym_bitstring] = STATE(3876), - [sym_map] = STATE(3876), - [sym__nullary_operator] = STATE(3876), - [sym_unary_operator] = STATE(3876), - [sym_binary_operator] = STATE(3876), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3876), - [sym_call] = STATE(3876), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3876), - [sym_anonymous_function] = STATE(3876), + [sym__expression] = STATE(4527), + [sym_block] = STATE(4527), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4527), + [sym_nil] = STATE(4527), + [sym__atom] = STATE(4527), + [sym_quoted_atom] = STATE(4527), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4527), + [sym_charlist] = STATE(4527), + [sym_sigil] = STATE(4527), + [sym_list] = STATE(4527), + [sym_tuple] = STATE(4527), + [sym_bitstring] = STATE(4527), + [sym_map] = STATE(4527), + [sym__nullary_operator] = STATE(4527), + [sym_unary_operator] = STATE(4527), + [sym_binary_operator] = STATE(4527), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4527), + [sym_call] = STATE(4527), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4527), + [sym_anonymous_function] = STATE(4527), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2167), - [sym_integer] = ACTIONS(2167), - [sym_float] = ACTIONS(2167), - [sym_char] = ACTIONS(2167), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), - [sym_atom] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2165), + [sym_integer] = ACTIONS(2165), + [sym_float] = ACTIONS(2165), + [sym_char] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112125,86 +111891,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1085), }, [662] = { - [sym__expression] = STATE(4474), - [sym_block] = STATE(4474), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4474), - [sym_nil] = STATE(4474), - [sym__atom] = STATE(4474), - [sym_quoted_atom] = STATE(4474), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4474), - [sym_charlist] = STATE(4474), - [sym_sigil] = STATE(4474), - [sym_list] = STATE(4474), - [sym_tuple] = STATE(4474), - [sym_bitstring] = STATE(4474), - [sym_map] = STATE(4474), - [sym__nullary_operator] = STATE(4474), - [sym_unary_operator] = STATE(4474), - [sym_binary_operator] = STATE(4474), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4474), - [sym_call] = STATE(4474), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4474), - [sym_anonymous_function] = STATE(4474), + [sym__expression] = STATE(4526), + [sym_block] = STATE(4526), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4526), + [sym_nil] = STATE(4526), + [sym__atom] = STATE(4526), + [sym_quoted_atom] = STATE(4526), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4526), + [sym_charlist] = STATE(4526), + [sym_sigil] = STATE(4526), + [sym_list] = STATE(4526), + [sym_tuple] = STATE(4526), + [sym_bitstring] = STATE(4526), + [sym_map] = STATE(4526), + [sym__nullary_operator] = STATE(4526), + [sym_unary_operator] = STATE(4526), + [sym_binary_operator] = STATE(4526), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4526), + [sym_call] = STATE(4526), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4526), + [sym_anonymous_function] = STATE(4526), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(2169), - [sym_integer] = ACTIONS(2169), - [sym_float] = ACTIONS(2169), - [sym_char] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2167), + [sym_char] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112242,86 +112008,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, [663] = { - [sym__expression] = STATE(4475), - [sym_block] = STATE(4475), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4475), - [sym_nil] = STATE(4475), - [sym__atom] = STATE(4475), - [sym_quoted_atom] = STATE(4475), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4475), - [sym_charlist] = STATE(4475), - [sym_sigil] = STATE(4475), - [sym_list] = STATE(4475), - [sym_tuple] = STATE(4475), - [sym_bitstring] = STATE(4475), - [sym_map] = STATE(4475), - [sym__nullary_operator] = STATE(4475), - [sym_unary_operator] = STATE(4475), - [sym_binary_operator] = STATE(4475), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4475), - [sym_call] = STATE(4475), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4475), - [sym_anonymous_function] = STATE(4475), + [sym__expression] = STATE(4525), + [sym_block] = STATE(4525), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4525), + [sym_nil] = STATE(4525), + [sym__atom] = STATE(4525), + [sym_quoted_atom] = STATE(4525), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4525), + [sym_charlist] = STATE(4525), + [sym_sigil] = STATE(4525), + [sym_list] = STATE(4525), + [sym_tuple] = STATE(4525), + [sym_bitstring] = STATE(4525), + [sym_map] = STATE(4525), + [sym__nullary_operator] = STATE(4525), + [sym_unary_operator] = STATE(4525), + [sym_binary_operator] = STATE(4525), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4525), + [sym_call] = STATE(4525), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4525), + [sym_anonymous_function] = STATE(4525), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(2171), - [sym_integer] = ACTIONS(2171), - [sym_float] = ACTIONS(2171), - [sym_char] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(2171), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2169), + [sym_integer] = ACTIONS(2169), + [sym_float] = ACTIONS(2169), + [sym_char] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112359,64 +112125,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, [664] = { - [sym__expression] = STATE(4476), - [sym_block] = STATE(4476), + [sym__expression] = STATE(4457), + [sym_block] = STATE(4457), [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4476), - [sym_nil] = STATE(4476), - [sym__atom] = STATE(4476), - [sym_quoted_atom] = STATE(4476), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4476), - [sym_charlist] = STATE(4476), - [sym_sigil] = STATE(4476), - [sym_list] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_bitstring] = STATE(4476), - [sym_map] = STATE(4476), - [sym__nullary_operator] = STATE(4476), - [sym_unary_operator] = STATE(4476), - [sym_binary_operator] = STATE(4476), + [sym_boolean] = STATE(4457), + [sym_nil] = STATE(4457), + [sym__atom] = STATE(4457), + [sym_quoted_atom] = STATE(4457), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4457), + [sym_charlist] = STATE(4457), + [sym_sigil] = STATE(4457), + [sym_list] = STATE(4457), + [sym_tuple] = STATE(4457), + [sym_bitstring] = STATE(4457), + [sym_map] = STATE(4457), + [sym__nullary_operator] = STATE(4457), + [sym_unary_operator] = STATE(4457), + [sym_binary_operator] = STATE(4457), [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4476), - [sym_call] = STATE(4476), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), + [sym_dot] = STATE(4457), + [sym_call] = STATE(4457), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4476), - [sym_anonymous_function] = STATE(4476), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4457), + [sym_anonymous_function] = STATE(4457), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1091), [aux_sym_identifier_token1] = ACTIONS(1093), [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(2173), - [sym_integer] = ACTIONS(2173), - [sym_float] = ACTIONS(2173), - [sym_char] = ACTIONS(2173), + [sym_alias] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2171), + [sym_char] = ACTIONS(2171), [anon_sym_true] = ACTIONS(1097), [anon_sym_false] = ACTIONS(1097), [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(2173), + [sym_atom] = ACTIONS(2171), [anon_sym_DQUOTE] = ACTIONS(1101), [anon_sym_SQUOTE] = ACTIONS(1103), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), @@ -112485,55 +112251,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1135), }, [665] = { - [sym__expression] = STATE(4284), - [sym_block] = STATE(4284), + [sym__expression] = STATE(4129), + [sym_block] = STATE(4129), [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4284), - [sym_nil] = STATE(4284), - [sym__atom] = STATE(4284), - [sym_quoted_atom] = STATE(4284), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4284), - [sym_charlist] = STATE(4284), - [sym_sigil] = STATE(4284), - [sym_list] = STATE(4284), - [sym_tuple] = STATE(4284), - [sym_bitstring] = STATE(4284), - [sym_map] = STATE(4284), - [sym__nullary_operator] = STATE(4284), - [sym_unary_operator] = STATE(4284), - [sym_binary_operator] = STATE(4284), + [sym_boolean] = STATE(4129), + [sym_nil] = STATE(4129), + [sym__atom] = STATE(4129), + [sym_quoted_atom] = STATE(4129), + [sym__quoted_i_double] = STATE(4094), + [sym__quoted_i_single] = STATE(4099), + [sym__quoted_i_heredoc_single] = STATE(4101), + [sym__quoted_i_heredoc_double] = STATE(4200), + [sym_string] = STATE(4129), + [sym_charlist] = STATE(4129), + [sym_sigil] = STATE(4129), + [sym_list] = STATE(4129), + [sym_tuple] = STATE(4129), + [sym_bitstring] = STATE(4129), + [sym_map] = STATE(4129), + [sym__nullary_operator] = STATE(4129), + [sym_unary_operator] = STATE(4129), + [sym_binary_operator] = STATE(4129), [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4284), - [sym_call] = STATE(4284), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), + [sym_dot] = STATE(4129), + [sym_call] = STATE(4129), + [sym__call_without_parentheses] = STATE(4204), + [sym__call_with_parentheses] = STATE(4207), + [sym__local_call_without_parentheses] = STATE(4223), + [sym__local_call_with_parentheses] = STATE(3178), + [sym__local_call_just_do_block] = STATE(4254), + [sym__remote_call_without_parentheses] = STATE(4361), + [sym__remote_call_with_parentheses] = STATE(3406), [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4284), - [sym_anonymous_function] = STATE(4284), + [sym__anonymous_call] = STATE(3323), + [sym__anonymous_dot] = STATE(6837), + [sym__double_call] = STATE(4417), + [sym_access_call] = STATE(4129), + [sym_anonymous_function] = STATE(4129), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2175), - [sym_integer] = ACTIONS(2175), - [sym_float] = ACTIONS(2175), - [sym_char] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), + [sym_alias] = ACTIONS(2173), + [sym_integer] = ACTIONS(2173), + [sym_float] = ACTIONS(2173), + [sym_char] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2175), + [sym_atom] = ACTIONS(2173), [anon_sym_DQUOTE] = ACTIONS(23), [anon_sym_SQUOTE] = ACTIONS(25), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), @@ -112602,77 +112368,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(57), }, [666] = { - [sym__expression] = STATE(4477), - [sym_block] = STATE(4477), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4477), - [sym_nil] = STATE(4477), - [sym__atom] = STATE(4477), - [sym_quoted_atom] = STATE(4477), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4477), - [sym_charlist] = STATE(4477), - [sym_sigil] = STATE(4477), - [sym_list] = STATE(4477), - [sym_tuple] = STATE(4477), - [sym_bitstring] = STATE(4477), - [sym_map] = STATE(4477), - [sym__nullary_operator] = STATE(4477), - [sym_unary_operator] = STATE(4477), - [sym_binary_operator] = STATE(4477), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4477), - [sym_call] = STATE(4477), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4477), - [sym_anonymous_function] = STATE(4477), + [sym__expression] = STATE(4126), + [sym_block] = STATE(4126), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4126), + [sym_nil] = STATE(4126), + [sym__atom] = STATE(4126), + [sym_quoted_atom] = STATE(4126), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4126), + [sym_charlist] = STATE(4126), + [sym_sigil] = STATE(4126), + [sym_list] = STATE(4126), + [sym_tuple] = STATE(4126), + [sym_bitstring] = STATE(4126), + [sym_map] = STATE(4126), + [sym__nullary_operator] = STATE(4126), + [sym_unary_operator] = STATE(4126), + [sym_binary_operator] = STATE(4126), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4126), + [sym_call] = STATE(4126), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4126), + [sym_anonymous_function] = STATE(4126), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2175), + [sym_char] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(954), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1367), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(958), + }, + [667] = { + [sym__expression] = STATE(3299), + [sym_block] = STATE(3299), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3299), + [sym_nil] = STATE(3299), + [sym__atom] = STATE(3299), + [sym_quoted_atom] = STATE(3299), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3299), + [sym_charlist] = STATE(3299), + [sym_sigil] = STATE(3299), + [sym_list] = STATE(3299), + [sym_tuple] = STATE(3299), + [sym_bitstring] = STATE(3299), + [sym_map] = STATE(3299), + [sym__nullary_operator] = STATE(3299), + [sym_unary_operator] = STATE(3299), + [sym_binary_operator] = STATE(3299), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3299), + [sym_call] = STATE(3299), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3299), + [sym_anonymous_function] = STATE(3299), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2177), [sym_integer] = ACTIONS(2177), [sym_float] = ACTIONS(2177), [sym_char] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2177), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112710,86 +112593,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(532), }, - [667] = { - [sym__expression] = STATE(4478), - [sym_block] = STATE(4478), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4478), - [sym_nil] = STATE(4478), - [sym__atom] = STATE(4478), - [sym_quoted_atom] = STATE(4478), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4478), - [sym_charlist] = STATE(4478), - [sym_sigil] = STATE(4478), - [sym_list] = STATE(4478), - [sym_tuple] = STATE(4478), - [sym_bitstring] = STATE(4478), - [sym_map] = STATE(4478), - [sym__nullary_operator] = STATE(4478), - [sym_unary_operator] = STATE(4478), - [sym_binary_operator] = STATE(4478), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4478), - [sym_call] = STATE(4478), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4478), - [sym_anonymous_function] = STATE(4478), + [668] = { + [sym__expression] = STATE(3285), + [sym_block] = STATE(3285), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3285), + [sym_nil] = STATE(3285), + [sym__atom] = STATE(3285), + [sym_quoted_atom] = STATE(3285), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3285), + [sym_charlist] = STATE(3285), + [sym_sigil] = STATE(3285), + [sym_list] = STATE(3285), + [sym_tuple] = STATE(3285), + [sym_bitstring] = STATE(3285), + [sym_map] = STATE(3285), + [sym__nullary_operator] = STATE(3285), + [sym_unary_operator] = STATE(3285), + [sym_binary_operator] = STATE(3285), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3285), + [sym_call] = STATE(3285), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3285), + [sym_anonymous_function] = STATE(3285), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2179), [sym_integer] = ACTIONS(2179), [sym_float] = ACTIONS(2179), [sym_char] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2179), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112827,86 +112710,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(532), }, - [668] = { - [sym__expression] = STATE(4479), - [sym_block] = STATE(4479), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4479), - [sym_nil] = STATE(4479), - [sym__atom] = STATE(4479), - [sym_quoted_atom] = STATE(4479), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4479), - [sym_charlist] = STATE(4479), - [sym_sigil] = STATE(4479), - [sym_list] = STATE(4479), - [sym_tuple] = STATE(4479), - [sym_bitstring] = STATE(4479), - [sym_map] = STATE(4479), - [sym__nullary_operator] = STATE(4479), - [sym_unary_operator] = STATE(4479), - [sym_binary_operator] = STATE(4479), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4479), - [sym_call] = STATE(4479), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4479), - [sym_anonymous_function] = STATE(4479), + [669] = { + [sym__expression] = STATE(4128), + [sym_block] = STATE(4128), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4128), + [sym_nil] = STATE(4128), + [sym__atom] = STATE(4128), + [sym_quoted_atom] = STATE(4128), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4128), + [sym_charlist] = STATE(4128), + [sym_sigil] = STATE(4128), + [sym_list] = STATE(4128), + [sym_tuple] = STATE(4128), + [sym_bitstring] = STATE(4128), + [sym_map] = STATE(4128), + [sym__nullary_operator] = STATE(4128), + [sym_unary_operator] = STATE(4128), + [sym_binary_operator] = STATE(4128), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4128), + [sym_call] = STATE(4128), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4128), + [sym_anonymous_function] = STATE(4128), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2181), [sym_integer] = ACTIONS(2181), [sym_float] = ACTIONS(2181), [sym_char] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -112944,86 +112827,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(958), }, - [669] = { - [sym__expression] = STATE(4455), - [sym_block] = STATE(4455), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4455), - [sym_nil] = STATE(4455), - [sym__atom] = STATE(4455), - [sym_quoted_atom] = STATE(4455), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4455), - [sym_charlist] = STATE(4455), - [sym_sigil] = STATE(4455), - [sym_list] = STATE(4455), - [sym_tuple] = STATE(4455), - [sym_bitstring] = STATE(4455), - [sym_map] = STATE(4455), - [sym__nullary_operator] = STATE(4455), - [sym_unary_operator] = STATE(4455), - [sym_binary_operator] = STATE(4455), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4455), - [sym_call] = STATE(4455), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4455), - [sym_anonymous_function] = STATE(4455), + [670] = { + [sym__expression] = STATE(3282), + [sym_block] = STATE(3282), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3282), + [sym_nil] = STATE(3282), + [sym__atom] = STATE(3282), + [sym_quoted_atom] = STATE(3282), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3282), + [sym_charlist] = STATE(3282), + [sym_sigil] = STATE(3282), + [sym_list] = STATE(3282), + [sym_tuple] = STATE(3282), + [sym_bitstring] = STATE(3282), + [sym_map] = STATE(3282), + [sym__nullary_operator] = STATE(3282), + [sym_unary_operator] = STATE(3282), + [sym_binary_operator] = STATE(3282), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3282), + [sym_call] = STATE(3282), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3282), + [sym_anonymous_function] = STATE(3282), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2183), [sym_integer] = ACTIONS(2183), [sym_float] = ACTIONS(2183), [sym_char] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113061,86 +112944,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(532), }, - [670] = { - [sym__expression] = STATE(4481), - [sym_block] = STATE(4481), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4481), - [sym_nil] = STATE(4481), - [sym__atom] = STATE(4481), - [sym_quoted_atom] = STATE(4481), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4481), - [sym_charlist] = STATE(4481), - [sym_sigil] = STATE(4481), - [sym_list] = STATE(4481), - [sym_tuple] = STATE(4481), - [sym_bitstring] = STATE(4481), - [sym_map] = STATE(4481), - [sym__nullary_operator] = STATE(4481), - [sym_unary_operator] = STATE(4481), - [sym_binary_operator] = STATE(4481), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4481), - [sym_call] = STATE(4481), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4481), - [sym_anonymous_function] = STATE(4481), + [671] = { + [sym__expression] = STATE(4523), + [sym_block] = STATE(4523), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4523), + [sym_nil] = STATE(4523), + [sym__atom] = STATE(4523), + [sym_quoted_atom] = STATE(4523), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4523), + [sym_charlist] = STATE(4523), + [sym_sigil] = STATE(4523), + [sym_list] = STATE(4523), + [sym_tuple] = STATE(4523), + [sym_bitstring] = STATE(4523), + [sym_map] = STATE(4523), + [sym__nullary_operator] = STATE(4523), + [sym_unary_operator] = STATE(4523), + [sym_binary_operator] = STATE(4523), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4523), + [sym_call] = STATE(4523), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4523), + [sym_anonymous_function] = STATE(4523), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2185), [sym_integer] = ACTIONS(2185), [sym_float] = ACTIONS(2185), [sym_char] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113178,86 +113061,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [671] = { - [sym__expression] = STATE(4482), - [sym_block] = STATE(4482), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4482), - [sym_nil] = STATE(4482), - [sym__atom] = STATE(4482), - [sym_quoted_atom] = STATE(4482), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4482), - [sym_charlist] = STATE(4482), - [sym_sigil] = STATE(4482), - [sym_list] = STATE(4482), - [sym_tuple] = STATE(4482), - [sym_bitstring] = STATE(4482), - [sym_map] = STATE(4482), - [sym__nullary_operator] = STATE(4482), - [sym_unary_operator] = STATE(4482), - [sym_binary_operator] = STATE(4482), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4482), - [sym_call] = STATE(4482), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4482), - [sym_anonymous_function] = STATE(4482), + [672] = { + [sym__expression] = STATE(3243), + [sym_block] = STATE(3243), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3243), + [sym_nil] = STATE(3243), + [sym__atom] = STATE(3243), + [sym_quoted_atom] = STATE(3243), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3243), + [sym_charlist] = STATE(3243), + [sym_sigil] = STATE(3243), + [sym_list] = STATE(3243), + [sym_tuple] = STATE(3243), + [sym_bitstring] = STATE(3243), + [sym_map] = STATE(3243), + [sym__nullary_operator] = STATE(3243), + [sym_unary_operator] = STATE(3243), + [sym_binary_operator] = STATE(3243), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3243), + [sym_call] = STATE(3243), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3243), + [sym_anonymous_function] = STATE(3243), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2187), [sym_integer] = ACTIONS(2187), [sym_float] = ACTIONS(2187), [sym_char] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2187), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113295,86 +113178,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(532), }, - [672] = { - [sym__expression] = STATE(4483), - [sym_block] = STATE(4483), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4483), - [sym_nil] = STATE(4483), - [sym__atom] = STATE(4483), - [sym_quoted_atom] = STATE(4483), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4483), - [sym_charlist] = STATE(4483), - [sym_sigil] = STATE(4483), - [sym_list] = STATE(4483), - [sym_tuple] = STATE(4483), - [sym_bitstring] = STATE(4483), - [sym_map] = STATE(4483), - [sym__nullary_operator] = STATE(4483), - [sym_unary_operator] = STATE(4483), - [sym_binary_operator] = STATE(4483), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4483), - [sym_call] = STATE(4483), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4483), - [sym_anonymous_function] = STATE(4483), + [673] = { + [sym__expression] = STATE(4212), + [sym_block] = STATE(4212), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4212), + [sym_nil] = STATE(4212), + [sym__atom] = STATE(4212), + [sym_quoted_atom] = STATE(4212), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4212), + [sym_charlist] = STATE(4212), + [sym_sigil] = STATE(4212), + [sym_list] = STATE(4212), + [sym_tuple] = STATE(4212), + [sym_bitstring] = STATE(4212), + [sym_map] = STATE(4212), + [sym__nullary_operator] = STATE(4212), + [sym_unary_operator] = STATE(4212), + [sym_binary_operator] = STATE(4212), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4212), + [sym_call] = STATE(4212), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4212), + [sym_anonymous_function] = STATE(4212), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2189), [sym_integer] = ACTIONS(2189), [sym_float] = ACTIONS(2189), [sym_char] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2189), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113412,86 +113295,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(958), }, - [673] = { - [sym__expression] = STATE(3877), - [sym_block] = STATE(3877), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3877), - [sym_nil] = STATE(3877), - [sym__atom] = STATE(3877), - [sym_quoted_atom] = STATE(3877), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3877), - [sym_charlist] = STATE(3877), - [sym_sigil] = STATE(3877), - [sym_list] = STATE(3877), - [sym_tuple] = STATE(3877), - [sym_bitstring] = STATE(3877), - [sym_map] = STATE(3877), - [sym__nullary_operator] = STATE(3877), - [sym_unary_operator] = STATE(3877), - [sym_binary_operator] = STATE(3877), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3877), - [sym_call] = STATE(3877), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3877), - [sym_anonymous_function] = STATE(3877), + [674] = { + [sym__expression] = STATE(4522), + [sym_block] = STATE(4522), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4522), + [sym_nil] = STATE(4522), + [sym__atom] = STATE(4522), + [sym_quoted_atom] = STATE(4522), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4522), + [sym_charlist] = STATE(4522), + [sym_sigil] = STATE(4522), + [sym_list] = STATE(4522), + [sym_tuple] = STATE(4522), + [sym_bitstring] = STATE(4522), + [sym_map] = STATE(4522), + [sym__nullary_operator] = STATE(4522), + [sym_unary_operator] = STATE(4522), + [sym_binary_operator] = STATE(4522), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4522), + [sym_call] = STATE(4522), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4522), + [sym_anonymous_function] = STATE(4522), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2191), [sym_integer] = ACTIONS(2191), [sym_float] = ACTIONS(2191), [sym_char] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2191), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113529,86 +113412,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [674] = { - [sym__expression] = STATE(4486), - [sym_block] = STATE(4486), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4486), - [sym_nil] = STATE(4486), - [sym__atom] = STATE(4486), - [sym_quoted_atom] = STATE(4486), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4486), - [sym_charlist] = STATE(4486), - [sym_sigil] = STATE(4486), - [sym_list] = STATE(4486), - [sym_tuple] = STATE(4486), - [sym_bitstring] = STATE(4486), - [sym_map] = STATE(4486), - [sym__nullary_operator] = STATE(4486), - [sym_unary_operator] = STATE(4486), - [sym_binary_operator] = STATE(4486), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4486), - [sym_call] = STATE(4486), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4486), - [sym_anonymous_function] = STATE(4486), + [675] = { + [sym__expression] = STATE(4132), + [sym_block] = STATE(4132), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4132), + [sym_nil] = STATE(4132), + [sym__atom] = STATE(4132), + [sym_quoted_atom] = STATE(4132), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4132), + [sym_charlist] = STATE(4132), + [sym_sigil] = STATE(4132), + [sym_list] = STATE(4132), + [sym_tuple] = STATE(4132), + [sym_bitstring] = STATE(4132), + [sym_map] = STATE(4132), + [sym__nullary_operator] = STATE(4132), + [sym_unary_operator] = STATE(4132), + [sym_binary_operator] = STATE(4132), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4132), + [sym_call] = STATE(4132), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4132), + [sym_anonymous_function] = STATE(4132), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2193), [sym_integer] = ACTIONS(2193), [sym_float] = ACTIONS(2193), [sym_char] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2193), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113646,86 +113529,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(958), }, - [675] = { - [sym__expression] = STATE(4487), - [sym_block] = STATE(4487), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4487), - [sym_nil] = STATE(4487), - [sym__atom] = STATE(4487), - [sym_quoted_atom] = STATE(4487), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4487), - [sym_charlist] = STATE(4487), - [sym_sigil] = STATE(4487), - [sym_list] = STATE(4487), - [sym_tuple] = STATE(4487), - [sym_bitstring] = STATE(4487), - [sym_map] = STATE(4487), - [sym__nullary_operator] = STATE(4487), - [sym_unary_operator] = STATE(4487), - [sym_binary_operator] = STATE(4487), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4487), - [sym_call] = STATE(4487), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4487), - [sym_anonymous_function] = STATE(4487), + [676] = { + [sym__expression] = STATE(4521), + [sym_block] = STATE(4521), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4521), + [sym_nil] = STATE(4521), + [sym__atom] = STATE(4521), + [sym_quoted_atom] = STATE(4521), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4521), + [sym_charlist] = STATE(4521), + [sym_sigil] = STATE(4521), + [sym_list] = STATE(4521), + [sym_tuple] = STATE(4521), + [sym_bitstring] = STATE(4521), + [sym_map] = STATE(4521), + [sym__nullary_operator] = STATE(4521), + [sym_unary_operator] = STATE(4521), + [sym_binary_operator] = STATE(4521), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4521), + [sym_call] = STATE(4521), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4521), + [sym_anonymous_function] = STATE(4521), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2195), [sym_integer] = ACTIONS(2195), [sym_float] = ACTIONS(2195), [sym_char] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113763,86 +113646,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [676] = { - [sym__expression] = STATE(4491), - [sym_block] = STATE(4491), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4491), - [sym_nil] = STATE(4491), - [sym__atom] = STATE(4491), - [sym_quoted_atom] = STATE(4491), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4491), - [sym_charlist] = STATE(4491), - [sym_sigil] = STATE(4491), - [sym_list] = STATE(4491), - [sym_tuple] = STATE(4491), - [sym_bitstring] = STATE(4491), - [sym_map] = STATE(4491), - [sym__nullary_operator] = STATE(4491), - [sym_unary_operator] = STATE(4491), - [sym_binary_operator] = STATE(4491), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4491), - [sym_call] = STATE(4491), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4491), - [sym_anonymous_function] = STATE(4491), + [677] = { + [sym__expression] = STATE(4133), + [sym_block] = STATE(4133), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4133), + [sym_nil] = STATE(4133), + [sym__atom] = STATE(4133), + [sym_quoted_atom] = STATE(4133), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4133), + [sym_charlist] = STATE(4133), + [sym_sigil] = STATE(4133), + [sym_list] = STATE(4133), + [sym_tuple] = STATE(4133), + [sym_bitstring] = STATE(4133), + [sym_map] = STATE(4133), + [sym__nullary_operator] = STATE(4133), + [sym_unary_operator] = STATE(4133), + [sym_binary_operator] = STATE(4133), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4133), + [sym_call] = STATE(4133), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4133), + [sym_anonymous_function] = STATE(4133), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2197), [sym_integer] = ACTIONS(2197), [sym_float] = ACTIONS(2197), [sym_char] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113880,86 +113763,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(958), }, - [677] = { - [sym__expression] = STATE(4492), - [sym_block] = STATE(4492), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4492), - [sym_nil] = STATE(4492), - [sym__atom] = STATE(4492), - [sym_quoted_atom] = STATE(4492), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4492), - [sym_charlist] = STATE(4492), - [sym_sigil] = STATE(4492), - [sym_list] = STATE(4492), - [sym_tuple] = STATE(4492), - [sym_bitstring] = STATE(4492), - [sym_map] = STATE(4492), - [sym__nullary_operator] = STATE(4492), - [sym_unary_operator] = STATE(4492), - [sym_binary_operator] = STATE(4492), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4492), - [sym_call] = STATE(4492), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4492), - [sym_anonymous_function] = STATE(4492), + [678] = { + [sym__expression] = STATE(4520), + [sym_block] = STATE(4520), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4520), + [sym_nil] = STATE(4520), + [sym__atom] = STATE(4520), + [sym_quoted_atom] = STATE(4520), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4520), + [sym_charlist] = STATE(4520), + [sym_sigil] = STATE(4520), + [sym_list] = STATE(4520), + [sym_tuple] = STATE(4520), + [sym_bitstring] = STATE(4520), + [sym_map] = STATE(4520), + [sym__nullary_operator] = STATE(4520), + [sym_unary_operator] = STATE(4520), + [sym_binary_operator] = STATE(4520), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4520), + [sym_call] = STATE(4520), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4520), + [sym_anonymous_function] = STATE(4520), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2199), [sym_integer] = ACTIONS(2199), [sym_float] = ACTIONS(2199), [sym_char] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -113997,86 +113880,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [678] = { - [sym__expression] = STATE(4232), - [sym_block] = STATE(4232), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4232), - [sym_nil] = STATE(4232), - [sym__atom] = STATE(4232), - [sym_quoted_atom] = STATE(4232), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4232), - [sym_charlist] = STATE(4232), - [sym_sigil] = STATE(4232), - [sym_list] = STATE(4232), - [sym_tuple] = STATE(4232), - [sym_bitstring] = STATE(4232), - [sym_map] = STATE(4232), - [sym__nullary_operator] = STATE(4232), - [sym_unary_operator] = STATE(4232), - [sym_binary_operator] = STATE(4232), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4232), - [sym_call] = STATE(4232), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4232), - [sym_anonymous_function] = STATE(4232), + [679] = { + [sym__expression] = STATE(4137), + [sym_block] = STATE(4137), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4137), + [sym_nil] = STATE(4137), + [sym__atom] = STATE(4137), + [sym_quoted_atom] = STATE(4137), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4137), + [sym_charlist] = STATE(4137), + [sym_sigil] = STATE(4137), + [sym_list] = STATE(4137), + [sym_tuple] = STATE(4137), + [sym_bitstring] = STATE(4137), + [sym_map] = STATE(4137), + [sym__nullary_operator] = STATE(4137), + [sym_unary_operator] = STATE(4137), + [sym_binary_operator] = STATE(4137), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4137), + [sym_call] = STATE(4137), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4137), + [sym_anonymous_function] = STATE(4137), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2201), [sym_integer] = ACTIONS(2201), [sym_float] = ACTIONS(2201), [sym_char] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2201), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -114114,86 +113997,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(958), }, - [679] = { - [sym__expression] = STATE(4497), - [sym_block] = STATE(4497), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4497), - [sym_nil] = STATE(4497), - [sym__atom] = STATE(4497), - [sym_quoted_atom] = STATE(4497), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4497), - [sym_charlist] = STATE(4497), - [sym_sigil] = STATE(4497), - [sym_list] = STATE(4497), - [sym_tuple] = STATE(4497), - [sym_bitstring] = STATE(4497), - [sym_map] = STATE(4497), - [sym__nullary_operator] = STATE(4497), - [sym_unary_operator] = STATE(4497), - [sym_binary_operator] = STATE(4497), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4497), - [sym_call] = STATE(4497), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4497), - [sym_anonymous_function] = STATE(4497), + [680] = { + [sym__expression] = STATE(3684), + [sym_block] = STATE(3684), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3684), + [sym_nil] = STATE(3684), + [sym__atom] = STATE(3684), + [sym_quoted_atom] = STATE(3684), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3684), + [sym_charlist] = STATE(3684), + [sym_sigil] = STATE(3684), + [sym_list] = STATE(3684), + [sym_tuple] = STATE(3684), + [sym_bitstring] = STATE(3684), + [sym_map] = STATE(3684), + [sym__nullary_operator] = STATE(3684), + [sym_unary_operator] = STATE(3684), + [sym_binary_operator] = STATE(3684), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3684), + [sym_call] = STATE(3684), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3684), + [sym_anonymous_function] = STATE(3684), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2203), [sym_integer] = ACTIONS(2203), [sym_float] = ACTIONS(2203), [sym_char] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), + [anon_sym_not] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(696), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -114231,54 +114114,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(700), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(117), }, - [680] = { - [sym__expression] = STATE(4009), - [sym_block] = STATE(4009), + [681] = { + [sym__expression] = STATE(3685), + [sym_block] = STATE(3685), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4009), - [sym_nil] = STATE(4009), - [sym__atom] = STATE(4009), - [sym_quoted_atom] = STATE(4009), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4009), - [sym_charlist] = STATE(4009), - [sym_sigil] = STATE(4009), - [sym_list] = STATE(4009), - [sym_tuple] = STATE(4009), - [sym_bitstring] = STATE(4009), - [sym_map] = STATE(4009), - [sym__nullary_operator] = STATE(4009), - [sym_unary_operator] = STATE(4009), - [sym_binary_operator] = STATE(4009), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4009), - [sym_call] = STATE(4009), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3685), + [sym_nil] = STATE(3685), + [sym__atom] = STATE(3685), + [sym_quoted_atom] = STATE(3685), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3685), + [sym_charlist] = STATE(3685), + [sym_sigil] = STATE(3685), + [sym_list] = STATE(3685), + [sym_tuple] = STATE(3685), + [sym_bitstring] = STATE(3685), + [sym_map] = STATE(3685), + [sym__nullary_operator] = STATE(3685), + [sym_unary_operator] = STATE(3685), + [sym_binary_operator] = STATE(3685), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3685), + [sym_call] = STATE(3685), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4009), - [sym_anonymous_function] = STATE(4009), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3685), + [sym_anonymous_function] = STATE(3685), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2205), @@ -114356,78 +114239,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [681] = { - [sym__expression] = STATE(4007), - [sym_block] = STATE(4007), - [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4007), - [sym_nil] = STATE(4007), - [sym__atom] = STATE(4007), - [sym_quoted_atom] = STATE(4007), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4007), - [sym_charlist] = STATE(4007), - [sym_sigil] = STATE(4007), - [sym_list] = STATE(4007), - [sym_tuple] = STATE(4007), - [sym_bitstring] = STATE(4007), - [sym_map] = STATE(4007), - [sym__nullary_operator] = STATE(4007), - [sym_unary_operator] = STATE(4007), - [sym_binary_operator] = STATE(4007), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4007), - [sym_call] = STATE(4007), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4007), - [sym_anonymous_function] = STATE(4007), + [682] = { + [sym__expression] = STATE(4552), + [sym_block] = STATE(4552), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4552), + [sym_nil] = STATE(4552), + [sym__atom] = STATE(4552), + [sym_quoted_atom] = STATE(4552), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4552), + [sym_charlist] = STATE(4552), + [sym_sigil] = STATE(4552), + [sym_list] = STATE(4552), + [sym_tuple] = STATE(4552), + [sym_bitstring] = STATE(4552), + [sym_map] = STATE(4552), + [sym__nullary_operator] = STATE(4552), + [sym_unary_operator] = STATE(4552), + [sym_binary_operator] = STATE(4552), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4552), + [sym_call] = STATE(4552), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4552), + [sym_anonymous_function] = STATE(4552), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2207), [sym_integer] = ACTIONS(2207), [sym_float] = ACTIONS(2207), [sym_char] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -114465,86 +114348,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(700), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(1135), }, - [682] = { - [sym__expression] = STATE(4499), - [sym_block] = STATE(4499), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4499), - [sym_nil] = STATE(4499), - [sym__atom] = STATE(4499), - [sym_quoted_atom] = STATE(4499), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4499), - [sym_charlist] = STATE(4499), - [sym_sigil] = STATE(4499), - [sym_list] = STATE(4499), - [sym_tuple] = STATE(4499), - [sym_bitstring] = STATE(4499), - [sym_map] = STATE(4499), - [sym__nullary_operator] = STATE(4499), - [sym_unary_operator] = STATE(4499), - [sym_binary_operator] = STATE(4499), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4499), - [sym_call] = STATE(4499), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4499), - [sym_anonymous_function] = STATE(4499), + [683] = { + [sym__expression] = STATE(3687), + [sym_block] = STATE(3687), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3687), + [sym_nil] = STATE(3687), + [sym__atom] = STATE(3687), + [sym_quoted_atom] = STATE(3687), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3687), + [sym_charlist] = STATE(3687), + [sym_sigil] = STATE(3687), + [sym_list] = STATE(3687), + [sym_tuple] = STATE(3687), + [sym_bitstring] = STATE(3687), + [sym_map] = STATE(3687), + [sym__nullary_operator] = STATE(3687), + [sym_unary_operator] = STATE(3687), + [sym_binary_operator] = STATE(3687), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3687), + [sym_call] = STATE(3687), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3687), + [sym_anonymous_function] = STATE(3687), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2209), [sym_integer] = ACTIONS(2209), [sym_float] = ACTIONS(2209), [sym_char] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), + [anon_sym_not] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(696), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -114582,54 +114465,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(700), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(117), }, - [683] = { - [sym__expression] = STATE(4004), - [sym_block] = STATE(4004), + [684] = { + [sym__expression] = STATE(3741), + [sym_block] = STATE(3741), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4004), - [sym_nil] = STATE(4004), - [sym__atom] = STATE(4004), - [sym_quoted_atom] = STATE(4004), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4004), - [sym_charlist] = STATE(4004), - [sym_sigil] = STATE(4004), - [sym_list] = STATE(4004), - [sym_tuple] = STATE(4004), - [sym_bitstring] = STATE(4004), - [sym_map] = STATE(4004), - [sym__nullary_operator] = STATE(4004), - [sym_unary_operator] = STATE(4004), - [sym_binary_operator] = STATE(4004), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4004), - [sym_call] = STATE(4004), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3741), + [sym_nil] = STATE(3741), + [sym__atom] = STATE(3741), + [sym_quoted_atom] = STATE(3741), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3741), + [sym_charlist] = STATE(3741), + [sym_sigil] = STATE(3741), + [sym_list] = STATE(3741), + [sym_tuple] = STATE(3741), + [sym_bitstring] = STATE(3741), + [sym_map] = STATE(3741), + [sym__nullary_operator] = STATE(3741), + [sym_unary_operator] = STATE(3741), + [sym_binary_operator] = STATE(3741), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3741), + [sym_call] = STATE(3741), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4004), - [sym_anonymous_function] = STATE(4004), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3741), + [sym_anonymous_function] = STATE(3741), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2211), @@ -114707,46 +114590,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [684] = { - [sym__expression] = STATE(4003), - [sym_block] = STATE(4003), + [685] = { + [sym__expression] = STATE(3697), + [sym_block] = STATE(3697), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4003), - [sym_nil] = STATE(4003), - [sym__atom] = STATE(4003), - [sym_quoted_atom] = STATE(4003), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4003), - [sym_charlist] = STATE(4003), - [sym_sigil] = STATE(4003), - [sym_list] = STATE(4003), - [sym_tuple] = STATE(4003), - [sym_bitstring] = STATE(4003), - [sym_map] = STATE(4003), - [sym__nullary_operator] = STATE(4003), - [sym_unary_operator] = STATE(4003), - [sym_binary_operator] = STATE(4003), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4003), - [sym_call] = STATE(4003), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3697), + [sym_nil] = STATE(3697), + [sym__atom] = STATE(3697), + [sym_quoted_atom] = STATE(3697), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3697), + [sym_charlist] = STATE(3697), + [sym_sigil] = STATE(3697), + [sym_list] = STATE(3697), + [sym_tuple] = STATE(3697), + [sym_bitstring] = STATE(3697), + [sym_map] = STATE(3697), + [sym__nullary_operator] = STATE(3697), + [sym_unary_operator] = STATE(3697), + [sym_binary_operator] = STATE(3697), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3697), + [sym_call] = STATE(3697), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4003), - [sym_anonymous_function] = STATE(4003), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3697), + [sym_anonymous_function] = STATE(3697), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2213), @@ -114824,46 +114707,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [685] = { - [sym__expression] = STATE(4002), - [sym_block] = STATE(4002), + [686] = { + [sym__expression] = STATE(3698), + [sym_block] = STATE(3698), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4002), - [sym_nil] = STATE(4002), - [sym__atom] = STATE(4002), - [sym_quoted_atom] = STATE(4002), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4002), - [sym_charlist] = STATE(4002), - [sym_sigil] = STATE(4002), - [sym_list] = STATE(4002), - [sym_tuple] = STATE(4002), - [sym_bitstring] = STATE(4002), - [sym_map] = STATE(4002), - [sym__nullary_operator] = STATE(4002), - [sym_unary_operator] = STATE(4002), - [sym_binary_operator] = STATE(4002), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4002), - [sym_call] = STATE(4002), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3698), + [sym_nil] = STATE(3698), + [sym__atom] = STATE(3698), + [sym_quoted_atom] = STATE(3698), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3698), + [sym_charlist] = STATE(3698), + [sym_sigil] = STATE(3698), + [sym_list] = STATE(3698), + [sym_tuple] = STATE(3698), + [sym_bitstring] = STATE(3698), + [sym_map] = STATE(3698), + [sym__nullary_operator] = STATE(3698), + [sym_unary_operator] = STATE(3698), + [sym_binary_operator] = STATE(3698), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3698), + [sym_call] = STATE(3698), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4002), - [sym_anonymous_function] = STATE(4002), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3698), + [sym_anonymous_function] = STATE(3698), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2215), @@ -114941,78 +114824,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [686] = { - [sym__expression] = STATE(4001), - [sym_block] = STATE(4001), - [sym_identifier] = STATE(55), - [sym_boolean] = STATE(4001), - [sym_nil] = STATE(4001), - [sym__atom] = STATE(4001), - [sym_quoted_atom] = STATE(4001), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(4001), - [sym_charlist] = STATE(4001), - [sym_sigil] = STATE(4001), - [sym_list] = STATE(4001), - [sym_tuple] = STATE(4001), - [sym_bitstring] = STATE(4001), - [sym_map] = STATE(4001), - [sym__nullary_operator] = STATE(4001), - [sym_unary_operator] = STATE(4001), - [sym_binary_operator] = STATE(4001), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(4001), - [sym_call] = STATE(4001), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(4001), - [sym_anonymous_function] = STATE(4001), + [687] = { + [sym__expression] = STATE(4518), + [sym_block] = STATE(4518), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4518), + [sym_nil] = STATE(4518), + [sym__atom] = STATE(4518), + [sym_quoted_atom] = STATE(4518), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4518), + [sym_charlist] = STATE(4518), + [sym_sigil] = STATE(4518), + [sym_list] = STATE(4518), + [sym_tuple] = STATE(4518), + [sym_bitstring] = STATE(4518), + [sym_map] = STATE(4518), + [sym__nullary_operator] = STATE(4518), + [sym_unary_operator] = STATE(4518), + [sym_binary_operator] = STATE(4518), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4518), + [sym_call] = STATE(4518), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4518), + [sym_anonymous_function] = STATE(4518), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2217), [sym_integer] = ACTIONS(2217), [sym_float] = ACTIONS(2217), [sym_char] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -115050,86 +114933,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(700), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [687] = { - [sym__expression] = STATE(4173), - [sym_block] = STATE(4173), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4173), - [sym_nil] = STATE(4173), - [sym__atom] = STATE(4173), - [sym_quoted_atom] = STATE(4173), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4173), - [sym_charlist] = STATE(4173), - [sym_sigil] = STATE(4173), - [sym_list] = STATE(4173), - [sym_tuple] = STATE(4173), - [sym_bitstring] = STATE(4173), - [sym_map] = STATE(4173), - [sym__nullary_operator] = STATE(4173), - [sym_unary_operator] = STATE(4173), - [sym_binary_operator] = STATE(4173), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4173), - [sym_call] = STATE(4173), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4173), - [sym_anonymous_function] = STATE(4173), + [688] = { + [sym__expression] = STATE(3700), + [sym_block] = STATE(3700), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3700), + [sym_nil] = STATE(3700), + [sym__atom] = STATE(3700), + [sym_quoted_atom] = STATE(3700), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3700), + [sym_charlist] = STATE(3700), + [sym_sigil] = STATE(3700), + [sym_list] = STATE(3700), + [sym_tuple] = STATE(3700), + [sym_bitstring] = STATE(3700), + [sym_map] = STATE(3700), + [sym__nullary_operator] = STATE(3700), + [sym_unary_operator] = STATE(3700), + [sym_binary_operator] = STATE(3700), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3700), + [sym_call] = STATE(3700), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(43), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3700), + [sym_anonymous_function] = STATE(3700), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1381), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2219), [sym_integer] = ACTIONS(2219), [sym_float] = ACTIONS(2219), [sym_char] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(69), + [anon_sym_false] = ACTIONS(69), + [anon_sym_nil] = ACTIONS(71), [sym_atom] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE] = ACTIONS(75), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), + [anon_sym_LBRACE] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(83), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(89), + [anon_sym_PERCENT] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), + [anon_sym_not] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(696), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -115167,54 +115050,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(111), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(700), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(117), }, - [688] = { - [sym__expression] = STATE(3998), - [sym_block] = STATE(3998), + [689] = { + [sym__expression] = STATE(3701), + [sym_block] = STATE(3701), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3998), - [sym_nil] = STATE(3998), - [sym__atom] = STATE(3998), - [sym_quoted_atom] = STATE(3998), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3998), - [sym_charlist] = STATE(3998), - [sym_sigil] = STATE(3998), - [sym_list] = STATE(3998), - [sym_tuple] = STATE(3998), - [sym_bitstring] = STATE(3998), - [sym_map] = STATE(3998), - [sym__nullary_operator] = STATE(3998), - [sym_unary_operator] = STATE(3998), - [sym_binary_operator] = STATE(3998), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3998), - [sym_call] = STATE(3998), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3701), + [sym_nil] = STATE(3701), + [sym__atom] = STATE(3701), + [sym_quoted_atom] = STATE(3701), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3701), + [sym_charlist] = STATE(3701), + [sym_sigil] = STATE(3701), + [sym_list] = STATE(3701), + [sym_tuple] = STATE(3701), + [sym_bitstring] = STATE(3701), + [sym_map] = STATE(3701), + [sym__nullary_operator] = STATE(3701), + [sym_unary_operator] = STATE(3701), + [sym_binary_operator] = STATE(3701), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3701), + [sym_call] = STATE(3701), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3998), - [sym_anonymous_function] = STATE(3998), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3701), + [sym_anonymous_function] = STATE(3701), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2221), @@ -115292,46 +115175,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [689] = { - [sym__expression] = STATE(3997), - [sym_block] = STATE(3997), + [690] = { + [sym__expression] = STATE(3499), + [sym_block] = STATE(3499), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3997), - [sym_nil] = STATE(3997), - [sym__atom] = STATE(3997), - [sym_quoted_atom] = STATE(3997), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3997), - [sym_charlist] = STATE(3997), - [sym_sigil] = STATE(3997), - [sym_list] = STATE(3997), - [sym_tuple] = STATE(3997), - [sym_bitstring] = STATE(3997), - [sym_map] = STATE(3997), - [sym__nullary_operator] = STATE(3997), - [sym_unary_operator] = STATE(3997), - [sym_binary_operator] = STATE(3997), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3997), - [sym_call] = STATE(3997), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3499), + [sym_nil] = STATE(3499), + [sym__atom] = STATE(3499), + [sym_quoted_atom] = STATE(3499), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3499), + [sym_charlist] = STATE(3499), + [sym_sigil] = STATE(3499), + [sym_list] = STATE(3499), + [sym_tuple] = STATE(3499), + [sym_bitstring] = STATE(3499), + [sym_map] = STATE(3499), + [sym__nullary_operator] = STATE(3499), + [sym_unary_operator] = STATE(3499), + [sym_binary_operator] = STATE(3499), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3499), + [sym_call] = STATE(3499), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3997), - [sym_anonymous_function] = STATE(3997), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3499), + [sym_anonymous_function] = STATE(3499), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2223), @@ -115409,46 +115292,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [690] = { - [sym__expression] = STATE(3996), - [sym_block] = STATE(3996), + [691] = { + [sym__expression] = STATE(3703), + [sym_block] = STATE(3703), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3996), - [sym_nil] = STATE(3996), - [sym__atom] = STATE(3996), - [sym_quoted_atom] = STATE(3996), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3996), - [sym_charlist] = STATE(3996), - [sym_sigil] = STATE(3996), - [sym_list] = STATE(3996), - [sym_tuple] = STATE(3996), - [sym_bitstring] = STATE(3996), - [sym_map] = STATE(3996), - [sym__nullary_operator] = STATE(3996), - [sym_unary_operator] = STATE(3996), - [sym_binary_operator] = STATE(3996), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3996), - [sym_call] = STATE(3996), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3703), + [sym_nil] = STATE(3703), + [sym__atom] = STATE(3703), + [sym_quoted_atom] = STATE(3703), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3703), + [sym_charlist] = STATE(3703), + [sym_sigil] = STATE(3703), + [sym_list] = STATE(3703), + [sym_tuple] = STATE(3703), + [sym_bitstring] = STATE(3703), + [sym_map] = STATE(3703), + [sym__nullary_operator] = STATE(3703), + [sym_unary_operator] = STATE(3703), + [sym_binary_operator] = STATE(3703), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3703), + [sym_call] = STATE(3703), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3996), - [sym_anonymous_function] = STATE(3996), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3703), + [sym_anonymous_function] = STATE(3703), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2225), @@ -115526,46 +115409,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [691] = { - [sym__expression] = STATE(3995), - [sym_block] = STATE(3995), + [692] = { + [sym__expression] = STATE(3704), + [sym_block] = STATE(3704), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3995), - [sym_nil] = STATE(3995), - [sym__atom] = STATE(3995), - [sym_quoted_atom] = STATE(3995), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3995), - [sym_charlist] = STATE(3995), - [sym_sigil] = STATE(3995), - [sym_list] = STATE(3995), - [sym_tuple] = STATE(3995), - [sym_bitstring] = STATE(3995), - [sym_map] = STATE(3995), - [sym__nullary_operator] = STATE(3995), - [sym_unary_operator] = STATE(3995), - [sym_binary_operator] = STATE(3995), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3995), - [sym_call] = STATE(3995), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3704), + [sym_nil] = STATE(3704), + [sym__atom] = STATE(3704), + [sym_quoted_atom] = STATE(3704), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3704), + [sym_charlist] = STATE(3704), + [sym_sigil] = STATE(3704), + [sym_list] = STATE(3704), + [sym_tuple] = STATE(3704), + [sym_bitstring] = STATE(3704), + [sym_map] = STATE(3704), + [sym__nullary_operator] = STATE(3704), + [sym_unary_operator] = STATE(3704), + [sym_binary_operator] = STATE(3704), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3704), + [sym_call] = STATE(3704), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3995), - [sym_anonymous_function] = STATE(3995), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3704), + [sym_anonymous_function] = STATE(3704), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2227), @@ -115643,46 +115526,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [692] = { - [sym__expression] = STATE(3994), - [sym_block] = STATE(3994), + [693] = { + [sym__expression] = STATE(3705), + [sym_block] = STATE(3705), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3994), - [sym_nil] = STATE(3994), - [sym__atom] = STATE(3994), - [sym_quoted_atom] = STATE(3994), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3994), - [sym_charlist] = STATE(3994), - [sym_sigil] = STATE(3994), - [sym_list] = STATE(3994), - [sym_tuple] = STATE(3994), - [sym_bitstring] = STATE(3994), - [sym_map] = STATE(3994), - [sym__nullary_operator] = STATE(3994), - [sym_unary_operator] = STATE(3994), - [sym_binary_operator] = STATE(3994), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3994), - [sym_call] = STATE(3994), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3705), + [sym_nil] = STATE(3705), + [sym__atom] = STATE(3705), + [sym_quoted_atom] = STATE(3705), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3705), + [sym_charlist] = STATE(3705), + [sym_sigil] = STATE(3705), + [sym_list] = STATE(3705), + [sym_tuple] = STATE(3705), + [sym_bitstring] = STATE(3705), + [sym_map] = STATE(3705), + [sym__nullary_operator] = STATE(3705), + [sym_unary_operator] = STATE(3705), + [sym_binary_operator] = STATE(3705), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3705), + [sym_call] = STATE(3705), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3994), - [sym_anonymous_function] = STATE(3994), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3705), + [sym_anonymous_function] = STATE(3705), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2229), @@ -115760,46 +115643,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [693] = { - [sym__expression] = STATE(3993), - [sym_block] = STATE(3993), + [694] = { + [sym__expression] = STATE(3706), + [sym_block] = STATE(3706), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3993), - [sym_nil] = STATE(3993), - [sym__atom] = STATE(3993), - [sym_quoted_atom] = STATE(3993), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3993), - [sym_charlist] = STATE(3993), - [sym_sigil] = STATE(3993), - [sym_list] = STATE(3993), - [sym_tuple] = STATE(3993), - [sym_bitstring] = STATE(3993), - [sym_map] = STATE(3993), - [sym__nullary_operator] = STATE(3993), - [sym_unary_operator] = STATE(3993), - [sym_binary_operator] = STATE(3993), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3993), - [sym_call] = STATE(3993), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3706), + [sym_nil] = STATE(3706), + [sym__atom] = STATE(3706), + [sym_quoted_atom] = STATE(3706), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3706), + [sym_charlist] = STATE(3706), + [sym_sigil] = STATE(3706), + [sym_list] = STATE(3706), + [sym_tuple] = STATE(3706), + [sym_bitstring] = STATE(3706), + [sym_map] = STATE(3706), + [sym__nullary_operator] = STATE(3706), + [sym_unary_operator] = STATE(3706), + [sym_binary_operator] = STATE(3706), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3706), + [sym_call] = STATE(3706), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3993), - [sym_anonymous_function] = STATE(3993), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3706), + [sym_anonymous_function] = STATE(3706), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2231), @@ -115877,46 +115760,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [694] = { - [sym__expression] = STATE(3992), - [sym_block] = STATE(3992), + [695] = { + [sym__expression] = STATE(3707), + [sym_block] = STATE(3707), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3992), - [sym_nil] = STATE(3992), - [sym__atom] = STATE(3992), - [sym_quoted_atom] = STATE(3992), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3992), - [sym_charlist] = STATE(3992), - [sym_sigil] = STATE(3992), - [sym_list] = STATE(3992), - [sym_tuple] = STATE(3992), - [sym_bitstring] = STATE(3992), - [sym_map] = STATE(3992), - [sym__nullary_operator] = STATE(3992), - [sym_unary_operator] = STATE(3992), - [sym_binary_operator] = STATE(3992), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3992), - [sym_call] = STATE(3992), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3707), + [sym_nil] = STATE(3707), + [sym__atom] = STATE(3707), + [sym_quoted_atom] = STATE(3707), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3707), + [sym_charlist] = STATE(3707), + [sym_sigil] = STATE(3707), + [sym_list] = STATE(3707), + [sym_tuple] = STATE(3707), + [sym_bitstring] = STATE(3707), + [sym_map] = STATE(3707), + [sym__nullary_operator] = STATE(3707), + [sym_unary_operator] = STATE(3707), + [sym_binary_operator] = STATE(3707), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3707), + [sym_call] = STATE(3707), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3992), - [sym_anonymous_function] = STATE(3992), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3707), + [sym_anonymous_function] = STATE(3707), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2233), @@ -115994,46 +115877,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [695] = { - [sym__expression] = STATE(3991), - [sym_block] = STATE(3991), + [696] = { + [sym__expression] = STATE(3708), + [sym_block] = STATE(3708), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3991), - [sym_nil] = STATE(3991), - [sym__atom] = STATE(3991), - [sym_quoted_atom] = STATE(3991), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3991), - [sym_charlist] = STATE(3991), - [sym_sigil] = STATE(3991), - [sym_list] = STATE(3991), - [sym_tuple] = STATE(3991), - [sym_bitstring] = STATE(3991), - [sym_map] = STATE(3991), - [sym__nullary_operator] = STATE(3991), - [sym_unary_operator] = STATE(3991), - [sym_binary_operator] = STATE(3991), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3991), - [sym_call] = STATE(3991), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3708), + [sym_nil] = STATE(3708), + [sym__atom] = STATE(3708), + [sym_quoted_atom] = STATE(3708), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3708), + [sym_charlist] = STATE(3708), + [sym_sigil] = STATE(3708), + [sym_list] = STATE(3708), + [sym_tuple] = STATE(3708), + [sym_bitstring] = STATE(3708), + [sym_map] = STATE(3708), + [sym__nullary_operator] = STATE(3708), + [sym_unary_operator] = STATE(3708), + [sym_binary_operator] = STATE(3708), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3708), + [sym_call] = STATE(3708), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3991), - [sym_anonymous_function] = STATE(3991), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3708), + [sym_anonymous_function] = STATE(3708), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2235), @@ -116111,46 +115994,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [696] = { - [sym__expression] = STATE(3990), - [sym_block] = STATE(3990), + [697] = { + [sym__expression] = STATE(3709), + [sym_block] = STATE(3709), [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3990), - [sym_nil] = STATE(3990), - [sym__atom] = STATE(3990), - [sym_quoted_atom] = STATE(3990), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3990), - [sym_charlist] = STATE(3990), - [sym_sigil] = STATE(3990), - [sym_list] = STATE(3990), - [sym_tuple] = STATE(3990), - [sym_bitstring] = STATE(3990), - [sym_map] = STATE(3990), - [sym__nullary_operator] = STATE(3990), - [sym_unary_operator] = STATE(3990), - [sym_binary_operator] = STATE(3990), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3990), - [sym_call] = STATE(3990), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), + [sym_boolean] = STATE(3709), + [sym_nil] = STATE(3709), + [sym__atom] = STATE(3709), + [sym_quoted_atom] = STATE(3709), + [sym__quoted_i_double] = STATE(1587), + [sym__quoted_i_single] = STATE(1586), + [sym__quoted_i_heredoc_single] = STATE(1757), + [sym__quoted_i_heredoc_double] = STATE(1756), + [sym_string] = STATE(3709), + [sym_charlist] = STATE(3709), + [sym_sigil] = STATE(3709), + [sym_list] = STATE(3709), + [sym_tuple] = STATE(3709), + [sym_bitstring] = STATE(3709), + [sym_map] = STATE(3709), + [sym__nullary_operator] = STATE(3709), + [sym_unary_operator] = STATE(3709), + [sym_binary_operator] = STATE(3709), + [sym_operator_identifier] = STATE(6886), + [sym_dot] = STATE(3709), + [sym_call] = STATE(3709), + [sym__call_without_parentheses] = STATE(1755), + [sym__call_with_parentheses] = STATE(1754), + [sym__local_call_without_parentheses] = STATE(1753), + [sym__local_call_with_parentheses] = STATE(1229), + [sym__local_call_just_do_block] = STATE(1752), + [sym__remote_call_without_parentheses] = STATE(1751), + [sym__remote_call_with_parentheses] = STATE(1228), [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3990), - [sym_anonymous_function] = STATE(3990), + [sym__anonymous_call] = STATE(1227), + [sym__anonymous_dot] = STATE(6826), + [sym__double_call] = STATE(1750), + [sym_access_call] = STATE(3709), + [sym_anonymous_function] = STATE(3709), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1381), [aux_sym_identifier_token1] = ACTIONS(686), [anon_sym_DOT_DOT_DOT] = ACTIONS(686), [sym_alias] = ACTIONS(2237), @@ -116228,78 +116111,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(117), }, - [697] = { - [sym__expression] = STATE(3989), - [sym_block] = STATE(3989), - [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3989), - [sym_nil] = STATE(3989), - [sym__atom] = STATE(3989), - [sym_quoted_atom] = STATE(3989), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3989), - [sym_charlist] = STATE(3989), - [sym_sigil] = STATE(3989), - [sym_list] = STATE(3989), - [sym_tuple] = STATE(3989), - [sym_bitstring] = STATE(3989), - [sym_map] = STATE(3989), - [sym__nullary_operator] = STATE(3989), - [sym_unary_operator] = STATE(3989), - [sym_binary_operator] = STATE(3989), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3989), - [sym_call] = STATE(3989), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3989), - [sym_anonymous_function] = STATE(3989), + [698] = { + [sym__expression] = STATE(4517), + [sym_block] = STATE(4517), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(4517), + [sym_nil] = STATE(4517), + [sym__atom] = STATE(4517), + [sym_quoted_atom] = STATE(4517), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(4517), + [sym_charlist] = STATE(4517), + [sym_sigil] = STATE(4517), + [sym_list] = STATE(4517), + [sym_tuple] = STATE(4517), + [sym_bitstring] = STATE(4517), + [sym_map] = STATE(4517), + [sym__nullary_operator] = STATE(4517), + [sym_unary_operator] = STATE(4517), + [sym_binary_operator] = STATE(4517), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(4517), + [sym_call] = STATE(4517), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(4517), + [sym_anonymous_function] = STATE(4517), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2239), [sym_integer] = ACTIONS(2239), [sym_float] = ACTIONS(2239), [sym_char] = ACTIONS(2239), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -116337,203 +116220,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(700), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [698] = { - [sym__expression] = STATE(4189), - [sym_block] = STATE(4189), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4189), - [sym_nil] = STATE(4189), - [sym__atom] = STATE(4189), - [sym_quoted_atom] = STATE(4189), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4189), - [sym_charlist] = STATE(4189), - [sym_sigil] = STATE(4189), - [sym_list] = STATE(4189), - [sym_tuple] = STATE(4189), - [sym_bitstring] = STATE(4189), - [sym_map] = STATE(4189), - [sym__nullary_operator] = STATE(4189), - [sym_unary_operator] = STATE(4189), - [sym_binary_operator] = STATE(4189), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4189), - [sym_call] = STATE(4189), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4189), - [sym_anonymous_function] = STATE(4189), + [699] = { + [sym__expression] = STATE(4201), + [sym_block] = STATE(4201), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4201), + [sym_nil] = STATE(4201), + [sym__atom] = STATE(4201), + [sym_quoted_atom] = STATE(4201), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4201), + [sym_charlist] = STATE(4201), + [sym_sigil] = STATE(4201), + [sym_list] = STATE(4201), + [sym_tuple] = STATE(4201), + [sym_bitstring] = STATE(4201), + [sym_map] = STATE(4201), + [sym__nullary_operator] = STATE(4201), + [sym_unary_operator] = STATE(4201), + [sym_binary_operator] = STATE(4201), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4201), + [sym_call] = STATE(4201), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4201), + [sym_anonymous_function] = STATE(4201), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2241), [sym_integer] = ACTIONS(2241), [sym_float] = ACTIONS(2241), [sym_char] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), [sym_atom] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), - }, - [699] = { - [sym__expression] = STATE(3591), - [sym_block] = STATE(3591), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3591), - [sym_nil] = STATE(3591), - [sym__atom] = STATE(3591), - [sym_quoted_atom] = STATE(3591), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3591), - [sym_charlist] = STATE(3591), - [sym_sigil] = STATE(3591), - [sym_list] = STATE(3591), - [sym_tuple] = STATE(3591), - [sym_bitstring] = STATE(3591), - [sym_map] = STATE(3591), - [sym__nullary_operator] = STATE(3591), - [sym_unary_operator] = STATE(3591), - [sym_binary_operator] = STATE(3591), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3591), - [sym_call] = STATE(3591), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3591), - [sym_anonymous_function] = STATE(3591), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(1437), - [sym_integer] = ACTIONS(1437), - [sym_float] = ACTIONS(1437), - [sym_char] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -116571,86 +116337,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(844), }, [700] = { - [sym__expression] = STATE(4062), - [sym_block] = STATE(4062), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4062), - [sym_nil] = STATE(4062), - [sym__atom] = STATE(4062), - [sym_quoted_atom] = STATE(4062), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4062), - [sym_charlist] = STATE(4062), - [sym_sigil] = STATE(4062), - [sym_list] = STATE(4062), - [sym_tuple] = STATE(4062), - [sym_bitstring] = STATE(4062), - [sym_map] = STATE(4062), - [sym__nullary_operator] = STATE(4062), - [sym_unary_operator] = STATE(4062), - [sym_binary_operator] = STATE(4062), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4062), - [sym_call] = STATE(4062), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4062), - [sym_anonymous_function] = STATE(4062), + [sym__expression] = STATE(4419), + [sym_block] = STATE(4419), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4419), + [sym_nil] = STATE(4419), + [sym__atom] = STATE(4419), + [sym_quoted_atom] = STATE(4419), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4419), + [sym_charlist] = STATE(4419), + [sym_sigil] = STATE(4419), + [sym_list] = STATE(4419), + [sym_tuple] = STATE(4419), + [sym_bitstring] = STATE(4419), + [sym_map] = STATE(4419), + [sym__nullary_operator] = STATE(4419), + [sym_unary_operator] = STATE(4419), + [sym_binary_operator] = STATE(4419), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4419), + [sym_call] = STATE(4419), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4419), + [sym_anonymous_function] = STATE(4419), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2243), [sym_integer] = ACTIONS(2243), [sym_float] = ACTIONS(2243), [sym_char] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -116688,86 +116454,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1135), }, [701] = { - [sym__expression] = STATE(3878), - [sym_block] = STATE(3878), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3878), - [sym_nil] = STATE(3878), - [sym__atom] = STATE(3878), - [sym_quoted_atom] = STATE(3878), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3878), - [sym_charlist] = STATE(3878), - [sym_sigil] = STATE(3878), - [sym_list] = STATE(3878), - [sym_tuple] = STATE(3878), - [sym_bitstring] = STATE(3878), - [sym_map] = STATE(3878), - [sym__nullary_operator] = STATE(3878), - [sym_unary_operator] = STATE(3878), - [sym_binary_operator] = STATE(3878), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3878), - [sym_call] = STATE(3878), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3878), - [sym_anonymous_function] = STATE(3878), + [sym__expression] = STATE(4467), + [sym_block] = STATE(4467), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4467), + [sym_nil] = STATE(4467), + [sym__atom] = STATE(4467), + [sym_quoted_atom] = STATE(4467), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4467), + [sym_charlist] = STATE(4467), + [sym_sigil] = STATE(4467), + [sym_list] = STATE(4467), + [sym_tuple] = STATE(4467), + [sym_bitstring] = STATE(4467), + [sym_map] = STATE(4467), + [sym__nullary_operator] = STATE(4467), + [sym_unary_operator] = STATE(4467), + [sym_binary_operator] = STATE(4467), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4467), + [sym_call] = STATE(4467), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4467), + [sym_anonymous_function] = STATE(4467), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2245), [sym_integer] = ACTIONS(2245), [sym_float] = ACTIONS(2245), [sym_char] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -116805,86 +116571,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(1135), }, [702] = { - [sym__expression] = STATE(3472), - [sym_block] = STATE(3472), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3472), - [sym_nil] = STATE(3472), - [sym__atom] = STATE(3472), - [sym_quoted_atom] = STATE(3472), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3472), - [sym_charlist] = STATE(3472), - [sym_sigil] = STATE(3472), - [sym_list] = STATE(3472), - [sym_tuple] = STATE(3472), - [sym_bitstring] = STATE(3472), - [sym_map] = STATE(3472), - [sym__nullary_operator] = STATE(3472), - [sym_unary_operator] = STATE(3472), - [sym_binary_operator] = STATE(3472), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3472), - [sym_call] = STATE(3472), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3472), - [sym_anonymous_function] = STATE(3472), + [sym__expression] = STATE(4202), + [sym_block] = STATE(4202), + [sym_identifier] = STATE(71), + [sym_boolean] = STATE(4202), + [sym_nil] = STATE(4202), + [sym__atom] = STATE(4202), + [sym_quoted_atom] = STATE(4202), + [sym__quoted_i_double] = STATE(4229), + [sym__quoted_i_single] = STATE(4228), + [sym__quoted_i_heredoc_single] = STATE(4227), + [sym__quoted_i_heredoc_double] = STATE(4226), + [sym_string] = STATE(4202), + [sym_charlist] = STATE(4202), + [sym_sigil] = STATE(4202), + [sym_list] = STATE(4202), + [sym_tuple] = STATE(4202), + [sym_bitstring] = STATE(4202), + [sym_map] = STATE(4202), + [sym__nullary_operator] = STATE(4202), + [sym_unary_operator] = STATE(4202), + [sym_binary_operator] = STATE(4202), + [sym_operator_identifier] = STATE(6910), + [sym_dot] = STATE(4202), + [sym_call] = STATE(4202), + [sym__call_without_parentheses] = STATE(4224), + [sym__call_with_parentheses] = STATE(4221), + [sym__local_call_without_parentheses] = STATE(4220), + [sym__local_call_with_parentheses] = STATE(3168), + [sym__local_call_just_do_block] = STATE(4216), + [sym__remote_call_without_parentheses] = STATE(4209), + [sym__remote_call_with_parentheses] = STATE(3165), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(3163), + [sym__anonymous_dot] = STATE(6775), + [sym__double_call] = STATE(4206), + [sym_access_call] = STATE(4202), + [sym_anonymous_function] = STATE(4202), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(1373), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2247), [sym_integer] = ACTIONS(2247), [sym_float] = ACTIONS(2247), [sym_char] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), + [anon_sym_true] = ACTIONS(808), + [anon_sym_false] = ACTIONS(808), + [anon_sym_nil] = ACTIONS(810), [sym_atom] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_SQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LBRACK] = ACTIONS(822), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_LT_LT] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(828), + [anon_sym_DOT_DOT] = ACTIONS(830), + [anon_sym_AMP] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(834), + [anon_sym_CARET] = ACTIONS(834), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), + [anon_sym_not] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(836), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -116922,86 +116688,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(842), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(844), }, [703] = { - [sym__expression] = STATE(3881), - [sym_block] = STATE(3881), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3881), - [sym_nil] = STATE(3881), - [sym__atom] = STATE(3881), - [sym_quoted_atom] = STATE(3881), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3881), - [sym_charlist] = STATE(3881), - [sym_sigil] = STATE(3881), - [sym_list] = STATE(3881), - [sym_tuple] = STATE(3881), - [sym_bitstring] = STATE(3881), - [sym_map] = STATE(3881), - [sym__nullary_operator] = STATE(3881), - [sym_unary_operator] = STATE(3881), - [sym_binary_operator] = STATE(3881), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3881), - [sym_call] = STATE(3881), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3881), - [sym_anonymous_function] = STATE(3881), + [sym__expression] = STATE(4141), + [sym_block] = STATE(4141), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4141), + [sym_nil] = STATE(4141), + [sym__atom] = STATE(4141), + [sym_quoted_atom] = STATE(4141), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4141), + [sym_charlist] = STATE(4141), + [sym_sigil] = STATE(4141), + [sym_list] = STATE(4141), + [sym_tuple] = STATE(4141), + [sym_bitstring] = STATE(4141), + [sym_map] = STATE(4141), + [sym__nullary_operator] = STATE(4141), + [sym_unary_operator] = STATE(4141), + [sym_binary_operator] = STATE(4141), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4141), + [sym_call] = STATE(4141), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4141), + [sym_anonymous_function] = STATE(4141), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2249), [sym_integer] = ACTIONS(2249), [sym_float] = ACTIONS(2249), [sym_char] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2249), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117039,86 +116805,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [704] = { - [sym__expression] = STATE(3882), - [sym_block] = STATE(3882), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3882), - [sym_nil] = STATE(3882), - [sym__atom] = STATE(3882), - [sym_quoted_atom] = STATE(3882), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3882), - [sym_charlist] = STATE(3882), - [sym_sigil] = STATE(3882), - [sym_list] = STATE(3882), - [sym_tuple] = STATE(3882), - [sym_bitstring] = STATE(3882), - [sym_map] = STATE(3882), - [sym__nullary_operator] = STATE(3882), - [sym_unary_operator] = STATE(3882), - [sym_binary_operator] = STATE(3882), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3882), - [sym_call] = STATE(3882), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3882), - [sym_anonymous_function] = STATE(3882), + [sym__expression] = STATE(4139), + [sym_block] = STATE(4139), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4139), + [sym_nil] = STATE(4139), + [sym__atom] = STATE(4139), + [sym_quoted_atom] = STATE(4139), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4139), + [sym_charlist] = STATE(4139), + [sym_sigil] = STATE(4139), + [sym_list] = STATE(4139), + [sym_tuple] = STATE(4139), + [sym_bitstring] = STATE(4139), + [sym_map] = STATE(4139), + [sym__nullary_operator] = STATE(4139), + [sym_unary_operator] = STATE(4139), + [sym_binary_operator] = STATE(4139), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4139), + [sym_call] = STATE(4139), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4139), + [sym_anonymous_function] = STATE(4139), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2251), [sym_integer] = ACTIONS(2251), [sym_float] = ACTIONS(2251), [sym_char] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117156,86 +116922,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [705] = { - [sym__expression] = STATE(3883), - [sym_block] = STATE(3883), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3883), - [sym_nil] = STATE(3883), - [sym__atom] = STATE(3883), - [sym_quoted_atom] = STATE(3883), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3883), - [sym_charlist] = STATE(3883), - [sym_sigil] = STATE(3883), - [sym_list] = STATE(3883), - [sym_tuple] = STATE(3883), - [sym_bitstring] = STATE(3883), - [sym_map] = STATE(3883), - [sym__nullary_operator] = STATE(3883), - [sym_unary_operator] = STATE(3883), - [sym_binary_operator] = STATE(3883), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3883), - [sym_call] = STATE(3883), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3883), - [sym_anonymous_function] = STATE(3883), + [sym__expression] = STATE(4138), + [sym_block] = STATE(4138), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4138), + [sym_nil] = STATE(4138), + [sym__atom] = STATE(4138), + [sym_quoted_atom] = STATE(4138), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4138), + [sym_charlist] = STATE(4138), + [sym_sigil] = STATE(4138), + [sym_list] = STATE(4138), + [sym_tuple] = STATE(4138), + [sym_bitstring] = STATE(4138), + [sym_map] = STATE(4138), + [sym__nullary_operator] = STATE(4138), + [sym_unary_operator] = STATE(4138), + [sym_binary_operator] = STATE(4138), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4138), + [sym_call] = STATE(4138), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4138), + [sym_anonymous_function] = STATE(4138), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2253), [sym_integer] = ACTIONS(2253), [sym_float] = ACTIONS(2253), [sym_char] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117273,86 +117039,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [706] = { - [sym__expression] = STATE(3884), - [sym_block] = STATE(3884), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3884), - [sym_nil] = STATE(3884), - [sym__atom] = STATE(3884), - [sym_quoted_atom] = STATE(3884), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3884), - [sym_charlist] = STATE(3884), - [sym_sigil] = STATE(3884), - [sym_list] = STATE(3884), - [sym_tuple] = STATE(3884), - [sym_bitstring] = STATE(3884), - [sym_map] = STATE(3884), - [sym__nullary_operator] = STATE(3884), - [sym_unary_operator] = STATE(3884), - [sym_binary_operator] = STATE(3884), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3884), - [sym_call] = STATE(3884), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3884), - [sym_anonymous_function] = STATE(3884), + [sym__expression] = STATE(3191), + [sym_block] = STATE(3191), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3191), + [sym_nil] = STATE(3191), + [sym__atom] = STATE(3191), + [sym_quoted_atom] = STATE(3191), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3191), + [sym_charlist] = STATE(3191), + [sym_sigil] = STATE(3191), + [sym_list] = STATE(3191), + [sym_tuple] = STATE(3191), + [sym_bitstring] = STATE(3191), + [sym_map] = STATE(3191), + [sym__nullary_operator] = STATE(3191), + [sym_unary_operator] = STATE(3191), + [sym_binary_operator] = STATE(3191), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3191), + [sym_call] = STATE(3191), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3191), + [sym_anonymous_function] = STATE(3191), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2255), [sym_integer] = ACTIONS(2255), [sym_float] = ACTIONS(2255), [sym_char] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117390,86 +117156,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(281), }, [707] = { - [sym__expression] = STATE(3885), - [sym_block] = STATE(3885), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3885), - [sym_nil] = STATE(3885), - [sym__atom] = STATE(3885), - [sym_quoted_atom] = STATE(3885), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3885), - [sym_charlist] = STATE(3885), - [sym_sigil] = STATE(3885), - [sym_list] = STATE(3885), - [sym_tuple] = STATE(3885), - [sym_bitstring] = STATE(3885), - [sym_map] = STATE(3885), - [sym__nullary_operator] = STATE(3885), - [sym_unary_operator] = STATE(3885), - [sym_binary_operator] = STATE(3885), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3885), - [sym_call] = STATE(3885), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3885), - [sym_anonymous_function] = STATE(3885), + [sym__expression] = STATE(1432), + [sym_block] = STATE(1432), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(1432), + [sym_nil] = STATE(1432), + [sym__atom] = STATE(1432), + [sym_quoted_atom] = STATE(1432), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1432), + [sym_charlist] = STATE(1432), + [sym_sigil] = STATE(1432), + [sym_list] = STATE(1432), + [sym_tuple] = STATE(1432), + [sym_bitstring] = STATE(1432), + [sym_map] = STATE(1432), + [sym__nullary_operator] = STATE(1432), + [sym_unary_operator] = STATE(1432), + [sym_binary_operator] = STATE(1432), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1432), + [sym_call] = STATE(1432), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1432), + [sym_anonymous_function] = STATE(1432), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2257), [sym_integer] = ACTIONS(2257), [sym_float] = ACTIONS(2257), [sym_char] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117507,86 +117273,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(281), }, [708] = { - [sym__expression] = STATE(3886), - [sym_block] = STATE(3886), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3886), - [sym_nil] = STATE(3886), - [sym__atom] = STATE(3886), - [sym_quoted_atom] = STATE(3886), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3886), - [sym_charlist] = STATE(3886), - [sym_sigil] = STATE(3886), - [sym_list] = STATE(3886), - [sym_tuple] = STATE(3886), - [sym_bitstring] = STATE(3886), - [sym_map] = STATE(3886), - [sym__nullary_operator] = STATE(3886), - [sym_unary_operator] = STATE(3886), - [sym_binary_operator] = STATE(3886), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3886), - [sym_call] = STATE(3886), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3886), - [sym_anonymous_function] = STATE(3886), + [sym__expression] = STATE(3223), + [sym_block] = STATE(3223), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3223), + [sym_nil] = STATE(3223), + [sym__atom] = STATE(3223), + [sym_quoted_atom] = STATE(3223), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3223), + [sym_charlist] = STATE(3223), + [sym_sigil] = STATE(3223), + [sym_list] = STATE(3223), + [sym_tuple] = STATE(3223), + [sym_bitstring] = STATE(3223), + [sym_map] = STATE(3223), + [sym__nullary_operator] = STATE(3223), + [sym_unary_operator] = STATE(3223), + [sym_binary_operator] = STATE(3223), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3223), + [sym_call] = STATE(3223), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3223), + [sym_anonymous_function] = STATE(3223), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2259), [sym_integer] = ACTIONS(2259), [sym_float] = ACTIONS(2259), [sym_char] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117624,86 +117390,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(281), }, [709] = { - [sym__expression] = STATE(3887), - [sym_block] = STATE(3887), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3887), - [sym_nil] = STATE(3887), - [sym__atom] = STATE(3887), - [sym_quoted_atom] = STATE(3887), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3887), - [sym_charlist] = STATE(3887), - [sym_sigil] = STATE(3887), - [sym_list] = STATE(3887), - [sym_tuple] = STATE(3887), - [sym_bitstring] = STATE(3887), - [sym_map] = STATE(3887), - [sym__nullary_operator] = STATE(3887), - [sym_unary_operator] = STATE(3887), - [sym_binary_operator] = STATE(3887), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3887), - [sym_call] = STATE(3887), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3887), - [sym_anonymous_function] = STATE(3887), + [sym__expression] = STATE(1403), + [sym_block] = STATE(1403), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(1403), + [sym_nil] = STATE(1403), + [sym__atom] = STATE(1403), + [sym_quoted_atom] = STATE(1403), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1403), + [sym_charlist] = STATE(1403), + [sym_sigil] = STATE(1403), + [sym_list] = STATE(1403), + [sym_tuple] = STATE(1403), + [sym_bitstring] = STATE(1403), + [sym_map] = STATE(1403), + [sym__nullary_operator] = STATE(1403), + [sym_unary_operator] = STATE(1403), + [sym_binary_operator] = STATE(1403), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1403), + [sym_call] = STATE(1403), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1403), + [sym_anonymous_function] = STATE(1403), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2261), [sym_integer] = ACTIONS(2261), [sym_float] = ACTIONS(2261), [sym_char] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117741,86 +117507,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(281), }, [710] = { - [sym__expression] = STATE(3888), - [sym_block] = STATE(3888), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3888), - [sym_nil] = STATE(3888), - [sym__atom] = STATE(3888), - [sym_quoted_atom] = STATE(3888), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3888), - [sym_charlist] = STATE(3888), - [sym_sigil] = STATE(3888), - [sym_list] = STATE(3888), - [sym_tuple] = STATE(3888), - [sym_bitstring] = STATE(3888), - [sym_map] = STATE(3888), - [sym__nullary_operator] = STATE(3888), - [sym_unary_operator] = STATE(3888), - [sym_binary_operator] = STATE(3888), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3888), - [sym_call] = STATE(3888), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3888), - [sym_anonymous_function] = STATE(3888), + [sym__expression] = STATE(4136), + [sym_block] = STATE(4136), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4136), + [sym_nil] = STATE(4136), + [sym__atom] = STATE(4136), + [sym_quoted_atom] = STATE(4136), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4136), + [sym_charlist] = STATE(4136), + [sym_sigil] = STATE(4136), + [sym_list] = STATE(4136), + [sym_tuple] = STATE(4136), + [sym_bitstring] = STATE(4136), + [sym_map] = STATE(4136), + [sym__nullary_operator] = STATE(4136), + [sym_unary_operator] = STATE(4136), + [sym_binary_operator] = STATE(4136), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4136), + [sym_call] = STATE(4136), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4136), + [sym_anonymous_function] = STATE(4136), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2263), [sym_integer] = ACTIONS(2263), [sym_float] = ACTIONS(2263), [sym_char] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2263), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117858,86 +117624,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [711] = { - [sym__expression] = STATE(3891), - [sym_block] = STATE(3891), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3891), - [sym_nil] = STATE(3891), - [sym__atom] = STATE(3891), - [sym_quoted_atom] = STATE(3891), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3891), - [sym_charlist] = STATE(3891), - [sym_sigil] = STATE(3891), - [sym_list] = STATE(3891), - [sym_tuple] = STATE(3891), - [sym_bitstring] = STATE(3891), - [sym_map] = STATE(3891), - [sym__nullary_operator] = STATE(3891), - [sym_unary_operator] = STATE(3891), - [sym_binary_operator] = STATE(3891), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3891), - [sym_call] = STATE(3891), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3891), - [sym_anonymous_function] = STATE(3891), + [sym__expression] = STATE(4135), + [sym_block] = STATE(4135), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4135), + [sym_nil] = STATE(4135), + [sym__atom] = STATE(4135), + [sym_quoted_atom] = STATE(4135), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4135), + [sym_charlist] = STATE(4135), + [sym_sigil] = STATE(4135), + [sym_list] = STATE(4135), + [sym_tuple] = STATE(4135), + [sym_bitstring] = STATE(4135), + [sym_map] = STATE(4135), + [sym__nullary_operator] = STATE(4135), + [sym_unary_operator] = STATE(4135), + [sym_binary_operator] = STATE(4135), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4135), + [sym_call] = STATE(4135), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4135), + [sym_anonymous_function] = STATE(4135), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2265), [sym_integer] = ACTIONS(2265), [sym_float] = ACTIONS(2265), [sym_char] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -117975,86 +117741,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(958), }, [712] = { - [sym__expression] = STATE(3892), - [sym_block] = STATE(3892), - [sym_identifier] = STATE(63), - [sym_boolean] = STATE(3892), - [sym_nil] = STATE(3892), - [sym__atom] = STATE(3892), - [sym_quoted_atom] = STATE(3892), - [sym__quoted_i_double] = STATE(3582), - [sym__quoted_i_single] = STATE(3583), - [sym__quoted_i_heredoc_single] = STATE(3584), - [sym__quoted_i_heredoc_double] = STATE(3585), - [sym_string] = STATE(3892), - [sym_charlist] = STATE(3892), - [sym_sigil] = STATE(3892), - [sym_list] = STATE(3892), - [sym_tuple] = STATE(3892), - [sym_bitstring] = STATE(3892), - [sym_map] = STATE(3892), - [sym__nullary_operator] = STATE(3892), - [sym_unary_operator] = STATE(3892), - [sym_binary_operator] = STATE(3892), - [sym_operator_identifier] = STATE(6945), - [sym_dot] = STATE(3892), - [sym_call] = STATE(3892), - [sym__call_without_parentheses] = STATE(3586), - [sym__call_with_parentheses] = STATE(3587), - [sym__local_call_without_parentheses] = STATE(3626), - [sym__local_call_with_parentheses] = STATE(2691), - [sym__local_call_just_do_block] = STATE(3627), - [sym__remote_call_without_parentheses] = STATE(3640), - [sym__remote_call_with_parentheses] = STATE(2694), - [sym__remote_dot] = STATE(59), - [sym__anonymous_call] = STATE(2696), - [sym__anonymous_dot] = STATE(6842), - [sym__double_call] = STATE(3645), - [sym_access_call] = STATE(3892), - [sym_anonymous_function] = STATE(3892), + [sym__expression] = STATE(3437), + [sym_block] = STATE(3437), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3437), + [sym_nil] = STATE(3437), + [sym__atom] = STATE(3437), + [sym_quoted_atom] = STATE(3437), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3437), + [sym_charlist] = STATE(3437), + [sym_sigil] = STATE(3437), + [sym_list] = STATE(3437), + [sym_tuple] = STATE(3437), + [sym_bitstring] = STATE(3437), + [sym_map] = STATE(3437), + [sym__nullary_operator] = STATE(3437), + [sym_unary_operator] = STATE(3437), + [sym_binary_operator] = STATE(3437), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3437), + [sym_call] = STATE(3437), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3437), + [sym_anonymous_function] = STATE(3437), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(592), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2267), [sym_integer] = ACTIONS(2267), [sym_float] = ACTIONS(2267), [sym_char] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [anon_sym_nil] = ACTIONS(600), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2267), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(604), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(614), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_CARET] = ACTIONS(624), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), - [anon_sym_not] = ACTIONS(624), - [anon_sym_AT] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118092,86 +117858,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(628), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(632), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(634), + [sym__quoted_atom_start] = ACTIONS(281), }, [713] = { - [sym__expression] = STATE(3594), - [sym_block] = STATE(3594), - [sym_identifier] = STATE(55), - [sym_boolean] = STATE(3594), - [sym_nil] = STATE(3594), - [sym__atom] = STATE(3594), - [sym_quoted_atom] = STATE(3594), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(3594), - [sym_charlist] = STATE(3594), - [sym_sigil] = STATE(3594), - [sym_list] = STATE(3594), - [sym_tuple] = STATE(3594), - [sym_bitstring] = STATE(3594), - [sym_map] = STATE(3594), - [sym__nullary_operator] = STATE(3594), - [sym_unary_operator] = STATE(3594), - [sym_binary_operator] = STATE(3594), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(3594), - [sym_call] = STATE(3594), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(43), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(3594), - [sym_anonymous_function] = STATE(3594), + [sym__expression] = STATE(3436), + [sym_block] = STATE(3436), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3436), + [sym_nil] = STATE(3436), + [sym__atom] = STATE(3436), + [sym_quoted_atom] = STATE(3436), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3436), + [sym_charlist] = STATE(3436), + [sym_sigil] = STATE(3436), + [sym_list] = STATE(3436), + [sym_tuple] = STATE(3436), + [sym_bitstring] = STATE(3436), + [sym_map] = STATE(3436), + [sym__nullary_operator] = STATE(3436), + [sym_unary_operator] = STATE(3436), + [sym_binary_operator] = STATE(3436), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3436), + [sym_call] = STATE(3436), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3436), + [sym_anonymous_function] = STATE(3436), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2269), [sym_integer] = ACTIONS(2269), [sym_float] = ACTIONS(2269), [sym_char] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(690), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(692), - [anon_sym_PLUS] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(694), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(694), - [anon_sym_not] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118209,86 +117975,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(700), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(281), }, [714] = { - [sym__expression] = STATE(4509), - [sym_block] = STATE(4509), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4509), - [sym_nil] = STATE(4509), - [sym__atom] = STATE(4509), - [sym_quoted_atom] = STATE(4509), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4509), - [sym_charlist] = STATE(4509), - [sym_sigil] = STATE(4509), - [sym_list] = STATE(4509), - [sym_tuple] = STATE(4509), - [sym_bitstring] = STATE(4509), - [sym_map] = STATE(4509), - [sym__nullary_operator] = STATE(4509), - [sym_unary_operator] = STATE(4509), - [sym_binary_operator] = STATE(4509), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4509), - [sym_call] = STATE(4509), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4509), - [sym_anonymous_function] = STATE(4509), + [sym__expression] = STATE(3235), + [sym_block] = STATE(3235), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(3235), + [sym_nil] = STATE(3235), + [sym__atom] = STATE(3235), + [sym_quoted_atom] = STATE(3235), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3235), + [sym_charlist] = STATE(3235), + [sym_sigil] = STATE(3235), + [sym_list] = STATE(3235), + [sym_tuple] = STATE(3235), + [sym_bitstring] = STATE(3235), + [sym_map] = STATE(3235), + [sym__nullary_operator] = STATE(3235), + [sym_unary_operator] = STATE(3235), + [sym_binary_operator] = STATE(3235), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3235), + [sym_call] = STATE(3235), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3235), + [sym_anonymous_function] = STATE(3235), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2271), [sym_integer] = ACTIONS(2271), [sym_float] = ACTIONS(2271), [sym_char] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2271), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118326,86 +118092,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, [715] = { - [sym__expression] = STATE(4510), - [sym_block] = STATE(4510), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4510), - [sym_nil] = STATE(4510), - [sym__atom] = STATE(4510), - [sym_quoted_atom] = STATE(4510), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4510), - [sym_charlist] = STATE(4510), - [sym_sigil] = STATE(4510), - [sym_list] = STATE(4510), - [sym_tuple] = STATE(4510), - [sym_bitstring] = STATE(4510), - [sym_map] = STATE(4510), - [sym__nullary_operator] = STATE(4510), - [sym_unary_operator] = STATE(4510), - [sym_binary_operator] = STATE(4510), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4510), - [sym_call] = STATE(4510), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4510), - [sym_anonymous_function] = STATE(4510), + [sym__expression] = STATE(3434), + [sym_block] = STATE(3434), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3434), + [sym_nil] = STATE(3434), + [sym__atom] = STATE(3434), + [sym_quoted_atom] = STATE(3434), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3434), + [sym_charlist] = STATE(3434), + [sym_sigil] = STATE(3434), + [sym_list] = STATE(3434), + [sym_tuple] = STATE(3434), + [sym_bitstring] = STATE(3434), + [sym_map] = STATE(3434), + [sym__nullary_operator] = STATE(3434), + [sym_unary_operator] = STATE(3434), + [sym_binary_operator] = STATE(3434), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3434), + [sym_call] = STATE(3434), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3434), + [sym_anonymous_function] = STATE(3434), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2273), [sym_integer] = ACTIONS(2273), [sym_float] = ACTIONS(2273), [sym_char] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118443,86 +118209,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(281), }, [716] = { - [sym__expression] = STATE(4286), - [sym_block] = STATE(4286), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4286), - [sym_nil] = STATE(4286), - [sym__atom] = STATE(4286), - [sym_quoted_atom] = STATE(4286), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4286), - [sym_charlist] = STATE(4286), - [sym_sigil] = STATE(4286), - [sym_list] = STATE(4286), - [sym_tuple] = STATE(4286), - [sym_bitstring] = STATE(4286), - [sym_map] = STATE(4286), - [sym__nullary_operator] = STATE(4286), - [sym_unary_operator] = STATE(4286), - [sym_binary_operator] = STATE(4286), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4286), - [sym_call] = STATE(4286), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4286), - [sym_anonymous_function] = STATE(4286), + [sym__expression] = STATE(3236), + [sym_block] = STATE(3236), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(3236), + [sym_nil] = STATE(3236), + [sym__atom] = STATE(3236), + [sym_quoted_atom] = STATE(3236), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3236), + [sym_charlist] = STATE(3236), + [sym_sigil] = STATE(3236), + [sym_list] = STATE(3236), + [sym_tuple] = STATE(3236), + [sym_bitstring] = STATE(3236), + [sym_map] = STATE(3236), + [sym__nullary_operator] = STATE(3236), + [sym_unary_operator] = STATE(3236), + [sym_binary_operator] = STATE(3236), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3236), + [sym_call] = STATE(3236), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3236), + [sym_anonymous_function] = STATE(3236), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2275), [sym_integer] = ACTIONS(2275), [sym_float] = ACTIONS(2275), [sym_char] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118560,86 +118326,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, [717] = { - [sym__expression] = STATE(1999), - [sym_block] = STATE(1999), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(1999), - [sym_nil] = STATE(1999), - [sym__atom] = STATE(1999), - [sym_quoted_atom] = STATE(1999), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(1999), - [sym_charlist] = STATE(1999), - [sym_sigil] = STATE(1999), - [sym_list] = STATE(1999), - [sym_tuple] = STATE(1999), - [sym_bitstring] = STATE(1999), - [sym_map] = STATE(1999), - [sym__nullary_operator] = STATE(1999), - [sym_unary_operator] = STATE(1999), - [sym_binary_operator] = STATE(1999), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(1999), - [sym_call] = STATE(1999), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(1999), - [sym_anonymous_function] = STATE(1999), + [sym__expression] = STATE(3433), + [sym_block] = STATE(3433), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3433), + [sym_nil] = STATE(3433), + [sym__atom] = STATE(3433), + [sym_quoted_atom] = STATE(3433), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3433), + [sym_charlist] = STATE(3433), + [sym_sigil] = STATE(3433), + [sym_list] = STATE(3433), + [sym_tuple] = STATE(3433), + [sym_bitstring] = STATE(3433), + [sym_map] = STATE(3433), + [sym__nullary_operator] = STATE(3433), + [sym_unary_operator] = STATE(3433), + [sym_binary_operator] = STATE(3433), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3433), + [sym_call] = STATE(3433), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3433), + [sym_anonymous_function] = STATE(3433), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2277), + [sym_integer] = ACTIONS(2277), + [sym_float] = ACTIONS(2277), + [sym_char] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118677,86 +118443,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, [718] = { - [sym__expression] = STATE(4287), - [sym_block] = STATE(4287), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4287), - [sym_nil] = STATE(4287), - [sym__atom] = STATE(4287), - [sym_quoted_atom] = STATE(4287), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4287), - [sym_charlist] = STATE(4287), - [sym_sigil] = STATE(4287), - [sym_list] = STATE(4287), - [sym_tuple] = STATE(4287), - [sym_bitstring] = STATE(4287), - [sym_map] = STATE(4287), - [sym__nullary_operator] = STATE(4287), - [sym_unary_operator] = STATE(4287), - [sym_binary_operator] = STATE(4287), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4287), - [sym_call] = STATE(4287), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4287), - [sym_anonymous_function] = STATE(4287), + [sym__expression] = STATE(3432), + [sym_block] = STATE(3432), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3432), + [sym_nil] = STATE(3432), + [sym__atom] = STATE(3432), + [sym_quoted_atom] = STATE(3432), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3432), + [sym_charlist] = STATE(3432), + [sym_sigil] = STATE(3432), + [sym_list] = STATE(3432), + [sym_tuple] = STATE(3432), + [sym_bitstring] = STATE(3432), + [sym_map] = STATE(3432), + [sym__nullary_operator] = STATE(3432), + [sym_unary_operator] = STATE(3432), + [sym_binary_operator] = STATE(3432), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3432), + [sym_call] = STATE(3432), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3432), + [sym_anonymous_function] = STATE(3432), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2277), - [sym_integer] = ACTIONS(2277), - [sym_float] = ACTIONS(2277), - [sym_char] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2279), + [sym_integer] = ACTIONS(2279), + [sym_float] = ACTIONS(2279), + [sym_char] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118794,86 +118560,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, [719] = { - [sym__expression] = STATE(2032), - [sym_block] = STATE(2032), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(2032), - [sym_nil] = STATE(2032), - [sym__atom] = STATE(2032), - [sym_quoted_atom] = STATE(2032), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2032), - [sym_charlist] = STATE(2032), - [sym_sigil] = STATE(2032), - [sym_list] = STATE(2032), - [sym_tuple] = STATE(2032), - [sym_bitstring] = STATE(2032), - [sym_map] = STATE(2032), - [sym__nullary_operator] = STATE(2032), - [sym_unary_operator] = STATE(2032), - [sym_binary_operator] = STATE(2032), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2032), - [sym_call] = STATE(2032), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2032), - [sym_anonymous_function] = STATE(2032), + [sym__expression] = STATE(3431), + [sym_block] = STATE(3431), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3431), + [sym_nil] = STATE(3431), + [sym__atom] = STATE(3431), + [sym_quoted_atom] = STATE(3431), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3431), + [sym_charlist] = STATE(3431), + [sym_sigil] = STATE(3431), + [sym_list] = STATE(3431), + [sym_tuple] = STATE(3431), + [sym_bitstring] = STATE(3431), + [sym_map] = STATE(3431), + [sym__nullary_operator] = STATE(3431), + [sym_unary_operator] = STATE(3431), + [sym_binary_operator] = STATE(3431), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3431), + [sym_call] = STATE(3431), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3431), + [sym_anonymous_function] = STATE(3431), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(1899), - [sym_integer] = ACTIONS(1899), - [sym_float] = ACTIONS(1899), - [sym_char] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2281), + [sym_integer] = ACTIONS(2281), + [sym_float] = ACTIONS(2281), + [sym_char] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -118911,86 +118677,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, [720] = { - [sym__expression] = STATE(4112), - [sym_block] = STATE(4112), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4112), - [sym_nil] = STATE(4112), - [sym__atom] = STATE(4112), - [sym_quoted_atom] = STATE(4112), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4112), - [sym_charlist] = STATE(4112), - [sym_sigil] = STATE(4112), - [sym_list] = STATE(4112), - [sym_tuple] = STATE(4112), - [sym_bitstring] = STATE(4112), - [sym_map] = STATE(4112), - [sym__nullary_operator] = STATE(4112), - [sym_unary_operator] = STATE(4112), - [sym_binary_operator] = STATE(4112), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4112), - [sym_call] = STATE(4112), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4112), - [sym_anonymous_function] = STATE(4112), + [sym__expression] = STATE(3245), + [sym_block] = STATE(3245), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(3245), + [sym_nil] = STATE(3245), + [sym__atom] = STATE(3245), + [sym_quoted_atom] = STATE(3245), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3245), + [sym_charlist] = STATE(3245), + [sym_sigil] = STATE(3245), + [sym_list] = STATE(3245), + [sym_tuple] = STATE(3245), + [sym_bitstring] = STATE(3245), + [sym_map] = STATE(3245), + [sym__nullary_operator] = STATE(3245), + [sym_unary_operator] = STATE(3245), + [sym_binary_operator] = STATE(3245), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3245), + [sym_call] = STATE(3245), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3245), + [sym_anonymous_function] = STATE(3245), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2279), - [sym_integer] = ACTIONS(2279), - [sym_float] = ACTIONS(2279), - [sym_char] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2283), + [sym_integer] = ACTIONS(2283), + [sym_float] = ACTIONS(2283), + [sym_char] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119028,86 +118794,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, [721] = { - [sym__expression] = STATE(1506), - [sym_block] = STATE(1506), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1506), - [sym_nil] = STATE(1506), - [sym__atom] = STATE(1506), - [sym_quoted_atom] = STATE(1506), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1506), - [sym_charlist] = STATE(1506), - [sym_sigil] = STATE(1506), - [sym_list] = STATE(1506), - [sym_tuple] = STATE(1506), - [sym_bitstring] = STATE(1506), - [sym_map] = STATE(1506), - [sym__nullary_operator] = STATE(1506), - [sym_unary_operator] = STATE(1506), - [sym_binary_operator] = STATE(1506), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1506), - [sym_call] = STATE(1506), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1506), - [sym_anonymous_function] = STATE(1506), + [sym__expression] = STATE(3246), + [sym_block] = STATE(3246), + [sym_identifier] = STATE(81), + [sym_boolean] = STATE(3246), + [sym_nil] = STATE(3246), + [sym__atom] = STATE(3246), + [sym_quoted_atom] = STATE(3246), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3246), + [sym_charlist] = STATE(3246), + [sym_sigil] = STATE(3246), + [sym_list] = STATE(3246), + [sym_tuple] = STATE(3246), + [sym_bitstring] = STATE(3246), + [sym_map] = STATE(3246), + [sym__nullary_operator] = STATE(3246), + [sym_unary_operator] = STATE(3246), + [sym_binary_operator] = STATE(3246), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3246), + [sym_call] = STATE(3246), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(65), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3246), + [sym_anonymous_function] = STATE(3246), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2281), - [sym_integer] = ACTIONS(2281), - [sym_float] = ACTIONS(2281), - [sym_char] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2285), + [sym_integer] = ACTIONS(2285), + [sym_float] = ACTIONS(2285), + [sym_char] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1335), + [anon_sym_not] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119145,86 +118911,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(1339), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(1085), }, [722] = { - [sym__expression] = STATE(4111), - [sym_block] = STATE(4111), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4111), - [sym_nil] = STATE(4111), - [sym__atom] = STATE(4111), - [sym_quoted_atom] = STATE(4111), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4111), - [sym_charlist] = STATE(4111), - [sym_sigil] = STATE(4111), - [sym_list] = STATE(4111), - [sym_tuple] = STATE(4111), - [sym_bitstring] = STATE(4111), - [sym_map] = STATE(4111), - [sym__nullary_operator] = STATE(4111), - [sym_unary_operator] = STATE(4111), - [sym_binary_operator] = STATE(4111), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4111), - [sym_call] = STATE(4111), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4111), - [sym_anonymous_function] = STATE(4111), + [sym__expression] = STATE(3429), + [sym_block] = STATE(3429), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3429), + [sym_nil] = STATE(3429), + [sym__atom] = STATE(3429), + [sym_quoted_atom] = STATE(3429), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3429), + [sym_charlist] = STATE(3429), + [sym_sigil] = STATE(3429), + [sym_list] = STATE(3429), + [sym_tuple] = STATE(3429), + [sym_bitstring] = STATE(3429), + [sym_map] = STATE(3429), + [sym__nullary_operator] = STATE(3429), + [sym_unary_operator] = STATE(3429), + [sym_binary_operator] = STATE(3429), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3429), + [sym_call] = STATE(3429), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3429), + [sym_anonymous_function] = STATE(3429), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2283), - [sym_integer] = ACTIONS(2283), - [sym_float] = ACTIONS(2283), - [sym_char] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2287), + [sym_integer] = ACTIONS(2287), + [sym_float] = ACTIONS(2287), + [sym_char] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119262,64 +119028,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, [723] = { - [sym__expression] = STATE(2962), - [sym_block] = STATE(2962), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2962), - [sym_nil] = STATE(2962), - [sym__atom] = STATE(2962), - [sym_quoted_atom] = STATE(2962), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2962), - [sym_charlist] = STATE(2962), - [sym_sigil] = STATE(2962), - [sym_list] = STATE(2962), - [sym_tuple] = STATE(2962), - [sym_bitstring] = STATE(2962), - [sym_map] = STATE(2962), - [sym__nullary_operator] = STATE(2962), - [sym_unary_operator] = STATE(2962), - [sym_binary_operator] = STATE(2962), + [sym__expression] = STATE(3428), + [sym_block] = STATE(3428), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3428), + [sym_nil] = STATE(3428), + [sym__atom] = STATE(3428), + [sym_quoted_atom] = STATE(3428), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3428), + [sym_charlist] = STATE(3428), + [sym_sigil] = STATE(3428), + [sym_list] = STATE(3428), + [sym_tuple] = STATE(3428), + [sym_bitstring] = STATE(3428), + [sym_map] = STATE(3428), + [sym__nullary_operator] = STATE(3428), + [sym_unary_operator] = STATE(3428), + [sym_binary_operator] = STATE(3428), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2962), - [sym_call] = STATE(2962), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2962), - [sym_anonymous_function] = STATE(2962), + [sym_dot] = STATE(3428), + [sym_call] = STATE(3428), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3428), + [sym_anonymous_function] = STATE(3428), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(1365), - [sym_integer] = ACTIONS(1365), - [sym_float] = ACTIONS(1365), - [sym_char] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2289), + [sym_integer] = ACTIONS(2289), + [sym_float] = ACTIONS(2289), + [sym_char] = ACTIONS(2289), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1365), + [sym_atom] = ACTIONS(2289), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -119330,18 +119096,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(435), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119383,82 +119149,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, [724] = { - [sym__expression] = STATE(4109), - [sym_block] = STATE(4109), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4109), - [sym_nil] = STATE(4109), - [sym__atom] = STATE(4109), - [sym_quoted_atom] = STATE(4109), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4109), - [sym_charlist] = STATE(4109), - [sym_sigil] = STATE(4109), - [sym_list] = STATE(4109), - [sym_tuple] = STATE(4109), - [sym_bitstring] = STATE(4109), - [sym_map] = STATE(4109), - [sym__nullary_operator] = STATE(4109), - [sym_unary_operator] = STATE(4109), - [sym_binary_operator] = STATE(4109), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4109), - [sym_call] = STATE(4109), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4109), - [sym_anonymous_function] = STATE(4109), + [sym__expression] = STATE(4466), + [sym_block] = STATE(4466), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4466), + [sym_nil] = STATE(4466), + [sym__atom] = STATE(4466), + [sym_quoted_atom] = STATE(4466), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4466), + [sym_charlist] = STATE(4466), + [sym_sigil] = STATE(4466), + [sym_list] = STATE(4466), + [sym_tuple] = STATE(4466), + [sym_bitstring] = STATE(4466), + [sym_map] = STATE(4466), + [sym__nullary_operator] = STATE(4466), + [sym_unary_operator] = STATE(4466), + [sym_binary_operator] = STATE(4466), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4466), + [sym_call] = STATE(4466), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4466), + [sym_anonymous_function] = STATE(4466), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2285), - [sym_integer] = ACTIONS(2285), - [sym_float] = ACTIONS(2285), - [sym_char] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2291), + [sym_integer] = ACTIONS(2291), + [sym_float] = ACTIONS(2291), + [sym_char] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119496,86 +119262,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1135), }, [725] = { - [sym__expression] = STATE(4105), - [sym_block] = STATE(4105), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4105), - [sym_nil] = STATE(4105), - [sym__atom] = STATE(4105), - [sym_quoted_atom] = STATE(4105), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4105), - [sym_charlist] = STATE(4105), - [sym_sigil] = STATE(4105), - [sym_list] = STATE(4105), - [sym_tuple] = STATE(4105), - [sym_bitstring] = STATE(4105), - [sym_map] = STATE(4105), - [sym__nullary_operator] = STATE(4105), - [sym_unary_operator] = STATE(4105), - [sym_binary_operator] = STATE(4105), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4105), - [sym_call] = STATE(4105), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4105), - [sym_anonymous_function] = STATE(4105), + [sym__expression] = STATE(4468), + [sym_block] = STATE(4468), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4468), + [sym_nil] = STATE(4468), + [sym__atom] = STATE(4468), + [sym_quoted_atom] = STATE(4468), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4468), + [sym_charlist] = STATE(4468), + [sym_sigil] = STATE(4468), + [sym_list] = STATE(4468), + [sym_tuple] = STATE(4468), + [sym_bitstring] = STATE(4468), + [sym_map] = STATE(4468), + [sym__nullary_operator] = STATE(4468), + [sym_unary_operator] = STATE(4468), + [sym_binary_operator] = STATE(4468), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4468), + [sym_call] = STATE(4468), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4468), + [sym_anonymous_function] = STATE(4468), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2287), - [sym_integer] = ACTIONS(2287), - [sym_float] = ACTIONS(2287), - [sym_char] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2293), + [sym_integer] = ACTIONS(2293), + [sym_float] = ACTIONS(2293), + [sym_char] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119613,86 +119379,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1135), }, [726] = { - [sym__expression] = STATE(4103), - [sym_block] = STATE(4103), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4103), - [sym_nil] = STATE(4103), - [sym__atom] = STATE(4103), - [sym_quoted_atom] = STATE(4103), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4103), - [sym_charlist] = STATE(4103), - [sym_sigil] = STATE(4103), - [sym_list] = STATE(4103), - [sym_tuple] = STATE(4103), - [sym_bitstring] = STATE(4103), - [sym_map] = STATE(4103), - [sym__nullary_operator] = STATE(4103), - [sym_unary_operator] = STATE(4103), - [sym_binary_operator] = STATE(4103), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4103), - [sym_call] = STATE(4103), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4103), - [sym_anonymous_function] = STATE(4103), + [sym__expression] = STATE(3427), + [sym_block] = STATE(3427), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3427), + [sym_nil] = STATE(3427), + [sym__atom] = STATE(3427), + [sym_quoted_atom] = STATE(3427), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3427), + [sym_charlist] = STATE(3427), + [sym_sigil] = STATE(3427), + [sym_list] = STATE(3427), + [sym_tuple] = STATE(3427), + [sym_bitstring] = STATE(3427), + [sym_map] = STATE(3427), + [sym__nullary_operator] = STATE(3427), + [sym_unary_operator] = STATE(3427), + [sym_binary_operator] = STATE(3427), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3427), + [sym_call] = STATE(3427), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3427), + [sym_anonymous_function] = STATE(3427), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2289), - [sym_integer] = ACTIONS(2289), - [sym_float] = ACTIONS(2289), - [sym_char] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2295), + [sym_integer] = ACTIONS(2295), + [sym_float] = ACTIONS(2295), + [sym_char] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119730,203 +119496,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, [727] = { - [sym__expression] = STATE(4098), - [sym_block] = STATE(4098), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4098), - [sym_nil] = STATE(4098), - [sym__atom] = STATE(4098), - [sym_quoted_atom] = STATE(4098), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4098), - [sym_charlist] = STATE(4098), - [sym_sigil] = STATE(4098), - [sym_list] = STATE(4098), - [sym_tuple] = STATE(4098), - [sym_bitstring] = STATE(4098), - [sym_map] = STATE(4098), - [sym__nullary_operator] = STATE(4098), - [sym_unary_operator] = STATE(4098), - [sym_binary_operator] = STATE(4098), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4098), - [sym_call] = STATE(4098), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4098), - [sym_anonymous_function] = STATE(4098), + [sym__expression] = STATE(3260), + [sym_block] = STATE(3260), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3260), + [sym_nil] = STATE(3260), + [sym__atom] = STATE(3260), + [sym_quoted_atom] = STATE(3260), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3260), + [sym_charlist] = STATE(3260), + [sym_sigil] = STATE(3260), + [sym_list] = STATE(3260), + [sym_tuple] = STATE(3260), + [sym_bitstring] = STATE(3260), + [sym_map] = STATE(3260), + [sym__nullary_operator] = STATE(3260), + [sym_unary_operator] = STATE(3260), + [sym_binary_operator] = STATE(3260), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3260), + [sym_call] = STATE(3260), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3260), + [sym_anonymous_function] = STATE(3260), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2291), - [sym_integer] = ACTIONS(2291), - [sym_float] = ACTIONS(2291), - [sym_char] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), - }, - [728] = { - [sym__expression] = STATE(4514), - [sym_block] = STATE(4514), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4514), - [sym_nil] = STATE(4514), - [sym__atom] = STATE(4514), - [sym_quoted_atom] = STATE(4514), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4514), - [sym_charlist] = STATE(4514), - [sym_sigil] = STATE(4514), - [sym_list] = STATE(4514), - [sym_tuple] = STATE(4514), - [sym_bitstring] = STATE(4514), - [sym_map] = STATE(4514), - [sym__nullary_operator] = STATE(4514), - [sym_unary_operator] = STATE(4514), - [sym_binary_operator] = STATE(4514), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4514), - [sym_call] = STATE(4514), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4514), - [sym_anonymous_function] = STATE(4514), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(2293), - [sym_integer] = ACTIONS(2293), - [sym_float] = ACTIONS(2293), - [sym_char] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(2297), + [sym_integer] = ACTIONS(2297), + [sym_float] = ACTIONS(2297), + [sym_char] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -119964,86 +119613,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(532), }, - [729] = { - [sym__expression] = STATE(4515), - [sym_block] = STATE(4515), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4515), - [sym_nil] = STATE(4515), - [sym__atom] = STATE(4515), - [sym_quoted_atom] = STATE(4515), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4515), - [sym_charlist] = STATE(4515), - [sym_sigil] = STATE(4515), - [sym_list] = STATE(4515), - [sym_tuple] = STATE(4515), - [sym_bitstring] = STATE(4515), - [sym_map] = STATE(4515), - [sym__nullary_operator] = STATE(4515), - [sym_unary_operator] = STATE(4515), - [sym_binary_operator] = STATE(4515), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4515), - [sym_call] = STATE(4515), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4515), - [sym_anonymous_function] = STATE(4515), + [728] = { + [sym__expression] = STATE(3426), + [sym_block] = STATE(3426), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3426), + [sym_nil] = STATE(3426), + [sym__atom] = STATE(3426), + [sym_quoted_atom] = STATE(3426), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3426), + [sym_charlist] = STATE(3426), + [sym_sigil] = STATE(3426), + [sym_list] = STATE(3426), + [sym_tuple] = STATE(3426), + [sym_bitstring] = STATE(3426), + [sym_map] = STATE(3426), + [sym__nullary_operator] = STATE(3426), + [sym_unary_operator] = STATE(3426), + [sym_binary_operator] = STATE(3426), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3426), + [sym_call] = STATE(3426), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3426), + [sym_anonymous_function] = STATE(3426), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(2295), - [sym_integer] = ACTIONS(2295), - [sym_float] = ACTIONS(2295), - [sym_char] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2299), + [sym_integer] = ACTIONS(2299), + [sym_float] = ACTIONS(2299), + [sym_char] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120081,86 +119730,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(281), }, - [730] = { - [sym__expression] = STATE(4093), - [sym_block] = STATE(4093), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4093), - [sym_nil] = STATE(4093), - [sym__atom] = STATE(4093), - [sym_quoted_atom] = STATE(4093), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4093), - [sym_charlist] = STATE(4093), - [sym_sigil] = STATE(4093), - [sym_list] = STATE(4093), - [sym_tuple] = STATE(4093), - [sym_bitstring] = STATE(4093), - [sym_map] = STATE(4093), - [sym__nullary_operator] = STATE(4093), - [sym_unary_operator] = STATE(4093), - [sym_binary_operator] = STATE(4093), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4093), - [sym_call] = STATE(4093), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4093), - [sym_anonymous_function] = STATE(4093), + [729] = { + [sym__expression] = STATE(3266), + [sym_block] = STATE(3266), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3266), + [sym_nil] = STATE(3266), + [sym__atom] = STATE(3266), + [sym_quoted_atom] = STATE(3266), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3266), + [sym_charlist] = STATE(3266), + [sym_sigil] = STATE(3266), + [sym_list] = STATE(3266), + [sym_tuple] = STATE(3266), + [sym_bitstring] = STATE(3266), + [sym_map] = STATE(3266), + [sym__nullary_operator] = STATE(3266), + [sym_unary_operator] = STATE(3266), + [sym_binary_operator] = STATE(3266), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3266), + [sym_call] = STATE(3266), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3266), + [sym_anonymous_function] = STATE(3266), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2297), - [sym_integer] = ACTIONS(2297), - [sym_float] = ACTIONS(2297), - [sym_char] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(2301), + [sym_integer] = ACTIONS(2301), + [sym_float] = ACTIONS(2301), + [sym_char] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), + [sym_atom] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120198,86 +119847,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(532), }, - [731] = { - [sym__expression] = STATE(4091), - [sym_block] = STATE(4091), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4091), - [sym_nil] = STATE(4091), - [sym__atom] = STATE(4091), - [sym_quoted_atom] = STATE(4091), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4091), - [sym_charlist] = STATE(4091), - [sym_sigil] = STATE(4091), - [sym_list] = STATE(4091), - [sym_tuple] = STATE(4091), - [sym_bitstring] = STATE(4091), - [sym_map] = STATE(4091), - [sym__nullary_operator] = STATE(4091), - [sym_unary_operator] = STATE(4091), - [sym_binary_operator] = STATE(4091), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4091), - [sym_call] = STATE(4091), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4091), - [sym_anonymous_function] = STATE(4091), + [730] = { + [sym__expression] = STATE(3425), + [sym_block] = STATE(3425), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3425), + [sym_nil] = STATE(3425), + [sym__atom] = STATE(3425), + [sym_quoted_atom] = STATE(3425), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3425), + [sym_charlist] = STATE(3425), + [sym_sigil] = STATE(3425), + [sym_list] = STATE(3425), + [sym_tuple] = STATE(3425), + [sym_bitstring] = STATE(3425), + [sym_map] = STATE(3425), + [sym__nullary_operator] = STATE(3425), + [sym_unary_operator] = STATE(3425), + [sym_binary_operator] = STATE(3425), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3425), + [sym_call] = STATE(3425), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3425), + [sym_anonymous_function] = STATE(3425), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2299), - [sym_integer] = ACTIONS(2299), - [sym_float] = ACTIONS(2299), - [sym_char] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2303), + [sym_char] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120315,86 +119964,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [732] = { - [sym__expression] = STATE(4089), - [sym_block] = STATE(4089), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4089), - [sym_nil] = STATE(4089), - [sym__atom] = STATE(4089), - [sym_quoted_atom] = STATE(4089), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4089), - [sym_charlist] = STATE(4089), - [sym_sigil] = STATE(4089), - [sym_list] = STATE(4089), - [sym_tuple] = STATE(4089), - [sym_bitstring] = STATE(4089), - [sym_map] = STATE(4089), - [sym__nullary_operator] = STATE(4089), - [sym_unary_operator] = STATE(4089), - [sym_binary_operator] = STATE(4089), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4089), - [sym_call] = STATE(4089), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4089), - [sym_anonymous_function] = STATE(4089), + [731] = { + [sym__expression] = STATE(3424), + [sym_block] = STATE(3424), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3424), + [sym_nil] = STATE(3424), + [sym__atom] = STATE(3424), + [sym_quoted_atom] = STATE(3424), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3424), + [sym_charlist] = STATE(3424), + [sym_sigil] = STATE(3424), + [sym_list] = STATE(3424), + [sym_tuple] = STATE(3424), + [sym_bitstring] = STATE(3424), + [sym_map] = STATE(3424), + [sym__nullary_operator] = STATE(3424), + [sym_unary_operator] = STATE(3424), + [sym_binary_operator] = STATE(3424), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3424), + [sym_call] = STATE(3424), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3424), + [sym_anonymous_function] = STATE(3424), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(2301), - [sym_integer] = ACTIONS(2301), - [sym_float] = ACTIONS(2301), - [sym_char] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2305), + [sym_integer] = ACTIONS(2305), + [sym_float] = ACTIONS(2305), + [sym_char] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120432,86 +120081,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [733] = { - [sym__expression] = STATE(3590), - [sym_block] = STATE(3590), - [sym_identifier] = STATE(64), - [sym_boolean] = STATE(3590), - [sym_nil] = STATE(3590), - [sym__atom] = STATE(3590), - [sym_quoted_atom] = STATE(3590), - [sym__quoted_i_double] = STATE(2229), - [sym__quoted_i_single] = STATE(2228), - [sym__quoted_i_heredoc_single] = STATE(2227), - [sym__quoted_i_heredoc_double] = STATE(2226), - [sym_string] = STATE(3590), - [sym_charlist] = STATE(3590), - [sym_sigil] = STATE(3590), - [sym_list] = STATE(3590), - [sym_tuple] = STATE(3590), - [sym_bitstring] = STATE(3590), - [sym_map] = STATE(3590), - [sym__nullary_operator] = STATE(3590), - [sym_unary_operator] = STATE(3590), - [sym_binary_operator] = STATE(3590), - [sym_operator_identifier] = STATE(6938), - [sym_dot] = STATE(3590), - [sym_call] = STATE(3590), - [sym__call_without_parentheses] = STATE(2225), - [sym__call_with_parentheses] = STATE(2224), - [sym__local_call_without_parentheses] = STATE(2223), - [sym__local_call_with_parentheses] = STATE(1611), - [sym__local_call_just_do_block] = STATE(2221), - [sym__remote_call_without_parentheses] = STATE(2220), - [sym__remote_call_with_parentheses] = STATE(1612), - [sym__remote_dot] = STATE(69), - [sym__anonymous_call] = STATE(1615), - [sym__anonymous_dot] = STATE(6809), - [sym__double_call] = STATE(2216), - [sym_access_call] = STATE(3590), - [sym_anonymous_function] = STATE(3590), + [732] = { + [sym__expression] = STATE(3423), + [sym_block] = STATE(3423), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3423), + [sym_nil] = STATE(3423), + [sym__atom] = STATE(3423), + [sym_quoted_atom] = STATE(3423), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3423), + [sym_charlist] = STATE(3423), + [sym_sigil] = STATE(3423), + [sym_list] = STATE(3423), + [sym_tuple] = STATE(3423), + [sym_bitstring] = STATE(3423), + [sym_map] = STATE(3423), + [sym__nullary_operator] = STATE(3423), + [sym_unary_operator] = STATE(3423), + [sym_binary_operator] = STATE(3423), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3423), + [sym_call] = STATE(3423), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3423), + [sym_anonymous_function] = STATE(3423), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(359), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2303), - [sym_integer] = ACTIONS(2303), - [sym_float] = ACTIONS(2303), - [sym_char] = ACTIONS(2303), - [anon_sym_true] = ACTIONS(365), - [anon_sym_false] = ACTIONS(365), - [anon_sym_nil] = ACTIONS(367), - [sym_atom] = ACTIONS(2303), - [anon_sym_DQUOTE] = ACTIONS(369), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2307), + [sym_integer] = ACTIONS(2307), + [sym_float] = ACTIONS(2307), + [sym_char] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(658), - [anon_sym_not] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(660), + [anon_sym_TILDE] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120549,86 +120198,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(401), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(662), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(407), + [sym__quoted_atom_start] = ACTIONS(281), }, - [734] = { - [sym__expression] = STATE(1595), - [sym_block] = STATE(1595), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1595), - [sym_nil] = STATE(1595), - [sym__atom] = STATE(1595), - [sym_quoted_atom] = STATE(1595), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1595), - [sym_charlist] = STATE(1595), - [sym_sigil] = STATE(1595), - [sym_list] = STATE(1595), - [sym_tuple] = STATE(1595), - [sym_bitstring] = STATE(1595), - [sym_map] = STATE(1595), - [sym__nullary_operator] = STATE(1595), - [sym_unary_operator] = STATE(1595), - [sym_binary_operator] = STATE(1595), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1595), - [sym_call] = STATE(1595), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1595), - [sym_anonymous_function] = STATE(1595), + [733] = { + [sym__expression] = STATE(4507), + [sym_block] = STATE(4507), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4507), + [sym_nil] = STATE(4507), + [sym__atom] = STATE(4507), + [sym_quoted_atom] = STATE(4507), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4507), + [sym_charlist] = STATE(4507), + [sym_sigil] = STATE(4507), + [sym_list] = STATE(4507), + [sym_tuple] = STATE(4507), + [sym_bitstring] = STATE(4507), + [sym_map] = STATE(4507), + [sym__nullary_operator] = STATE(4507), + [sym_unary_operator] = STATE(4507), + [sym_binary_operator] = STATE(4507), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4507), + [sym_call] = STATE(4507), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4507), + [sym_anonymous_function] = STATE(4507), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2305), - [sym_integer] = ACTIONS(2305), - [sym_float] = ACTIONS(2305), - [sym_char] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(1299), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1299), + [sym_char] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120666,86 +120315,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(1135), }, - [735] = { - [sym__expression] = STATE(1740), - [sym_block] = STATE(1740), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1740), - [sym_nil] = STATE(1740), - [sym__atom] = STATE(1740), - [sym_quoted_atom] = STATE(1740), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1740), - [sym_charlist] = STATE(1740), - [sym_sigil] = STATE(1740), - [sym_list] = STATE(1740), - [sym_tuple] = STATE(1740), - [sym_bitstring] = STATE(1740), - [sym_map] = STATE(1740), - [sym__nullary_operator] = STATE(1740), - [sym_unary_operator] = STATE(1740), - [sym_binary_operator] = STATE(1740), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1740), - [sym_call] = STATE(1740), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1740), - [sym_anonymous_function] = STATE(1740), + [734] = { + [sym__expression] = STATE(2584), + [sym_block] = STATE(2584), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2584), + [sym_nil] = STATE(2584), + [sym__atom] = STATE(2584), + [sym_quoted_atom] = STATE(2584), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2584), + [sym_charlist] = STATE(2584), + [sym_sigil] = STATE(2584), + [sym_list] = STATE(2584), + [sym_tuple] = STATE(2584), + [sym_bitstring] = STATE(2584), + [sym_map] = STATE(2584), + [sym__nullary_operator] = STATE(2584), + [sym_unary_operator] = STATE(2584), + [sym_binary_operator] = STATE(2584), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2584), + [sym_call] = STATE(2584), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2584), + [sym_anonymous_function] = STATE(2584), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2307), - [sym_integer] = ACTIONS(2307), - [sym_float] = ACTIONS(2307), - [sym_char] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(920), + [sym_integer] = ACTIONS(920), + [sym_float] = ACTIONS(920), + [sym_char] = ACTIONS(920), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120783,56 +120432,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(958), }, - [736] = { - [sym__expression] = STATE(1741), - [sym_block] = STATE(1741), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1741), - [sym_nil] = STATE(1741), - [sym__atom] = STATE(1741), - [sym_quoted_atom] = STATE(1741), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1741), - [sym_charlist] = STATE(1741), - [sym_sigil] = STATE(1741), - [sym_list] = STATE(1741), - [sym_tuple] = STATE(1741), - [sym_bitstring] = STATE(1741), - [sym_map] = STATE(1741), - [sym__nullary_operator] = STATE(1741), - [sym_unary_operator] = STATE(1741), - [sym_binary_operator] = STATE(1741), + [735] = { + [sym__expression] = STATE(3420), + [sym_block] = STATE(3420), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3420), + [sym_nil] = STATE(3420), + [sym__atom] = STATE(3420), + [sym_quoted_atom] = STATE(3420), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3420), + [sym_charlist] = STATE(3420), + [sym_sigil] = STATE(3420), + [sym_list] = STATE(3420), + [sym_tuple] = STATE(3420), + [sym_bitstring] = STATE(3420), + [sym_map] = STATE(3420), + [sym__nullary_operator] = STATE(3420), + [sym_unary_operator] = STATE(3420), + [sym_binary_operator] = STATE(3420), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1741), - [sym_call] = STATE(1741), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1741), - [sym_anonymous_function] = STATE(1741), + [sym_dot] = STATE(3420), + [sym_call] = STATE(3420), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3420), + [sym_anonymous_function] = STATE(3420), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2309), [sym_integer] = ACTIONS(2309), [sym_float] = ACTIONS(2309), @@ -120851,18 +120500,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(435), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -120904,52 +120553,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [737] = { - [sym__expression] = STATE(1742), - [sym_block] = STATE(1742), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1742), - [sym_nil] = STATE(1742), - [sym__atom] = STATE(1742), - [sym_quoted_atom] = STATE(1742), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1742), - [sym_charlist] = STATE(1742), - [sym_sigil] = STATE(1742), - [sym_list] = STATE(1742), - [sym_tuple] = STATE(1742), - [sym_bitstring] = STATE(1742), - [sym_map] = STATE(1742), - [sym__nullary_operator] = STATE(1742), - [sym_unary_operator] = STATE(1742), - [sym_binary_operator] = STATE(1742), + [736] = { + [sym__expression] = STATE(3419), + [sym_block] = STATE(3419), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3419), + [sym_nil] = STATE(3419), + [sym__atom] = STATE(3419), + [sym_quoted_atom] = STATE(3419), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3419), + [sym_charlist] = STATE(3419), + [sym_sigil] = STATE(3419), + [sym_list] = STATE(3419), + [sym_tuple] = STATE(3419), + [sym_bitstring] = STATE(3419), + [sym_map] = STATE(3419), + [sym__nullary_operator] = STATE(3419), + [sym_unary_operator] = STATE(3419), + [sym_binary_operator] = STATE(3419), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1742), - [sym_call] = STATE(1742), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1742), - [sym_anonymous_function] = STATE(1742), + [sym_dot] = STATE(3419), + [sym_call] = STATE(3419), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3419), + [sym_anonymous_function] = STATE(3419), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2311), [sym_integer] = ACTIONS(2311), [sym_float] = ACTIONS(2311), @@ -120968,18 +120617,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(435), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121021,52 +120670,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [738] = { - [sym__expression] = STATE(1743), - [sym_block] = STATE(1743), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1743), - [sym_nil] = STATE(1743), - [sym__atom] = STATE(1743), - [sym_quoted_atom] = STATE(1743), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1743), - [sym_charlist] = STATE(1743), - [sym_sigil] = STATE(1743), - [sym_list] = STATE(1743), - [sym_tuple] = STATE(1743), - [sym_bitstring] = STATE(1743), - [sym_map] = STATE(1743), - [sym__nullary_operator] = STATE(1743), - [sym_unary_operator] = STATE(1743), - [sym_binary_operator] = STATE(1743), + [737] = { + [sym__expression] = STATE(3276), + [sym_block] = STATE(3276), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(3276), + [sym_nil] = STATE(3276), + [sym__atom] = STATE(3276), + [sym_quoted_atom] = STATE(3276), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3276), + [sym_charlist] = STATE(3276), + [sym_sigil] = STATE(3276), + [sym_list] = STATE(3276), + [sym_tuple] = STATE(3276), + [sym_bitstring] = STATE(3276), + [sym_map] = STATE(3276), + [sym__nullary_operator] = STATE(3276), + [sym_unary_operator] = STATE(3276), + [sym_binary_operator] = STATE(3276), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1743), - [sym_call] = STATE(1743), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1743), - [sym_anonymous_function] = STATE(1743), + [sym_dot] = STATE(3276), + [sym_call] = STATE(3276), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3276), + [sym_anonymous_function] = STATE(3276), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2313), [sym_integer] = ACTIONS(2313), [sym_float] = ACTIONS(2313), @@ -121085,18 +120734,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(435), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_CARET] = ACTIONS(444), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), + [anon_sym_not] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(446), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121138,82 +120787,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(448), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [739] = { - [sym__expression] = STATE(1744), - [sym_block] = STATE(1744), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1744), - [sym_nil] = STATE(1744), - [sym__atom] = STATE(1744), - [sym_quoted_atom] = STATE(1744), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1744), - [sym_charlist] = STATE(1744), - [sym_sigil] = STATE(1744), - [sym_list] = STATE(1744), - [sym_tuple] = STATE(1744), - [sym_bitstring] = STATE(1744), - [sym_map] = STATE(1744), - [sym__nullary_operator] = STATE(1744), - [sym_unary_operator] = STATE(1744), - [sym_binary_operator] = STATE(1744), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1744), - [sym_call] = STATE(1744), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1744), - [sym_anonymous_function] = STATE(1744), + [738] = { + [sym__expression] = STATE(4130), + [sym_block] = STATE(4130), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4130), + [sym_nil] = STATE(4130), + [sym__atom] = STATE(4130), + [sym_quoted_atom] = STATE(4130), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4130), + [sym_charlist] = STATE(4130), + [sym_sigil] = STATE(4130), + [sym_list] = STATE(4130), + [sym_tuple] = STATE(4130), + [sym_bitstring] = STATE(4130), + [sym_map] = STATE(4130), + [sym__nullary_operator] = STATE(4130), + [sym_unary_operator] = STATE(4130), + [sym_binary_operator] = STATE(4130), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4130), + [sym_call] = STATE(4130), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4130), + [sym_anonymous_function] = STATE(4130), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2315), [sym_integer] = ACTIONS(2315), [sym_float] = ACTIONS(2315), [sym_char] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121251,86 +120900,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(958), }, - [740] = { - [sym__expression] = STATE(1745), - [sym_block] = STATE(1745), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1745), - [sym_nil] = STATE(1745), - [sym__atom] = STATE(1745), - [sym_quoted_atom] = STATE(1745), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1745), - [sym_charlist] = STATE(1745), - [sym_sigil] = STATE(1745), - [sym_list] = STATE(1745), - [sym_tuple] = STATE(1745), - [sym_bitstring] = STATE(1745), - [sym_map] = STATE(1745), - [sym__nullary_operator] = STATE(1745), - [sym_unary_operator] = STATE(1745), - [sym_binary_operator] = STATE(1745), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1745), - [sym_call] = STATE(1745), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1745), - [sym_anonymous_function] = STATE(1745), + [739] = { + [sym__expression] = STATE(4110), + [sym_block] = STATE(4110), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4110), + [sym_nil] = STATE(4110), + [sym__atom] = STATE(4110), + [sym_quoted_atom] = STATE(4110), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4110), + [sym_charlist] = STATE(4110), + [sym_sigil] = STATE(4110), + [sym_list] = STATE(4110), + [sym_tuple] = STATE(4110), + [sym_bitstring] = STATE(4110), + [sym_map] = STATE(4110), + [sym__nullary_operator] = STATE(4110), + [sym_unary_operator] = STATE(4110), + [sym_binary_operator] = STATE(4110), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4110), + [sym_call] = STATE(4110), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4110), + [sym_anonymous_function] = STATE(4110), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2317), [sym_integer] = ACTIONS(2317), [sym_float] = ACTIONS(2317), [sym_char] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121368,56 +121017,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(958), }, - [741] = { - [sym__expression] = STATE(1746), - [sym_block] = STATE(1746), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1746), - [sym_nil] = STATE(1746), - [sym__atom] = STATE(1746), - [sym_quoted_atom] = STATE(1746), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1746), - [sym_charlist] = STATE(1746), - [sym_sigil] = STATE(1746), - [sym_list] = STATE(1746), - [sym_tuple] = STATE(1746), - [sym_bitstring] = STATE(1746), - [sym_map] = STATE(1746), - [sym__nullary_operator] = STATE(1746), - [sym_unary_operator] = STATE(1746), - [sym_binary_operator] = STATE(1746), + [740] = { + [sym__expression] = STATE(3058), + [sym_block] = STATE(3058), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3058), + [sym_nil] = STATE(3058), + [sym__atom] = STATE(3058), + [sym_quoted_atom] = STATE(3058), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3058), + [sym_charlist] = STATE(3058), + [sym_sigil] = STATE(3058), + [sym_list] = STATE(3058), + [sym_tuple] = STATE(3058), + [sym_bitstring] = STATE(3058), + [sym_map] = STATE(3058), + [sym__nullary_operator] = STATE(3058), + [sym_unary_operator] = STATE(3058), + [sym_binary_operator] = STATE(3058), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1746), - [sym_call] = STATE(1746), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1746), - [sym_anonymous_function] = STATE(1746), + [sym_dot] = STATE(3058), + [sym_call] = STATE(3058), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3058), + [sym_anonymous_function] = STATE(3058), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2319), [sym_integer] = ACTIONS(2319), [sym_float] = ACTIONS(2319), @@ -121435,19 +121084,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121489,60 +121138,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [742] = { - [sym__expression] = STATE(1747), - [sym_block] = STATE(1747), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1747), - [sym_nil] = STATE(1747), - [sym__atom] = STATE(1747), - [sym_quoted_atom] = STATE(1747), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1747), - [sym_charlist] = STATE(1747), - [sym_sigil] = STATE(1747), - [sym_list] = STATE(1747), - [sym_tuple] = STATE(1747), - [sym_bitstring] = STATE(1747), - [sym_map] = STATE(1747), - [sym__nullary_operator] = STATE(1747), - [sym_unary_operator] = STATE(1747), - [sym_binary_operator] = STATE(1747), + [741] = { + [sym__expression] = STATE(1432), + [sym_block] = STATE(1432), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(1432), + [sym_nil] = STATE(1432), + [sym__atom] = STATE(1432), + [sym_quoted_atom] = STATE(1432), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1432), + [sym_charlist] = STATE(1432), + [sym_sigil] = STATE(1432), + [sym_list] = STATE(1432), + [sym_tuple] = STATE(1432), + [sym_bitstring] = STATE(1432), + [sym_map] = STATE(1432), + [sym__nullary_operator] = STATE(1432), + [sym_unary_operator] = STATE(1432), + [sym_binary_operator] = STATE(1432), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1747), - [sym_call] = STATE(1747), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1747), - [sym_anonymous_function] = STATE(1747), + [sym_dot] = STATE(1432), + [sym_call] = STATE(1432), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1432), + [sym_anonymous_function] = STATE(1432), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2321), - [sym_integer] = ACTIONS(2321), - [sym_float] = ACTIONS(2321), - [sym_char] = ACTIONS(2321), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [sym_alias] = ACTIONS(2257), + [sym_integer] = ACTIONS(2257), + [sym_float] = ACTIONS(2257), + [sym_char] = ACTIONS(2257), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2321), + [sym_atom] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -121552,19 +121201,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121606,82 +121255,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [743] = { - [sym__expression] = STATE(1748), - [sym_block] = STATE(1748), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1748), - [sym_nil] = STATE(1748), - [sym__atom] = STATE(1748), - [sym_quoted_atom] = STATE(1748), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1748), - [sym_charlist] = STATE(1748), - [sym_sigil] = STATE(1748), - [sym_list] = STATE(1748), - [sym_tuple] = STATE(1748), - [sym_bitstring] = STATE(1748), - [sym_map] = STATE(1748), - [sym__nullary_operator] = STATE(1748), - [sym_unary_operator] = STATE(1748), - [sym_binary_operator] = STATE(1748), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1748), - [sym_call] = STATE(1748), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1748), - [sym_anonymous_function] = STATE(1748), + [742] = { + [sym__expression] = STATE(3652), + [sym_block] = STATE(3652), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3652), + [sym_nil] = STATE(3652), + [sym__atom] = STATE(3652), + [sym_quoted_atom] = STATE(3652), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3652), + [sym_charlist] = STATE(3652), + [sym_sigil] = STATE(3652), + [sym_list] = STATE(3652), + [sym_tuple] = STATE(3652), + [sym_bitstring] = STATE(3652), + [sym_map] = STATE(3652), + [sym__nullary_operator] = STATE(3652), + [sym_unary_operator] = STATE(3652), + [sym_binary_operator] = STATE(3652), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3652), + [sym_call] = STATE(3652), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3652), + [sym_anonymous_function] = STATE(3652), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2323), - [sym_integer] = ACTIONS(2323), - [sym_float] = ACTIONS(2323), - [sym_char] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2323), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2321), + [sym_integer] = ACTIONS(2321), + [sym_float] = ACTIONS(2321), + [sym_char] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121719,64 +121368,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [744] = { - [sym__expression] = STATE(1750), - [sym_block] = STATE(1750), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1750), - [sym_nil] = STATE(1750), - [sym__atom] = STATE(1750), - [sym_quoted_atom] = STATE(1750), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1750), - [sym_charlist] = STATE(1750), - [sym_sigil] = STATE(1750), - [sym_list] = STATE(1750), - [sym_tuple] = STATE(1750), - [sym_bitstring] = STATE(1750), - [sym_map] = STATE(1750), - [sym__nullary_operator] = STATE(1750), - [sym_unary_operator] = STATE(1750), - [sym_binary_operator] = STATE(1750), + [743] = { + [sym__expression] = STATE(3046), + [sym_block] = STATE(3046), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3046), + [sym_nil] = STATE(3046), + [sym__atom] = STATE(3046), + [sym_quoted_atom] = STATE(3046), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3046), + [sym_charlist] = STATE(3046), + [sym_sigil] = STATE(3046), + [sym_list] = STATE(3046), + [sym_tuple] = STATE(3046), + [sym_bitstring] = STATE(3046), + [sym_map] = STATE(3046), + [sym__nullary_operator] = STATE(3046), + [sym_unary_operator] = STATE(3046), + [sym_binary_operator] = STATE(3046), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1750), - [sym_call] = STATE(1750), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1750), - [sym_anonymous_function] = STATE(1750), + [sym_dot] = STATE(3046), + [sym_call] = STATE(3046), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3046), + [sym_anonymous_function] = STATE(3046), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2325), - [sym_integer] = ACTIONS(2325), - [sym_float] = ACTIONS(2325), - [sym_char] = ACTIONS(2325), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [sym_alias] = ACTIONS(2323), + [sym_integer] = ACTIONS(2323), + [sym_float] = ACTIONS(2323), + [sym_char] = ACTIONS(2323), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2325), + [sym_atom] = ACTIONS(2323), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -121787,18 +121436,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121840,60 +121489,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [745] = { - [sym__expression] = STATE(1751), - [sym_block] = STATE(1751), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1751), - [sym_nil] = STATE(1751), - [sym__atom] = STATE(1751), - [sym_quoted_atom] = STATE(1751), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1751), - [sym_charlist] = STATE(1751), - [sym_sigil] = STATE(1751), - [sym_list] = STATE(1751), - [sym_tuple] = STATE(1751), - [sym_bitstring] = STATE(1751), - [sym_map] = STATE(1751), - [sym__nullary_operator] = STATE(1751), - [sym_unary_operator] = STATE(1751), - [sym_binary_operator] = STATE(1751), + [744] = { + [sym__expression] = STATE(1403), + [sym_block] = STATE(1403), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(1403), + [sym_nil] = STATE(1403), + [sym__atom] = STATE(1403), + [sym_quoted_atom] = STATE(1403), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1403), + [sym_charlist] = STATE(1403), + [sym_sigil] = STATE(1403), + [sym_list] = STATE(1403), + [sym_tuple] = STATE(1403), + [sym_bitstring] = STATE(1403), + [sym_map] = STATE(1403), + [sym__nullary_operator] = STATE(1403), + [sym_unary_operator] = STATE(1403), + [sym_binary_operator] = STATE(1403), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1751), - [sym_call] = STATE(1751), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1751), - [sym_anonymous_function] = STATE(1751), + [sym_dot] = STATE(1403), + [sym_call] = STATE(1403), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1403), + [sym_anonymous_function] = STATE(1403), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2327), - [sym_integer] = ACTIONS(2327), - [sym_float] = ACTIONS(2327), - [sym_char] = ACTIONS(2327), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [sym_alias] = ACTIONS(2261), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2261), + [sym_char] = ACTIONS(2261), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2327), + [sym_atom] = ACTIONS(2261), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -121904,18 +121553,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -121957,82 +121606,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, + [745] = { + [sym__expression] = STATE(4482), + [sym_block] = STATE(4482), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4482), + [sym_nil] = STATE(4482), + [sym__atom] = STATE(4482), + [sym_quoted_atom] = STATE(4482), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4482), + [sym_charlist] = STATE(4482), + [sym_sigil] = STATE(4482), + [sym_list] = STATE(4482), + [sym_tuple] = STATE(4482), + [sym_bitstring] = STATE(4482), + [sym_map] = STATE(4482), + [sym__nullary_operator] = STATE(4482), + [sym_unary_operator] = STATE(4482), + [sym_binary_operator] = STATE(4482), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4482), + [sym_call] = STATE(4482), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4482), + [sym_anonymous_function] = STATE(4482), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), + [sym_alias] = ACTIONS(2325), + [sym_integer] = ACTIONS(2325), + [sym_float] = ACTIONS(2325), + [sym_char] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), + [sym_atom] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1131), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1133), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(1135), + }, [746] = { - [sym__expression] = STATE(1752), - [sym_block] = STATE(1752), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1752), - [sym_nil] = STATE(1752), - [sym__atom] = STATE(1752), - [sym_quoted_atom] = STATE(1752), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1752), - [sym_charlist] = STATE(1752), - [sym_sigil] = STATE(1752), - [sym_list] = STATE(1752), - [sym_tuple] = STATE(1752), - [sym_bitstring] = STATE(1752), - [sym_map] = STATE(1752), - [sym__nullary_operator] = STATE(1752), - [sym_unary_operator] = STATE(1752), - [sym_binary_operator] = STATE(1752), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1752), - [sym_call] = STATE(1752), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1752), - [sym_anonymous_function] = STATE(1752), + [sym__expression] = STATE(2544), + [sym_block] = STATE(2544), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2544), + [sym_nil] = STATE(2544), + [sym__atom] = STATE(2544), + [sym_quoted_atom] = STATE(2544), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2544), + [sym_charlist] = STATE(2544), + [sym_sigil] = STATE(2544), + [sym_list] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_bitstring] = STATE(2544), + [sym_map] = STATE(2544), + [sym__nullary_operator] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_binary_operator] = STATE(2544), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2544), + [sym_call] = STATE(2544), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2544), + [sym_anonymous_function] = STATE(2544), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2327), + [sym_integer] = ACTIONS(2327), + [sym_float] = ACTIONS(2327), + [sym_char] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(225), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(481), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(231), + }, + [747] = { + [sym__expression] = STATE(3289), + [sym_block] = STATE(3289), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3289), + [sym_nil] = STATE(3289), + [sym__atom] = STATE(3289), + [sym_quoted_atom] = STATE(3289), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3289), + [sym_charlist] = STATE(3289), + [sym_sigil] = STATE(3289), + [sym_list] = STATE(3289), + [sym_tuple] = STATE(3289), + [sym_bitstring] = STATE(3289), + [sym_map] = STATE(3289), + [sym__nullary_operator] = STATE(3289), + [sym_unary_operator] = STATE(3289), + [sym_binary_operator] = STATE(3289), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3289), + [sym_call] = STATE(3289), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3289), + [sym_anonymous_function] = STATE(3289), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2329), [sym_integer] = ACTIONS(2329), [sym_float] = ACTIONS(2329), [sym_char] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122070,86 +121953,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(532), }, - [747] = { - [sym__expression] = STATE(1753), - [sym_block] = STATE(1753), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1753), - [sym_nil] = STATE(1753), - [sym__atom] = STATE(1753), - [sym_quoted_atom] = STATE(1753), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1753), - [sym_charlist] = STATE(1753), - [sym_sigil] = STATE(1753), - [sym_list] = STATE(1753), - [sym_tuple] = STATE(1753), - [sym_bitstring] = STATE(1753), - [sym_map] = STATE(1753), - [sym__nullary_operator] = STATE(1753), - [sym_unary_operator] = STATE(1753), - [sym_binary_operator] = STATE(1753), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1753), - [sym_call] = STATE(1753), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1753), - [sym_anonymous_function] = STATE(1753), + [748] = { + [sym__expression] = STATE(3279), + [sym_block] = STATE(3279), + [sym_identifier] = STATE(53), + [sym_boolean] = STATE(3279), + [sym_nil] = STATE(3279), + [sym__atom] = STATE(3279), + [sym_quoted_atom] = STATE(3279), + [sym__quoted_i_double] = STATE(3252), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3306), + [sym__quoted_i_heredoc_double] = STATE(3305), + [sym_string] = STATE(3279), + [sym_charlist] = STATE(3279), + [sym_sigil] = STATE(3279), + [sym_list] = STATE(3279), + [sym_tuple] = STATE(3279), + [sym_bitstring] = STATE(3279), + [sym_map] = STATE(3279), + [sym__nullary_operator] = STATE(3279), + [sym_unary_operator] = STATE(3279), + [sym_binary_operator] = STATE(3279), + [sym_operator_identifier] = STATE(6917), + [sym_dot] = STATE(3279), + [sym_call] = STATE(3279), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3303), + [sym__local_call_without_parentheses] = STATE(3300), + [sym__local_call_with_parentheses] = STATE(2195), + [sym__local_call_just_do_block] = STATE(3153), + [sym__remote_call_without_parentheses] = STATE(3031), + [sym__remote_call_with_parentheses] = STATE(2159), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(2139), + [sym__anonymous_dot] = STATE(6759), + [sym__double_call] = STATE(3493), + [sym_access_call] = STATE(3279), + [sym_anonymous_function] = STATE(3279), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(486), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2331), [sym_integer] = ACTIONS(2331), [sym_float] = ACTIONS(2331), [sym_char] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(492), + [anon_sym_false] = ACTIONS(492), + [anon_sym_nil] = ACTIONS(494), [sym_atom] = ACTIONS(2331), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(506), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_PERCENT] = ACTIONS(514), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), + [anon_sym_not] = ACTIONS(518), + [anon_sym_AT] = ACTIONS(520), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122187,86 +122070,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(524), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(530), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(532), }, - [748] = { - [sym__expression] = STATE(1755), - [sym_block] = STATE(1755), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1755), - [sym_nil] = STATE(1755), - [sym__atom] = STATE(1755), - [sym_quoted_atom] = STATE(1755), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1755), - [sym_charlist] = STATE(1755), - [sym_sigil] = STATE(1755), - [sym_list] = STATE(1755), - [sym_tuple] = STATE(1755), - [sym_bitstring] = STATE(1755), - [sym_map] = STATE(1755), - [sym__nullary_operator] = STATE(1755), - [sym_unary_operator] = STATE(1755), - [sym_binary_operator] = STATE(1755), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1755), - [sym_call] = STATE(1755), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1755), - [sym_anonymous_function] = STATE(1755), + [749] = { + [sym__expression] = STATE(4489), + [sym_block] = STATE(4489), + [sym_identifier] = STATE(68), + [sym_boolean] = STATE(4489), + [sym_nil] = STATE(4489), + [sym__atom] = STATE(4489), + [sym_quoted_atom] = STATE(4489), + [sym__quoted_i_double] = STATE(4502), + [sym__quoted_i_single] = STATE(4481), + [sym__quoted_i_heredoc_single] = STATE(4514), + [sym__quoted_i_heredoc_double] = STATE(4515), + [sym_string] = STATE(4489), + [sym_charlist] = STATE(4489), + [sym_sigil] = STATE(4489), + [sym_list] = STATE(4489), + [sym_tuple] = STATE(4489), + [sym_bitstring] = STATE(4489), + [sym_map] = STATE(4489), + [sym__nullary_operator] = STATE(4489), + [sym_unary_operator] = STATE(4489), + [sym_binary_operator] = STATE(4489), + [sym_operator_identifier] = STATE(6903), + [sym_dot] = STATE(4489), + [sym_call] = STATE(4489), + [sym__call_without_parentheses] = STATE(4433), + [sym__call_with_parentheses] = STATE(4436), + [sym__local_call_without_parentheses] = STATE(4534), + [sym__local_call_with_parentheses] = STATE(3547), + [sym__local_call_just_do_block] = STATE(4550), + [sym__remote_call_without_parentheses] = STATE(4551), + [sym__remote_call_with_parentheses] = STATE(3541), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(3539), + [sym__anonymous_dot] = STATE(6839), + [sym__double_call] = STATE(4458), + [sym_access_call] = STATE(4489), + [sym_anonymous_function] = STATE(4489), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(1091), + [aux_sym_identifier_token1] = ACTIONS(1093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), [sym_alias] = ACTIONS(2333), [sym_integer] = ACTIONS(2333), [sym_float] = ACTIONS(2333), [sym_char] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [anon_sym_nil] = ACTIONS(1099), [sym_atom] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(1101), + [anon_sym_SQUOTE] = ACTIONS(1103), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1111), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1129), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122304,56 +122187,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(1131), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(1133), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(1135), }, - [749] = { - [sym__expression] = STATE(1756), - [sym_block] = STATE(1756), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1756), - [sym_nil] = STATE(1756), - [sym__atom] = STATE(1756), - [sym_quoted_atom] = STATE(1756), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1756), - [sym_charlist] = STATE(1756), - [sym_sigil] = STATE(1756), - [sym_list] = STATE(1756), - [sym_tuple] = STATE(1756), - [sym_bitstring] = STATE(1756), - [sym_map] = STATE(1756), - [sym__nullary_operator] = STATE(1756), - [sym_unary_operator] = STATE(1756), - [sym_binary_operator] = STATE(1756), + [750] = { + [sym__expression] = STATE(3220), + [sym_block] = STATE(3220), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3220), + [sym_nil] = STATE(3220), + [sym__atom] = STATE(3220), + [sym_quoted_atom] = STATE(3220), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3220), + [sym_charlist] = STATE(3220), + [sym_sigil] = STATE(3220), + [sym_list] = STATE(3220), + [sym_tuple] = STATE(3220), + [sym_bitstring] = STATE(3220), + [sym_map] = STATE(3220), + [sym__nullary_operator] = STATE(3220), + [sym_unary_operator] = STATE(3220), + [sym_binary_operator] = STATE(3220), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1756), - [sym_call] = STATE(1756), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1756), - [sym_anonymous_function] = STATE(1756), + [sym_dot] = STATE(3220), + [sym_call] = STATE(3220), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3220), + [sym_anonymous_function] = STATE(3220), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2335), [sym_integer] = ACTIONS(2335), [sym_float] = ACTIONS(2335), @@ -122372,18 +122255,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122425,82 +122308,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [750] = { - [sym__expression] = STATE(1459), - [sym_block] = STATE(1459), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1459), - [sym_nil] = STATE(1459), - [sym__atom] = STATE(1459), - [sym_quoted_atom] = STATE(1459), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1459), - [sym_charlist] = STATE(1459), - [sym_sigil] = STATE(1459), - [sym_list] = STATE(1459), - [sym_tuple] = STATE(1459), - [sym_bitstring] = STATE(1459), - [sym_map] = STATE(1459), - [sym__nullary_operator] = STATE(1459), - [sym_unary_operator] = STATE(1459), - [sym_binary_operator] = STATE(1459), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1459), - [sym_call] = STATE(1459), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1459), - [sym_anonymous_function] = STATE(1459), + [751] = { + [sym__expression] = STATE(1261), + [sym_block] = STATE(1261), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1261), + [sym_nil] = STATE(1261), + [sym__atom] = STATE(1261), + [sym_quoted_atom] = STATE(1261), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1261), + [sym_charlist] = STATE(1261), + [sym_sigil] = STATE(1261), + [sym_list] = STATE(1261), + [sym_tuple] = STATE(1261), + [sym_bitstring] = STATE(1261), + [sym_map] = STATE(1261), + [sym__nullary_operator] = STATE(1261), + [sym_unary_operator] = STATE(1261), + [sym_binary_operator] = STATE(1261), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1261), + [sym_call] = STATE(1261), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1261), + [sym_anonymous_function] = STATE(1261), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2337), [sym_integer] = ACTIONS(2337), [sym_float] = ACTIONS(2337), [sym_char] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122538,56 +122421,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, - [751] = { - [sym__expression] = STATE(1596), - [sym_block] = STATE(1596), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1596), - [sym_nil] = STATE(1596), - [sym__atom] = STATE(1596), - [sym_quoted_atom] = STATE(1596), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1596), - [sym_charlist] = STATE(1596), - [sym_sigil] = STATE(1596), - [sym_list] = STATE(1596), - [sym_tuple] = STATE(1596), - [sym_bitstring] = STATE(1596), - [sym_map] = STATE(1596), - [sym__nullary_operator] = STATE(1596), - [sym_unary_operator] = STATE(1596), - [sym_binary_operator] = STATE(1596), + [752] = { + [sym__expression] = STATE(3219), + [sym_block] = STATE(3219), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3219), + [sym_nil] = STATE(3219), + [sym__atom] = STATE(3219), + [sym_quoted_atom] = STATE(3219), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3219), + [sym_charlist] = STATE(3219), + [sym_sigil] = STATE(3219), + [sym_list] = STATE(3219), + [sym_tuple] = STATE(3219), + [sym_bitstring] = STATE(3219), + [sym_map] = STATE(3219), + [sym__nullary_operator] = STATE(3219), + [sym_unary_operator] = STATE(3219), + [sym_binary_operator] = STATE(3219), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1596), - [sym_call] = STATE(1596), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1596), - [sym_anonymous_function] = STATE(1596), + [sym_dot] = STATE(3219), + [sym_call] = STATE(3219), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3219), + [sym_anonymous_function] = STATE(3219), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2339), [sym_integer] = ACTIONS(2339), [sym_float] = ACTIONS(2339), @@ -122606,18 +122489,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122659,52 +122542,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [752] = { - [sym__expression] = STATE(1452), - [sym_block] = STATE(1452), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1452), - [sym_nil] = STATE(1452), - [sym__atom] = STATE(1452), - [sym_quoted_atom] = STATE(1452), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1452), - [sym_charlist] = STATE(1452), - [sym_sigil] = STATE(1452), - [sym_list] = STATE(1452), - [sym_tuple] = STATE(1452), - [sym_bitstring] = STATE(1452), - [sym_map] = STATE(1452), - [sym__nullary_operator] = STATE(1452), - [sym_unary_operator] = STATE(1452), - [sym_binary_operator] = STATE(1452), + [753] = { + [sym__expression] = STATE(3217), + [sym_block] = STATE(3217), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3217), + [sym_nil] = STATE(3217), + [sym__atom] = STATE(3217), + [sym_quoted_atom] = STATE(3217), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3217), + [sym_charlist] = STATE(3217), + [sym_sigil] = STATE(3217), + [sym_list] = STATE(3217), + [sym_tuple] = STATE(3217), + [sym_bitstring] = STATE(3217), + [sym_map] = STATE(3217), + [sym__nullary_operator] = STATE(3217), + [sym_unary_operator] = STATE(3217), + [sym_binary_operator] = STATE(3217), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1452), - [sym_call] = STATE(1452), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1452), - [sym_anonymous_function] = STATE(1452), + [sym_dot] = STATE(3217), + [sym_call] = STATE(3217), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3217), + [sym_anonymous_function] = STATE(3217), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2341), [sym_integer] = ACTIONS(2341), [sym_float] = ACTIONS(2341), @@ -122722,19 +122605,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122776,52 +122659,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [753] = { - [sym__expression] = STATE(1598), - [sym_block] = STATE(1598), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1598), - [sym_nil] = STATE(1598), - [sym__atom] = STATE(1598), - [sym_quoted_atom] = STATE(1598), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1598), - [sym_charlist] = STATE(1598), - [sym_sigil] = STATE(1598), - [sym_list] = STATE(1598), - [sym_tuple] = STATE(1598), - [sym_bitstring] = STATE(1598), - [sym_map] = STATE(1598), - [sym__nullary_operator] = STATE(1598), - [sym_unary_operator] = STATE(1598), - [sym_binary_operator] = STATE(1598), + [754] = { + [sym__expression] = STATE(3216), + [sym_block] = STATE(3216), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3216), + [sym_nil] = STATE(3216), + [sym__atom] = STATE(3216), + [sym_quoted_atom] = STATE(3216), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3216), + [sym_charlist] = STATE(3216), + [sym_sigil] = STATE(3216), + [sym_list] = STATE(3216), + [sym_tuple] = STATE(3216), + [sym_bitstring] = STATE(3216), + [sym_map] = STATE(3216), + [sym__nullary_operator] = STATE(3216), + [sym_unary_operator] = STATE(3216), + [sym_binary_operator] = STATE(3216), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1598), - [sym_call] = STATE(1598), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1598), - [sym_anonymous_function] = STATE(1598), + [sym_dot] = STATE(3216), + [sym_call] = STATE(3216), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3216), + [sym_anonymous_function] = STATE(3216), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2343), [sym_integer] = ACTIONS(2343), [sym_float] = ACTIONS(2343), @@ -122839,19 +122722,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(454), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -122893,82 +122776,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [754] = { - [sym__expression] = STATE(4087), - [sym_block] = STATE(4087), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4087), - [sym_nil] = STATE(4087), - [sym__atom] = STATE(4087), - [sym_quoted_atom] = STATE(4087), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4087), - [sym_charlist] = STATE(4087), - [sym_sigil] = STATE(4087), - [sym_list] = STATE(4087), - [sym_tuple] = STATE(4087), - [sym_bitstring] = STATE(4087), - [sym_map] = STATE(4087), - [sym__nullary_operator] = STATE(4087), - [sym_unary_operator] = STATE(4087), - [sym_binary_operator] = STATE(4087), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4087), - [sym_call] = STATE(4087), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4087), - [sym_anonymous_function] = STATE(4087), + [755] = { + [sym__expression] = STATE(3215), + [sym_block] = STATE(3215), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3215), + [sym_nil] = STATE(3215), + [sym__atom] = STATE(3215), + [sym_quoted_atom] = STATE(3215), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3215), + [sym_charlist] = STATE(3215), + [sym_sigil] = STATE(3215), + [sym_list] = STATE(3215), + [sym_tuple] = STATE(3215), + [sym_bitstring] = STATE(3215), + [sym_map] = STATE(3215), + [sym__nullary_operator] = STATE(3215), + [sym_unary_operator] = STATE(3215), + [sym_binary_operator] = STATE(3215), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3215), + [sym_call] = STATE(3215), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3215), + [sym_anonymous_function] = STATE(3215), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2345), [sym_integer] = ACTIONS(2345), [sym_float] = ACTIONS(2345), [sym_char] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123006,86 +122889,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [755] = { - [sym__expression] = STATE(4084), - [sym_block] = STATE(4084), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4084), - [sym_nil] = STATE(4084), - [sym__atom] = STATE(4084), - [sym_quoted_atom] = STATE(4084), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4084), - [sym_charlist] = STATE(4084), - [sym_sigil] = STATE(4084), - [sym_list] = STATE(4084), - [sym_tuple] = STATE(4084), - [sym_bitstring] = STATE(4084), - [sym_map] = STATE(4084), - [sym__nullary_operator] = STATE(4084), - [sym_unary_operator] = STATE(4084), - [sym_binary_operator] = STATE(4084), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4084), - [sym_call] = STATE(4084), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4084), - [sym_anonymous_function] = STATE(4084), + [756] = { + [sym__expression] = STATE(3214), + [sym_block] = STATE(3214), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3214), + [sym_nil] = STATE(3214), + [sym__atom] = STATE(3214), + [sym_quoted_atom] = STATE(3214), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3214), + [sym_charlist] = STATE(3214), + [sym_sigil] = STATE(3214), + [sym_list] = STATE(3214), + [sym_tuple] = STATE(3214), + [sym_bitstring] = STATE(3214), + [sym_map] = STATE(3214), + [sym__nullary_operator] = STATE(3214), + [sym_unary_operator] = STATE(3214), + [sym_binary_operator] = STATE(3214), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3214), + [sym_call] = STATE(3214), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3214), + [sym_anonymous_function] = STATE(3214), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2347), [sym_integer] = ACTIONS(2347), [sym_float] = ACTIONS(2347), [sym_char] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2347), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123123,86 +123006,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [756] = { - [sym__expression] = STATE(4083), - [sym_block] = STATE(4083), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4083), - [sym_nil] = STATE(4083), - [sym__atom] = STATE(4083), - [sym_quoted_atom] = STATE(4083), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4083), - [sym_charlist] = STATE(4083), - [sym_sigil] = STATE(4083), - [sym_list] = STATE(4083), - [sym_tuple] = STATE(4083), - [sym_bitstring] = STATE(4083), - [sym_map] = STATE(4083), - [sym__nullary_operator] = STATE(4083), - [sym_unary_operator] = STATE(4083), - [sym_binary_operator] = STATE(4083), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4083), - [sym_call] = STATE(4083), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4083), - [sym_anonymous_function] = STATE(4083), + [757] = { + [sym__expression] = STATE(3212), + [sym_block] = STATE(3212), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3212), + [sym_nil] = STATE(3212), + [sym__atom] = STATE(3212), + [sym_quoted_atom] = STATE(3212), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3212), + [sym_charlist] = STATE(3212), + [sym_sigil] = STATE(3212), + [sym_list] = STATE(3212), + [sym_tuple] = STATE(3212), + [sym_bitstring] = STATE(3212), + [sym_map] = STATE(3212), + [sym__nullary_operator] = STATE(3212), + [sym_unary_operator] = STATE(3212), + [sym_binary_operator] = STATE(3212), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3212), + [sym_call] = STATE(3212), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3212), + [sym_anonymous_function] = STATE(3212), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2349), [sym_integer] = ACTIONS(2349), [sym_float] = ACTIONS(2349), [sym_char] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123240,86 +123123,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [757] = { - [sym__expression] = STATE(4082), - [sym_block] = STATE(4082), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4082), - [sym_nil] = STATE(4082), - [sym__atom] = STATE(4082), - [sym_quoted_atom] = STATE(4082), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4082), - [sym_charlist] = STATE(4082), - [sym_sigil] = STATE(4082), - [sym_list] = STATE(4082), - [sym_tuple] = STATE(4082), - [sym_bitstring] = STATE(4082), - [sym_map] = STATE(4082), - [sym__nullary_operator] = STATE(4082), - [sym_unary_operator] = STATE(4082), - [sym_binary_operator] = STATE(4082), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4082), - [sym_call] = STATE(4082), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4082), - [sym_anonymous_function] = STATE(4082), + [758] = { + [sym__expression] = STATE(3211), + [sym_block] = STATE(3211), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3211), + [sym_nil] = STATE(3211), + [sym__atom] = STATE(3211), + [sym_quoted_atom] = STATE(3211), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3211), + [sym_charlist] = STATE(3211), + [sym_sigil] = STATE(3211), + [sym_list] = STATE(3211), + [sym_tuple] = STATE(3211), + [sym_bitstring] = STATE(3211), + [sym_map] = STATE(3211), + [sym__nullary_operator] = STATE(3211), + [sym_unary_operator] = STATE(3211), + [sym_binary_operator] = STATE(3211), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3211), + [sym_call] = STATE(3211), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3211), + [sym_anonymous_function] = STATE(3211), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2351), [sym_integer] = ACTIONS(2351), [sym_float] = ACTIONS(2351), [sym_char] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2351), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123357,86 +123240,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [758] = { - [sym__expression] = STATE(4081), - [sym_block] = STATE(4081), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4081), - [sym_nil] = STATE(4081), - [sym__atom] = STATE(4081), - [sym_quoted_atom] = STATE(4081), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4081), - [sym_charlist] = STATE(4081), - [sym_sigil] = STATE(4081), - [sym_list] = STATE(4081), - [sym_tuple] = STATE(4081), - [sym_bitstring] = STATE(4081), - [sym_map] = STATE(4081), - [sym__nullary_operator] = STATE(4081), - [sym_unary_operator] = STATE(4081), - [sym_binary_operator] = STATE(4081), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4081), - [sym_call] = STATE(4081), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4081), - [sym_anonymous_function] = STATE(4081), + [759] = { + [sym__expression] = STATE(3210), + [sym_block] = STATE(3210), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3210), + [sym_nil] = STATE(3210), + [sym__atom] = STATE(3210), + [sym_quoted_atom] = STATE(3210), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3210), + [sym_charlist] = STATE(3210), + [sym_sigil] = STATE(3210), + [sym_list] = STATE(3210), + [sym_tuple] = STATE(3210), + [sym_bitstring] = STATE(3210), + [sym_map] = STATE(3210), + [sym__nullary_operator] = STATE(3210), + [sym_unary_operator] = STATE(3210), + [sym_binary_operator] = STATE(3210), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3210), + [sym_call] = STATE(3210), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3210), + [sym_anonymous_function] = STATE(3210), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2353), [sym_integer] = ACTIONS(2353), [sym_float] = ACTIONS(2353), [sym_char] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123474,86 +123357,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [759] = { - [sym__expression] = STATE(4080), - [sym_block] = STATE(4080), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4080), - [sym_nil] = STATE(4080), - [sym__atom] = STATE(4080), - [sym_quoted_atom] = STATE(4080), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4080), - [sym_charlist] = STATE(4080), - [sym_sigil] = STATE(4080), - [sym_list] = STATE(4080), - [sym_tuple] = STATE(4080), - [sym_bitstring] = STATE(4080), - [sym_map] = STATE(4080), - [sym__nullary_operator] = STATE(4080), - [sym_unary_operator] = STATE(4080), - [sym_binary_operator] = STATE(4080), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4080), - [sym_call] = STATE(4080), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4080), - [sym_anonymous_function] = STATE(4080), + [760] = { + [sym__expression] = STATE(3209), + [sym_block] = STATE(3209), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3209), + [sym_nil] = STATE(3209), + [sym__atom] = STATE(3209), + [sym_quoted_atom] = STATE(3209), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3209), + [sym_charlist] = STATE(3209), + [sym_sigil] = STATE(3209), + [sym_list] = STATE(3209), + [sym_tuple] = STATE(3209), + [sym_bitstring] = STATE(3209), + [sym_map] = STATE(3209), + [sym__nullary_operator] = STATE(3209), + [sym_unary_operator] = STATE(3209), + [sym_binary_operator] = STATE(3209), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3209), + [sym_call] = STATE(3209), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3209), + [sym_anonymous_function] = STATE(3209), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2355), [sym_integer] = ACTIONS(2355), [sym_float] = ACTIONS(2355), [sym_char] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2355), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123591,86 +123474,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [760] = { - [sym__expression] = STATE(4288), - [sym_block] = STATE(4288), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4288), - [sym_nil] = STATE(4288), - [sym__atom] = STATE(4288), - [sym_quoted_atom] = STATE(4288), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4288), - [sym_charlist] = STATE(4288), - [sym_sigil] = STATE(4288), - [sym_list] = STATE(4288), - [sym_tuple] = STATE(4288), - [sym_bitstring] = STATE(4288), - [sym_map] = STATE(4288), - [sym__nullary_operator] = STATE(4288), - [sym_unary_operator] = STATE(4288), - [sym_binary_operator] = STATE(4288), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4288), - [sym_call] = STATE(4288), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4288), - [sym_anonymous_function] = STATE(4288), + [761] = { + [sym__expression] = STATE(2920), + [sym_block] = STATE(2920), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(2920), + [sym_nil] = STATE(2920), + [sym__atom] = STATE(2920), + [sym_quoted_atom] = STATE(2920), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(2920), + [sym_charlist] = STATE(2920), + [sym_sigil] = STATE(2920), + [sym_list] = STATE(2920), + [sym_tuple] = STATE(2920), + [sym_bitstring] = STATE(2920), + [sym_map] = STATE(2920), + [sym__nullary_operator] = STATE(2920), + [sym_unary_operator] = STATE(2920), + [sym_binary_operator] = STATE(2920), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(2920), + [sym_call] = STATE(2920), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(2920), + [sym_anonymous_function] = STATE(2920), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2357), [sym_integer] = ACTIONS(2357), [sym_float] = ACTIONS(2357), [sym_char] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123708,86 +123591,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(281), }, - [761] = { - [sym__expression] = STATE(2969), - [sym_block] = STATE(2969), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2969), - [sym_nil] = STATE(2969), - [sym__atom] = STATE(2969), - [sym_quoted_atom] = STATE(2969), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2969), - [sym_charlist] = STATE(2969), - [sym_sigil] = STATE(2969), - [sym_list] = STATE(2969), - [sym_tuple] = STATE(2969), - [sym_bitstring] = STATE(2969), - [sym_map] = STATE(2969), - [sym__nullary_operator] = STATE(2969), - [sym_unary_operator] = STATE(2969), - [sym_binary_operator] = STATE(2969), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2969), - [sym_call] = STATE(2969), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(2969), - [sym_anonymous_function] = STATE(2969), + [762] = { + [sym__expression] = STATE(3207), + [sym_block] = STATE(3207), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3207), + [sym_nil] = STATE(3207), + [sym__atom] = STATE(3207), + [sym_quoted_atom] = STATE(3207), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3207), + [sym_charlist] = STATE(3207), + [sym_sigil] = STATE(3207), + [sym_list] = STATE(3207), + [sym_tuple] = STATE(3207), + [sym_bitstring] = STATE(3207), + [sym_map] = STATE(3207), + [sym__nullary_operator] = STATE(3207), + [sym_unary_operator] = STATE(3207), + [sym_binary_operator] = STATE(3207), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3207), + [sym_call] = STATE(3207), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3207), + [sym_anonymous_function] = STATE(3207), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2359), [sym_integer] = ACTIONS(2359), [sym_float] = ACTIONS(2359), [sym_char] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2359), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123825,86 +123708,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(281), }, - [762] = { - [sym__expression] = STATE(2970), - [sym_block] = STATE(2970), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2970), - [sym_nil] = STATE(2970), - [sym__atom] = STATE(2970), - [sym_quoted_atom] = STATE(2970), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2970), - [sym_charlist] = STATE(2970), - [sym_sigil] = STATE(2970), - [sym_list] = STATE(2970), - [sym_tuple] = STATE(2970), - [sym_bitstring] = STATE(2970), - [sym_map] = STATE(2970), - [sym__nullary_operator] = STATE(2970), - [sym_unary_operator] = STATE(2970), - [sym_binary_operator] = STATE(2970), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2970), - [sym_call] = STATE(2970), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(2970), - [sym_anonymous_function] = STATE(2970), + [763] = { + [sym__expression] = STATE(3206), + [sym_block] = STATE(3206), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3206), + [sym_nil] = STATE(3206), + [sym__atom] = STATE(3206), + [sym_quoted_atom] = STATE(3206), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3206), + [sym_charlist] = STATE(3206), + [sym_sigil] = STATE(3206), + [sym_list] = STATE(3206), + [sym_tuple] = STATE(3206), + [sym_bitstring] = STATE(3206), + [sym_map] = STATE(3206), + [sym__nullary_operator] = STATE(3206), + [sym_unary_operator] = STATE(3206), + [sym_binary_operator] = STATE(3206), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3206), + [sym_call] = STATE(3206), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3206), + [sym_anonymous_function] = STATE(3206), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2361), [sym_integer] = ACTIONS(2361), [sym_float] = ACTIONS(2361), [sym_char] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -123942,86 +123825,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(281), }, - [763] = { - [sym__expression] = STATE(2987), - [sym_block] = STATE(2987), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2987), - [sym_nil] = STATE(2987), - [sym__atom] = STATE(2987), - [sym_quoted_atom] = STATE(2987), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2987), - [sym_charlist] = STATE(2987), - [sym_sigil] = STATE(2987), - [sym_list] = STATE(2987), - [sym_tuple] = STATE(2987), - [sym_bitstring] = STATE(2987), - [sym_map] = STATE(2987), - [sym__nullary_operator] = STATE(2987), - [sym_unary_operator] = STATE(2987), - [sym_binary_operator] = STATE(2987), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2987), - [sym_call] = STATE(2987), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(2987), - [sym_anonymous_function] = STATE(2987), + [764] = { + [sym__expression] = STATE(3205), + [sym_block] = STATE(3205), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3205), + [sym_nil] = STATE(3205), + [sym__atom] = STATE(3205), + [sym_quoted_atom] = STATE(3205), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3205), + [sym_charlist] = STATE(3205), + [sym_sigil] = STATE(3205), + [sym_list] = STATE(3205), + [sym_tuple] = STATE(3205), + [sym_bitstring] = STATE(3205), + [sym_map] = STATE(3205), + [sym__nullary_operator] = STATE(3205), + [sym_unary_operator] = STATE(3205), + [sym_binary_operator] = STATE(3205), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3205), + [sym_call] = STATE(3205), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3205), + [sym_anonymous_function] = STATE(3205), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2363), [sym_integer] = ACTIONS(2363), [sym_float] = ACTIONS(2363), [sym_char] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2363), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124059,86 +123942,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(281), }, - [764] = { - [sym__expression] = STATE(2988), - [sym_block] = STATE(2988), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(2988), - [sym_nil] = STATE(2988), - [sym__atom] = STATE(2988), - [sym_quoted_atom] = STATE(2988), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(2988), - [sym_charlist] = STATE(2988), - [sym_sigil] = STATE(2988), - [sym_list] = STATE(2988), - [sym_tuple] = STATE(2988), - [sym_bitstring] = STATE(2988), - [sym_map] = STATE(2988), - [sym__nullary_operator] = STATE(2988), - [sym_unary_operator] = STATE(2988), - [sym_binary_operator] = STATE(2988), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(2988), - [sym_call] = STATE(2988), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(2988), - [sym_anonymous_function] = STATE(2988), + [765] = { + [sym__expression] = STATE(3204), + [sym_block] = STATE(3204), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3204), + [sym_nil] = STATE(3204), + [sym__atom] = STATE(3204), + [sym_quoted_atom] = STATE(3204), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3204), + [sym_charlist] = STATE(3204), + [sym_sigil] = STATE(3204), + [sym_list] = STATE(3204), + [sym_tuple] = STATE(3204), + [sym_bitstring] = STATE(3204), + [sym_map] = STATE(3204), + [sym__nullary_operator] = STATE(3204), + [sym_unary_operator] = STATE(3204), + [sym_binary_operator] = STATE(3204), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3204), + [sym_call] = STATE(3204), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3204), + [sym_anonymous_function] = STATE(3204), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2365), [sym_integer] = ACTIONS(2365), [sym_float] = ACTIONS(2365), [sym_char] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124176,86 +124059,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(281), }, - [765] = { - [sym__expression] = STATE(3257), - [sym_block] = STATE(3257), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3257), - [sym_nil] = STATE(3257), - [sym__atom] = STATE(3257), - [sym_quoted_atom] = STATE(3257), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3257), - [sym_charlist] = STATE(3257), - [sym_sigil] = STATE(3257), - [sym_list] = STATE(3257), - [sym_tuple] = STATE(3257), - [sym_bitstring] = STATE(3257), - [sym_map] = STATE(3257), - [sym__nullary_operator] = STATE(3257), - [sym_unary_operator] = STATE(3257), - [sym_binary_operator] = STATE(3257), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3257), - [sym_call] = STATE(3257), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3257), - [sym_anonymous_function] = STATE(3257), + [766] = { + [sym__expression] = STATE(3005), + [sym_block] = STATE(3005), + [sym_identifier] = STATE(42), + [sym_boolean] = STATE(3005), + [sym_nil] = STATE(3005), + [sym__atom] = STATE(3005), + [sym_quoted_atom] = STATE(3005), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(3005), + [sym_charlist] = STATE(3005), + [sym_sigil] = STATE(3005), + [sym_list] = STATE(3005), + [sym_tuple] = STATE(3005), + [sym_bitstring] = STATE(3005), + [sym_map] = STATE(3005), + [sym__nullary_operator] = STATE(3005), + [sym_unary_operator] = STATE(3005), + [sym_binary_operator] = STATE(3005), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(3005), + [sym_call] = STATE(3005), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(3005), + [sym_anonymous_function] = STATE(3005), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2367), [sym_integer] = ACTIONS(2367), [sym_float] = ACTIONS(2367), [sym_char] = ACTIONS(2367), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2367), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(463), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_CARET] = ACTIONS(463), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), + [anon_sym_not] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(465), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124293,86 +124176,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(467), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(281), }, - [766] = { - [sym__expression] = STATE(3258), - [sym_block] = STATE(3258), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3258), - [sym_nil] = STATE(3258), - [sym__atom] = STATE(3258), - [sym_quoted_atom] = STATE(3258), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3258), - [sym_charlist] = STATE(3258), - [sym_sigil] = STATE(3258), - [sym_list] = STATE(3258), - [sym_tuple] = STATE(3258), - [sym_bitstring] = STATE(3258), - [sym_map] = STATE(3258), - [sym__nullary_operator] = STATE(3258), - [sym_unary_operator] = STATE(3258), - [sym_binary_operator] = STATE(3258), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3258), - [sym_call] = STATE(3258), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3258), - [sym_anonymous_function] = STATE(3258), + [767] = { + [sym__expression] = STATE(2032), + [sym_block] = STATE(2032), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(2032), + [sym_nil] = STATE(2032), + [sym__atom] = STATE(2032), + [sym_quoted_atom] = STATE(2032), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2032), + [sym_charlist] = STATE(2032), + [sym_sigil] = STATE(2032), + [sym_list] = STATE(2032), + [sym_tuple] = STATE(2032), + [sym_bitstring] = STATE(2032), + [sym_map] = STATE(2032), + [sym__nullary_operator] = STATE(2032), + [sym_unary_operator] = STATE(2032), + [sym_binary_operator] = STATE(2032), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2032), + [sym_call] = STATE(2032), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2032), + [sym_anonymous_function] = STATE(2032), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2369), - [sym_integer] = ACTIONS(2369), - [sym_float] = ACTIONS(2369), - [sym_char] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1903), + [sym_char] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124410,86 +124293,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [767] = { - [sym__expression] = STATE(3307), - [sym_block] = STATE(3307), - [sym_identifier] = STATE(53), - [sym_boolean] = STATE(3307), - [sym_nil] = STATE(3307), - [sym__atom] = STATE(3307), - [sym_quoted_atom] = STATE(3307), - [sym__quoted_i_double] = STATE(3346), - [sym__quoted_i_single] = STATE(3359), - [sym__quoted_i_heredoc_single] = STATE(3015), - [sym__quoted_i_heredoc_double] = STATE(3016), - [sym_string] = STATE(3307), - [sym_charlist] = STATE(3307), - [sym_sigil] = STATE(3307), - [sym_list] = STATE(3307), - [sym_tuple] = STATE(3307), - [sym_bitstring] = STATE(3307), - [sym_map] = STATE(3307), - [sym__nullary_operator] = STATE(3307), - [sym_unary_operator] = STATE(3307), - [sym_binary_operator] = STATE(3307), - [sym_operator_identifier] = STATE(6917), - [sym_dot] = STATE(3307), - [sym_call] = STATE(3307), - [sym__call_without_parentheses] = STATE(3017), - [sym__call_with_parentheses] = STATE(3021), - [sym__local_call_without_parentheses] = STATE(3022), - [sym__local_call_with_parentheses] = STATE(2259), - [sym__local_call_just_do_block] = STATE(3023), - [sym__remote_call_without_parentheses] = STATE(3025), - [sym__remote_call_with_parentheses] = STATE(2274), - [sym__remote_dot] = STATE(52), - [sym__anonymous_call] = STATE(2280), - [sym__anonymous_dot] = STATE(6847), - [sym__double_call] = STATE(3026), - [sym_access_call] = STATE(3307), - [sym_anonymous_function] = STATE(3307), + [768] = { + [sym__expression] = STATE(3975), + [sym_block] = STATE(3975), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3975), + [sym_nil] = STATE(3975), + [sym__atom] = STATE(3975), + [sym_quoted_atom] = STATE(3975), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3975), + [sym_charlist] = STATE(3975), + [sym_sigil] = STATE(3975), + [sym_list] = STATE(3975), + [sym_tuple] = STATE(3975), + [sym_bitstring] = STATE(3975), + [sym_map] = STATE(3975), + [sym__nullary_operator] = STATE(3975), + [sym_unary_operator] = STATE(3975), + [sym_binary_operator] = STATE(3975), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3975), + [sym_call] = STATE(3975), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3975), + [sym_anonymous_function] = STATE(3975), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(486), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), - [sym_alias] = ACTIONS(1425), - [sym_integer] = ACTIONS(1425), - [sym_float] = ACTIONS(1425), - [sym_char] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(492), - [anon_sym_false] = ACTIONS(492), - [anon_sym_nil] = ACTIONS(494), - [sym_atom] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_SQUOTE] = ACTIONS(498), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(500), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(516), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(518), - [anon_sym_not] = ACTIONS(518), - [anon_sym_AT] = ACTIONS(520), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124527,86 +124410,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(530), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(532), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [768] = { - [sym__expression] = STATE(3261), - [sym_block] = STATE(3261), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3261), - [sym_nil] = STATE(3261), - [sym__atom] = STATE(3261), - [sym_quoted_atom] = STATE(3261), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3261), - [sym_charlist] = STATE(3261), - [sym_sigil] = STATE(3261), - [sym_list] = STATE(3261), - [sym_tuple] = STATE(3261), - [sym_bitstring] = STATE(3261), - [sym_map] = STATE(3261), - [sym__nullary_operator] = STATE(3261), - [sym_unary_operator] = STATE(3261), - [sym_binary_operator] = STATE(3261), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3261), - [sym_call] = STATE(3261), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3261), - [sym_anonymous_function] = STATE(3261), + [769] = { + [sym__expression] = STATE(2145), + [sym_block] = STATE(2145), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2145), + [sym_nil] = STATE(2145), + [sym__atom] = STATE(2145), + [sym_quoted_atom] = STATE(2145), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2145), + [sym_charlist] = STATE(2145), + [sym_sigil] = STATE(2145), + [sym_list] = STATE(2145), + [sym_tuple] = STATE(2145), + [sym_bitstring] = STATE(2145), + [sym_map] = STATE(2145), + [sym__nullary_operator] = STATE(2145), + [sym_unary_operator] = STATE(2145), + [sym_binary_operator] = STATE(2145), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2145), + [sym_call] = STATE(2145), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2145), + [sym_anonymous_function] = STATE(2145), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), [sym_alias] = ACTIONS(2371), [sym_integer] = ACTIONS(2371), [sym_float] = ACTIONS(2371), [sym_char] = ACTIONS(2371), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2371), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124644,86 +124527,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [769] = { - [sym__expression] = STATE(3262), - [sym_block] = STATE(3262), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3262), - [sym_nil] = STATE(3262), - [sym__atom] = STATE(3262), - [sym_quoted_atom] = STATE(3262), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3262), - [sym_charlist] = STATE(3262), - [sym_sigil] = STATE(3262), - [sym_list] = STATE(3262), - [sym_tuple] = STATE(3262), - [sym_bitstring] = STATE(3262), - [sym_map] = STATE(3262), - [sym__nullary_operator] = STATE(3262), - [sym_unary_operator] = STATE(3262), - [sym_binary_operator] = STATE(3262), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3262), - [sym_call] = STATE(3262), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3262), - [sym_anonymous_function] = STATE(3262), + [770] = { + [sym__expression] = STATE(1999), + [sym_block] = STATE(1999), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(1999), + [sym_nil] = STATE(1999), + [sym__atom] = STATE(1999), + [sym_quoted_atom] = STATE(1999), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(1999), + [sym_charlist] = STATE(1999), + [sym_sigil] = STATE(1999), + [sym_list] = STATE(1999), + [sym_tuple] = STATE(1999), + [sym_bitstring] = STATE(1999), + [sym_map] = STATE(1999), + [sym__nullary_operator] = STATE(1999), + [sym_unary_operator] = STATE(1999), + [sym_binary_operator] = STATE(1999), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(1999), + [sym_call] = STATE(1999), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(1999), + [sym_anonymous_function] = STATE(1999), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2373), - [sym_integer] = ACTIONS(2373), - [sym_float] = ACTIONS(2373), - [sym_char] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124761,86 +124644,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [770] = { - [sym__expression] = STATE(3263), - [sym_block] = STATE(3263), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3263), - [sym_nil] = STATE(3263), - [sym__atom] = STATE(3263), - [sym_quoted_atom] = STATE(3263), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3263), - [sym_charlist] = STATE(3263), - [sym_sigil] = STATE(3263), - [sym_list] = STATE(3263), - [sym_tuple] = STATE(3263), - [sym_bitstring] = STATE(3263), - [sym_map] = STATE(3263), - [sym__nullary_operator] = STATE(3263), - [sym_unary_operator] = STATE(3263), - [sym_binary_operator] = STATE(3263), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3263), - [sym_call] = STATE(3263), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3263), - [sym_anonymous_function] = STATE(3263), + [771] = { + [sym__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2144), + [sym_charlist] = STATE(2144), + [sym_sigil] = STATE(2144), + [sym_list] = STATE(2144), + [sym_tuple] = STATE(2144), + [sym_bitstring] = STATE(2144), + [sym_map] = STATE(2144), + [sym__nullary_operator] = STATE(2144), + [sym_unary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2144), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2375), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2375), - [sym_char] = ACTIONS(2375), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2373), + [sym_integer] = ACTIONS(2373), + [sym_float] = ACTIONS(2373), + [sym_char] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124878,86 +124761,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [771] = { - [sym__expression] = STATE(3264), - [sym_block] = STATE(3264), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3264), - [sym_nil] = STATE(3264), - [sym__atom] = STATE(3264), - [sym_quoted_atom] = STATE(3264), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3264), - [sym_charlist] = STATE(3264), - [sym_sigil] = STATE(3264), - [sym_list] = STATE(3264), - [sym_tuple] = STATE(3264), - [sym_bitstring] = STATE(3264), - [sym_map] = STATE(3264), - [sym__nullary_operator] = STATE(3264), - [sym_unary_operator] = STATE(3264), - [sym_binary_operator] = STATE(3264), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3264), - [sym_call] = STATE(3264), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3264), - [sym_anonymous_function] = STATE(3264), + [772] = { + [sym__expression] = STATE(2032), + [sym_block] = STATE(2032), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2032), + [sym_nil] = STATE(2032), + [sym__atom] = STATE(2032), + [sym_quoted_atom] = STATE(2032), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2032), + [sym_charlist] = STATE(2032), + [sym_sigil] = STATE(2032), + [sym_list] = STATE(2032), + [sym_tuple] = STATE(2032), + [sym_bitstring] = STATE(2032), + [sym_map] = STATE(2032), + [sym__nullary_operator] = STATE(2032), + [sym_unary_operator] = STATE(2032), + [sym_binary_operator] = STATE(2032), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2032), + [sym_call] = STATE(2032), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2032), + [sym_anonymous_function] = STATE(2032), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2377), - [sym_integer] = ACTIONS(2377), - [sym_float] = ACTIONS(2377), - [sym_char] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1903), + [sym_char] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -124995,86 +124878,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [772] = { - [sym__expression] = STATE(3267), - [sym_block] = STATE(3267), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3267), - [sym_nil] = STATE(3267), - [sym__atom] = STATE(3267), - [sym_quoted_atom] = STATE(3267), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3267), - [sym_charlist] = STATE(3267), - [sym_sigil] = STATE(3267), - [sym_list] = STATE(3267), - [sym_tuple] = STATE(3267), - [sym_bitstring] = STATE(3267), - [sym_map] = STATE(3267), - [sym__nullary_operator] = STATE(3267), - [sym_unary_operator] = STATE(3267), - [sym_binary_operator] = STATE(3267), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3267), - [sym_call] = STATE(3267), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3267), - [sym_anonymous_function] = STATE(3267), + [773] = { + [sym__expression] = STATE(2148), + [sym_block] = STATE(2148), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2148), + [sym_nil] = STATE(2148), + [sym__atom] = STATE(2148), + [sym_quoted_atom] = STATE(2148), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2148), + [sym_charlist] = STATE(2148), + [sym_sigil] = STATE(2148), + [sym_list] = STATE(2148), + [sym_tuple] = STATE(2148), + [sym_bitstring] = STATE(2148), + [sym_map] = STATE(2148), + [sym__nullary_operator] = STATE(2148), + [sym_unary_operator] = STATE(2148), + [sym_binary_operator] = STATE(2148), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2148), + [sym_call] = STATE(2148), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2148), + [sym_anonymous_function] = STATE(2148), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2379), - [sym_integer] = ACTIONS(2379), - [sym_float] = ACTIONS(2379), - [sym_char] = ACTIONS(2379), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2379), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2375), + [sym_integer] = ACTIONS(2375), + [sym_float] = ACTIONS(2375), + [sym_char] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125112,86 +124995,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [773] = { - [sym__expression] = STATE(3268), - [sym_block] = STATE(3268), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3268), - [sym_nil] = STATE(3268), - [sym__atom] = STATE(3268), - [sym_quoted_atom] = STATE(3268), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3268), - [sym_charlist] = STATE(3268), - [sym_sigil] = STATE(3268), - [sym_list] = STATE(3268), - [sym_tuple] = STATE(3268), - [sym_bitstring] = STATE(3268), - [sym_map] = STATE(3268), - [sym__nullary_operator] = STATE(3268), - [sym_unary_operator] = STATE(3268), - [sym_binary_operator] = STATE(3268), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3268), - [sym_call] = STATE(3268), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3268), - [sym_anonymous_function] = STATE(3268), + [774] = { + [sym__expression] = STATE(2149), + [sym_block] = STATE(2149), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2149), + [sym_nil] = STATE(2149), + [sym__atom] = STATE(2149), + [sym_quoted_atom] = STATE(2149), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2149), + [sym_charlist] = STATE(2149), + [sym_sigil] = STATE(2149), + [sym_list] = STATE(2149), + [sym_tuple] = STATE(2149), + [sym_bitstring] = STATE(2149), + [sym_map] = STATE(2149), + [sym__nullary_operator] = STATE(2149), + [sym_unary_operator] = STATE(2149), + [sym_binary_operator] = STATE(2149), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2149), + [sym_call] = STATE(2149), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2149), + [sym_anonymous_function] = STATE(2149), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2381), - [sym_integer] = ACTIONS(2381), - [sym_float] = ACTIONS(2381), - [sym_char] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2377), + [sym_integer] = ACTIONS(2377), + [sym_float] = ACTIONS(2377), + [sym_char] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125229,86 +125112,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [774] = { - [sym__expression] = STATE(3269), - [sym_block] = STATE(3269), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3269), - [sym_nil] = STATE(3269), - [sym__atom] = STATE(3269), - [sym_quoted_atom] = STATE(3269), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3269), - [sym_charlist] = STATE(3269), - [sym_sigil] = STATE(3269), - [sym_list] = STATE(3269), - [sym_tuple] = STATE(3269), - [sym_bitstring] = STATE(3269), - [sym_map] = STATE(3269), - [sym__nullary_operator] = STATE(3269), - [sym_unary_operator] = STATE(3269), - [sym_binary_operator] = STATE(3269), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3269), - [sym_call] = STATE(3269), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3269), - [sym_anonymous_function] = STATE(3269), + [775] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym__atom] = STATE(2151), + [sym_quoted_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym__nullary_operator] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2383), - [sym_integer] = ACTIONS(2383), - [sym_float] = ACTIONS(2383), - [sym_char] = ACTIONS(2383), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2379), + [sym_integer] = ACTIONS(2379), + [sym_float] = ACTIONS(2379), + [sym_char] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125346,86 +125229,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [775] = { - [sym__expression] = STATE(3270), - [sym_block] = STATE(3270), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3270), - [sym_nil] = STATE(3270), - [sym__atom] = STATE(3270), - [sym_quoted_atom] = STATE(3270), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3270), - [sym_charlist] = STATE(3270), - [sym_sigil] = STATE(3270), - [sym_list] = STATE(3270), - [sym_tuple] = STATE(3270), - [sym_bitstring] = STATE(3270), - [sym_map] = STATE(3270), - [sym__nullary_operator] = STATE(3270), - [sym_unary_operator] = STATE(3270), - [sym_binary_operator] = STATE(3270), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3270), - [sym_call] = STATE(3270), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3270), - [sym_anonymous_function] = STATE(3270), + [776] = { + [sym__expression] = STATE(2152), + [sym_block] = STATE(2152), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2152), + [sym_nil] = STATE(2152), + [sym__atom] = STATE(2152), + [sym_quoted_atom] = STATE(2152), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2152), + [sym_charlist] = STATE(2152), + [sym_sigil] = STATE(2152), + [sym_list] = STATE(2152), + [sym_tuple] = STATE(2152), + [sym_bitstring] = STATE(2152), + [sym_map] = STATE(2152), + [sym__nullary_operator] = STATE(2152), + [sym_unary_operator] = STATE(2152), + [sym_binary_operator] = STATE(2152), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2152), + [sym_call] = STATE(2152), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2152), + [sym_anonymous_function] = STATE(2152), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2385), - [sym_integer] = ACTIONS(2385), - [sym_float] = ACTIONS(2385), - [sym_char] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2381), + [sym_integer] = ACTIONS(2381), + [sym_float] = ACTIONS(2381), + [sym_char] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125463,86 +125346,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [776] = { - [sym__expression] = STATE(3271), - [sym_block] = STATE(3271), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3271), - [sym_nil] = STATE(3271), - [sym__atom] = STATE(3271), - [sym_quoted_atom] = STATE(3271), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3271), - [sym_charlist] = STATE(3271), - [sym_sigil] = STATE(3271), - [sym_list] = STATE(3271), - [sym_tuple] = STATE(3271), - [sym_bitstring] = STATE(3271), - [sym_map] = STATE(3271), - [sym__nullary_operator] = STATE(3271), - [sym_unary_operator] = STATE(3271), - [sym_binary_operator] = STATE(3271), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3271), - [sym_call] = STATE(3271), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3271), - [sym_anonymous_function] = STATE(3271), + [777] = { + [sym__expression] = STATE(2153), + [sym_block] = STATE(2153), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2153), + [sym_nil] = STATE(2153), + [sym__atom] = STATE(2153), + [sym_quoted_atom] = STATE(2153), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2153), + [sym_charlist] = STATE(2153), + [sym_sigil] = STATE(2153), + [sym_list] = STATE(2153), + [sym_tuple] = STATE(2153), + [sym_bitstring] = STATE(2153), + [sym_map] = STATE(2153), + [sym__nullary_operator] = STATE(2153), + [sym_unary_operator] = STATE(2153), + [sym_binary_operator] = STATE(2153), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2153), + [sym_call] = STATE(2153), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2153), + [sym_anonymous_function] = STATE(2153), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2387), - [sym_integer] = ACTIONS(2387), - [sym_float] = ACTIONS(2387), - [sym_char] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2383), + [sym_integer] = ACTIONS(2383), + [sym_float] = ACTIONS(2383), + [sym_char] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125580,64 +125463,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [777] = { - [sym__expression] = STATE(4490), - [sym_block] = STATE(4490), - [sym_identifier] = STATE(54), - [sym_boolean] = STATE(4490), - [sym_nil] = STATE(4490), - [sym__atom] = STATE(4490), - [sym_quoted_atom] = STATE(4490), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), + [778] = { + [sym__expression] = STATE(2154), + [sym_block] = STATE(2154), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2154), + [sym_nil] = STATE(2154), + [sym__atom] = STATE(2154), + [sym_quoted_atom] = STATE(2154), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), [sym__quoted_i_heredoc_single] = STATE(1967), [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4490), - [sym_charlist] = STATE(4490), - [sym_sigil] = STATE(4490), - [sym_list] = STATE(4490), - [sym_tuple] = STATE(4490), - [sym_bitstring] = STATE(4490), - [sym_map] = STATE(4490), - [sym__nullary_operator] = STATE(4490), - [sym_unary_operator] = STATE(4490), - [sym_binary_operator] = STATE(4490), + [sym_string] = STATE(2154), + [sym_charlist] = STATE(2154), + [sym_sigil] = STATE(2154), + [sym_list] = STATE(2154), + [sym_tuple] = STATE(2154), + [sym_bitstring] = STATE(2154), + [sym_map] = STATE(2154), + [sym__nullary_operator] = STATE(2154), + [sym_unary_operator] = STATE(2154), + [sym_binary_operator] = STATE(2154), [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4490), - [sym_call] = STATE(4490), + [sym_dot] = STATE(2154), + [sym_call] = STATE(2154), [sym__call_without_parentheses] = STATE(1969), [sym__call_with_parentheses] = STATE(1970), [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), + [sym__local_call_with_parentheses] = STATE(1418), [sym__local_call_just_do_block] = STATE(1973), [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4490), - [sym_anonymous_function] = STATE(4490), + [sym_access_call] = STATE(2154), + [sym_anonymous_function] = STATE(2154), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1383), - [sym_alias] = ACTIONS(1519), - [sym_integer] = ACTIONS(1519), - [sym_float] = ACTIONS(1519), - [sym_char] = ACTIONS(1519), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2385), + [sym_integer] = ACTIONS(2385), + [sym_float] = ACTIONS(2385), + [sym_char] = ACTIONS(2385), [anon_sym_true] = ACTIONS(922), [anon_sym_false] = ACTIONS(922), [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1519), + [sym_atom] = ACTIONS(2385), [anon_sym_DQUOTE] = ACTIONS(926), [anon_sym_SQUOTE] = ACTIONS(928), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), @@ -125648,18 +125531,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(938), [anon_sym_LT_LT] = ACTIONS(940), [anon_sym_PERCENT] = ACTIONS(942), [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1391), - [anon_sym_not] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125701,82 +125584,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1395), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(958), }, - [778] = { - [sym__expression] = STATE(3272), - [sym_block] = STATE(3272), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3272), - [sym_nil] = STATE(3272), - [sym__atom] = STATE(3272), - [sym_quoted_atom] = STATE(3272), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3272), - [sym_charlist] = STATE(3272), - [sym_sigil] = STATE(3272), - [sym_list] = STATE(3272), - [sym_tuple] = STATE(3272), - [sym_bitstring] = STATE(3272), - [sym_map] = STATE(3272), - [sym__nullary_operator] = STATE(3272), - [sym_unary_operator] = STATE(3272), - [sym_binary_operator] = STATE(3272), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3272), - [sym_call] = STATE(3272), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3272), - [sym_anonymous_function] = STATE(3272), + [779] = { + [sym__expression] = STATE(2156), + [sym_block] = STATE(2156), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2156), + [sym_nil] = STATE(2156), + [sym__atom] = STATE(2156), + [sym_quoted_atom] = STATE(2156), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2156), + [sym_charlist] = STATE(2156), + [sym_sigil] = STATE(2156), + [sym_list] = STATE(2156), + [sym_tuple] = STATE(2156), + [sym_bitstring] = STATE(2156), + [sym_map] = STATE(2156), + [sym__nullary_operator] = STATE(2156), + [sym_unary_operator] = STATE(2156), + [sym_binary_operator] = STATE(2156), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2156), + [sym_call] = STATE(2156), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2156), + [sym_anonymous_function] = STATE(2156), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2389), - [sym_integer] = ACTIONS(2389), - [sym_float] = ACTIONS(2389), - [sym_char] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2387), + [sym_integer] = ACTIONS(2387), + [sym_float] = ACTIONS(2387), + [sym_char] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125814,86 +125697,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [779] = { - [sym__expression] = STATE(3273), - [sym_block] = STATE(3273), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3273), - [sym_nil] = STATE(3273), - [sym__atom] = STATE(3273), - [sym_quoted_atom] = STATE(3273), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3273), - [sym_charlist] = STATE(3273), - [sym_sigil] = STATE(3273), - [sym_list] = STATE(3273), - [sym_tuple] = STATE(3273), - [sym_bitstring] = STATE(3273), - [sym_map] = STATE(3273), - [sym__nullary_operator] = STATE(3273), - [sym_unary_operator] = STATE(3273), - [sym_binary_operator] = STATE(3273), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3273), - [sym_call] = STATE(3273), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3273), - [sym_anonymous_function] = STATE(3273), + [780] = { + [sym__expression] = STATE(2157), + [sym_block] = STATE(2157), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2157), + [sym_nil] = STATE(2157), + [sym__atom] = STATE(2157), + [sym_quoted_atom] = STATE(2157), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2157), + [sym_charlist] = STATE(2157), + [sym_sigil] = STATE(2157), + [sym_list] = STATE(2157), + [sym_tuple] = STATE(2157), + [sym_bitstring] = STATE(2157), + [sym_map] = STATE(2157), + [sym__nullary_operator] = STATE(2157), + [sym_unary_operator] = STATE(2157), + [sym_binary_operator] = STATE(2157), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2157), + [sym_call] = STATE(2157), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2157), + [sym_anonymous_function] = STATE(2157), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2391), - [sym_integer] = ACTIONS(2391), - [sym_float] = ACTIONS(2391), - [sym_char] = ACTIONS(2391), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2391), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2389), + [sym_integer] = ACTIONS(2389), + [sym_float] = ACTIONS(2389), + [sym_char] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -125931,86 +125814,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [780] = { - [sym__expression] = STATE(3274), - [sym_block] = STATE(3274), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3274), - [sym_nil] = STATE(3274), - [sym__atom] = STATE(3274), - [sym_quoted_atom] = STATE(3274), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3274), - [sym_charlist] = STATE(3274), - [sym_sigil] = STATE(3274), - [sym_list] = STATE(3274), - [sym_tuple] = STATE(3274), - [sym_bitstring] = STATE(3274), - [sym_map] = STATE(3274), - [sym__nullary_operator] = STATE(3274), - [sym_unary_operator] = STATE(3274), - [sym_binary_operator] = STATE(3274), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3274), - [sym_call] = STATE(3274), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3274), - [sym_anonymous_function] = STATE(3274), + [781] = { + [sym__expression] = STATE(2160), + [sym_block] = STATE(2160), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2160), + [sym_nil] = STATE(2160), + [sym__atom] = STATE(2160), + [sym_quoted_atom] = STATE(2160), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2160), + [sym_charlist] = STATE(2160), + [sym_sigil] = STATE(2160), + [sym_list] = STATE(2160), + [sym_tuple] = STATE(2160), + [sym_bitstring] = STATE(2160), + [sym_map] = STATE(2160), + [sym__nullary_operator] = STATE(2160), + [sym_unary_operator] = STATE(2160), + [sym_binary_operator] = STATE(2160), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2160), + [sym_call] = STATE(2160), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2160), + [sym_anonymous_function] = STATE(2160), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2393), - [sym_integer] = ACTIONS(2393), - [sym_float] = ACTIONS(2393), - [sym_char] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2391), + [sym_integer] = ACTIONS(2391), + [sym_float] = ACTIONS(2391), + [sym_char] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126048,86 +125931,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [781] = { - [sym__expression] = STATE(3275), - [sym_block] = STATE(3275), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3275), - [sym_nil] = STATE(3275), - [sym__atom] = STATE(3275), - [sym_quoted_atom] = STATE(3275), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3275), - [sym_charlist] = STATE(3275), - [sym_sigil] = STATE(3275), - [sym_list] = STATE(3275), - [sym_tuple] = STATE(3275), - [sym_bitstring] = STATE(3275), - [sym_map] = STATE(3275), - [sym__nullary_operator] = STATE(3275), - [sym_unary_operator] = STATE(3275), - [sym_binary_operator] = STATE(3275), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3275), - [sym_call] = STATE(3275), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3275), - [sym_anonymous_function] = STATE(3275), + [782] = { + [sym__expression] = STATE(2161), + [sym_block] = STATE(2161), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2161), + [sym_nil] = STATE(2161), + [sym__atom] = STATE(2161), + [sym_quoted_atom] = STATE(2161), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2161), + [sym_charlist] = STATE(2161), + [sym_sigil] = STATE(2161), + [sym_list] = STATE(2161), + [sym_tuple] = STATE(2161), + [sym_bitstring] = STATE(2161), + [sym_map] = STATE(2161), + [sym__nullary_operator] = STATE(2161), + [sym_unary_operator] = STATE(2161), + [sym_binary_operator] = STATE(2161), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2161), + [sym_call] = STATE(2161), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2161), + [sym_anonymous_function] = STATE(2161), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2395), - [sym_integer] = ACTIONS(2395), - [sym_float] = ACTIONS(2395), - [sym_char] = ACTIONS(2395), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2393), + [sym_integer] = ACTIONS(2393), + [sym_float] = ACTIONS(2393), + [sym_char] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126165,86 +126048,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [782] = { - [sym__expression] = STATE(3040), - [sym_block] = STATE(3040), - [sym_identifier] = STATE(56), - [sym_boolean] = STATE(3040), - [sym_nil] = STATE(3040), - [sym__atom] = STATE(3040), - [sym_quoted_atom] = STATE(3040), - [sym__quoted_i_double] = STATE(2943), - [sym__quoted_i_single] = STATE(2944), - [sym__quoted_i_heredoc_single] = STATE(2945), - [sym__quoted_i_heredoc_double] = STATE(2946), - [sym_string] = STATE(3040), - [sym_charlist] = STATE(3040), - [sym_sigil] = STATE(3040), - [sym_list] = STATE(3040), - [sym_tuple] = STATE(3040), - [sym_bitstring] = STATE(3040), - [sym_map] = STATE(3040), - [sym__nullary_operator] = STATE(3040), - [sym_unary_operator] = STATE(3040), - [sym_binary_operator] = STATE(3040), - [sym_operator_identifier] = STATE(6952), - [sym_dot] = STATE(3040), - [sym_call] = STATE(3040), - [sym__call_without_parentheses] = STATE(2947), - [sym__call_with_parentheses] = STATE(2948), - [sym__local_call_without_parentheses] = STATE(2949), - [sym__local_call_with_parentheses] = STATE(2337), - [sym__local_call_just_do_block] = STATE(2950), - [sym__remote_call_without_parentheses] = STATE(2951), - [sym__remote_call_with_parentheses] = STATE(2343), - [sym__remote_dot] = STATE(61), - [sym__anonymous_call] = STATE(2354), - [sym__anonymous_dot] = STATE(6830), - [sym__double_call] = STATE(2952), - [sym_access_call] = STATE(3040), - [sym_anonymous_function] = STATE(3040), + [783] = { + [sym__expression] = STATE(2162), + [sym_block] = STATE(2162), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2162), + [sym_nil] = STATE(2162), + [sym__atom] = STATE(2162), + [sym_quoted_atom] = STATE(2162), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2162), + [sym_charlist] = STATE(2162), + [sym_sigil] = STATE(2162), + [sym_list] = STATE(2162), + [sym_tuple] = STATE(2162), + [sym_bitstring] = STATE(2162), + [sym_map] = STATE(2162), + [sym__nullary_operator] = STATE(2162), + [sym_unary_operator] = STATE(2162), + [sym_binary_operator] = STATE(2162), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2162), + [sym_call] = STATE(2162), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2162), + [sym_anonymous_function] = STATE(2162), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(540), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2397), - [sym_integer] = ACTIONS(2397), - [sym_float] = ACTIONS(2397), - [sym_char] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_nil] = ACTIONS(546), - [sym_atom] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_SQUOTE] = ACTIONS(550), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(552), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), - [anon_sym_LBRACE] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2395), + [sym_integer] = ACTIONS(2395), + [sym_float] = ACTIONS(2395), + [sym_char] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(564), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(576), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(576), - [anon_sym_not] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126282,86 +126165,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(584), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(586), + [sym__quoted_atom_start] = ACTIONS(958), }, - [783] = { - [sym__expression] = STATE(1944), - [sym_block] = STATE(1944), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1944), - [sym_nil] = STATE(1944), - [sym__atom] = STATE(1944), - [sym_quoted_atom] = STATE(1944), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1944), - [sym_charlist] = STATE(1944), - [sym_sigil] = STATE(1944), - [sym_list] = STATE(1944), - [sym_tuple] = STATE(1944), - [sym_bitstring] = STATE(1944), - [sym_map] = STATE(1944), - [sym__nullary_operator] = STATE(1944), - [sym_unary_operator] = STATE(1944), - [sym_binary_operator] = STATE(1944), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1944), - [sym_call] = STATE(1944), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1944), - [sym_anonymous_function] = STATE(1944), + [784] = { + [sym__expression] = STATE(2163), + [sym_block] = STATE(2163), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2163), + [sym_nil] = STATE(2163), + [sym__atom] = STATE(2163), + [sym_quoted_atom] = STATE(2163), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2163), + [sym_charlist] = STATE(2163), + [sym_sigil] = STATE(2163), + [sym_list] = STATE(2163), + [sym_tuple] = STATE(2163), + [sym_bitstring] = STATE(2163), + [sym_map] = STATE(2163), + [sym__nullary_operator] = STATE(2163), + [sym_unary_operator] = STATE(2163), + [sym_binary_operator] = STATE(2163), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2163), + [sym_call] = STATE(2163), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2163), + [sym_anonymous_function] = STATE(2163), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2399), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2399), - [sym_char] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [sym_alias] = ACTIONS(2397), + [sym_integer] = ACTIONS(2397), + [sym_float] = ACTIONS(2397), + [sym_char] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126399,86 +126282,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, - [784] = { - [sym__expression] = STATE(1582), - [sym_block] = STATE(1582), - [sym_identifier] = STATE(18), - [sym_boolean] = STATE(1582), - [sym_nil] = STATE(1582), - [sym__atom] = STATE(1582), - [sym_quoted_atom] = STATE(1582), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1582), - [sym_charlist] = STATE(1582), - [sym_sigil] = STATE(1582), - [sym_list] = STATE(1582), - [sym_tuple] = STATE(1582), - [sym_bitstring] = STATE(1582), - [sym_map] = STATE(1582), - [sym__nullary_operator] = STATE(1582), - [sym_unary_operator] = STATE(1582), - [sym_binary_operator] = STATE(1582), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1582), - [sym_call] = STATE(1582), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1582), - [sym_anonymous_function] = STATE(1582), + [785] = { + [sym__expression] = STATE(2164), + [sym_block] = STATE(2164), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2164), + [sym_nil] = STATE(2164), + [sym__atom] = STATE(2164), + [sym_quoted_atom] = STATE(2164), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2164), + [sym_charlist] = STATE(2164), + [sym_sigil] = STATE(2164), + [sym_list] = STATE(2164), + [sym_tuple] = STATE(2164), + [sym_bitstring] = STATE(2164), + [sym_map] = STATE(2164), + [sym__nullary_operator] = STATE(2164), + [sym_unary_operator] = STATE(2164), + [sym_binary_operator] = STATE(2164), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2164), + [sym_call] = STATE(2164), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2164), + [sym_anonymous_function] = STATE(2164), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1339), - [sym_integer] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [sym_char] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(65), + [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [sym_alias] = ACTIONS(2399), + [sym_integer] = ACTIONS(2399), + [sym_float] = ACTIONS(2399), + [sym_char] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(257), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(267), - [anon_sym_BANG] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), - [anon_sym_not] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126516,86 +126399,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(279), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(958), }, - [785] = { - [sym__expression] = STATE(1733), - [sym_block] = STATE(1733), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1733), - [sym_nil] = STATE(1733), - [sym__atom] = STATE(1733), - [sym_quoted_atom] = STATE(1733), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1733), - [sym_charlist] = STATE(1733), - [sym_sigil] = STATE(1733), - [sym_list] = STATE(1733), - [sym_tuple] = STATE(1733), - [sym_bitstring] = STATE(1733), - [sym_map] = STATE(1733), - [sym__nullary_operator] = STATE(1733), - [sym_unary_operator] = STATE(1733), - [sym_binary_operator] = STATE(1733), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1733), - [sym_call] = STATE(1733), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1733), - [sym_anonymous_function] = STATE(1733), + [786] = { + [sym__expression] = STATE(2454), + [sym_block] = STATE(2454), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2454), + [sym_nil] = STATE(2454), + [sym__atom] = STATE(2454), + [sym_quoted_atom] = STATE(2454), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2454), + [sym_charlist] = STATE(2454), + [sym_sigil] = STATE(2454), + [sym_list] = STATE(2454), + [sym_tuple] = STATE(2454), + [sym_bitstring] = STATE(2454), + [sym_map] = STATE(2454), + [sym__nullary_operator] = STATE(2454), + [sym_unary_operator] = STATE(2454), + [sym_binary_operator] = STATE(2454), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2454), + [sym_call] = STATE(2454), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2454), + [sym_anonymous_function] = STATE(2454), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2123), - [sym_integer] = ACTIONS(2123), - [sym_float] = ACTIONS(2123), - [sym_char] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2401), + [sym_integer] = ACTIONS(2401), + [sym_float] = ACTIONS(2401), + [sym_char] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126633,86 +126516,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [786] = { - [sym__expression] = STATE(1943), - [sym_block] = STATE(1943), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1943), - [sym_nil] = STATE(1943), - [sym__atom] = STATE(1943), - [sym_quoted_atom] = STATE(1943), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1943), - [sym_charlist] = STATE(1943), - [sym_sigil] = STATE(1943), - [sym_list] = STATE(1943), - [sym_tuple] = STATE(1943), - [sym_bitstring] = STATE(1943), - [sym_map] = STATE(1943), - [sym__nullary_operator] = STATE(1943), - [sym_unary_operator] = STATE(1943), - [sym_binary_operator] = STATE(1943), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1943), - [sym_call] = STATE(1943), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1943), - [sym_anonymous_function] = STATE(1943), + [787] = { + [sym__expression] = STATE(2165), + [sym_block] = STATE(2165), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2165), + [sym_nil] = STATE(2165), + [sym__atom] = STATE(2165), + [sym_quoted_atom] = STATE(2165), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2165), + [sym_charlist] = STATE(2165), + [sym_sigil] = STATE(2165), + [sym_list] = STATE(2165), + [sym_tuple] = STATE(2165), + [sym_bitstring] = STATE(2165), + [sym_map] = STATE(2165), + [sym__nullary_operator] = STATE(2165), + [sym_unary_operator] = STATE(2165), + [sym_binary_operator] = STATE(2165), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2165), + [sym_call] = STATE(2165), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2165), + [sym_anonymous_function] = STATE(2165), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2401), - [sym_integer] = ACTIONS(2401), - [sym_float] = ACTIONS(2401), - [sym_char] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [sym_alias] = ACTIONS(2403), + [sym_integer] = ACTIONS(2403), + [sym_float] = ACTIONS(2403), + [sym_char] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126750,86 +126633,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, - [787] = { - [sym__expression] = STATE(1763), - [sym_block] = STATE(1763), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1763), - [sym_nil] = STATE(1763), - [sym__atom] = STATE(1763), - [sym_quoted_atom] = STATE(1763), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1763), - [sym_charlist] = STATE(1763), - [sym_sigil] = STATE(1763), - [sym_list] = STATE(1763), - [sym_tuple] = STATE(1763), - [sym_bitstring] = STATE(1763), - [sym_map] = STATE(1763), - [sym__nullary_operator] = STATE(1763), - [sym_unary_operator] = STATE(1763), - [sym_binary_operator] = STATE(1763), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1763), - [sym_call] = STATE(1763), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1763), - [sym_anonymous_function] = STATE(1763), + [788] = { + [sym__expression] = STATE(1240), + [sym_block] = STATE(1240), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(1240), + [sym_nil] = STATE(1240), + [sym__atom] = STATE(1240), + [sym_quoted_atom] = STATE(1240), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1240), + [sym_charlist] = STATE(1240), + [sym_sigil] = STATE(1240), + [sym_list] = STATE(1240), + [sym_tuple] = STATE(1240), + [sym_bitstring] = STATE(1240), + [sym_map] = STATE(1240), + [sym__nullary_operator] = STATE(1240), + [sym_unary_operator] = STATE(1240), + [sym_binary_operator] = STATE(1240), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1240), + [sym_call] = STATE(1240), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1240), + [sym_anonymous_function] = STATE(1240), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2159), - [sym_integer] = ACTIONS(2159), - [sym_float] = ACTIONS(2159), - [sym_char] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2405), + [sym_integer] = ACTIONS(2405), + [sym_float] = ACTIONS(2405), + [sym_char] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126867,86 +126750,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [788] = { - [sym__expression] = STATE(2037), - [sym_block] = STATE(2037), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2037), - [sym_nil] = STATE(2037), - [sym__atom] = STATE(2037), - [sym_quoted_atom] = STATE(2037), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2037), - [sym_charlist] = STATE(2037), - [sym_sigil] = STATE(2037), - [sym_list] = STATE(2037), - [sym_tuple] = STATE(2037), - [sym_bitstring] = STATE(2037), - [sym_map] = STATE(2037), - [sym__nullary_operator] = STATE(2037), - [sym_unary_operator] = STATE(2037), - [sym_binary_operator] = STATE(2037), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2037), - [sym_call] = STATE(2037), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2037), - [sym_anonymous_function] = STATE(2037), + [789] = { + [sym__expression] = STATE(2166), + [sym_block] = STATE(2166), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2166), + [sym_nil] = STATE(2166), + [sym__atom] = STATE(2166), + [sym_quoted_atom] = STATE(2166), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2166), + [sym_charlist] = STATE(2166), + [sym_sigil] = STATE(2166), + [sym_list] = STATE(2166), + [sym_tuple] = STATE(2166), + [sym_bitstring] = STATE(2166), + [sym_map] = STATE(2166), + [sym__nullary_operator] = STATE(2166), + [sym_unary_operator] = STATE(2166), + [sym_binary_operator] = STATE(2166), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2166), + [sym_call] = STATE(2166), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2166), + [sym_anonymous_function] = STATE(2166), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2403), - [sym_integer] = ACTIONS(2403), - [sym_float] = ACTIONS(2403), - [sym_char] = ACTIONS(2403), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [sym_alias] = ACTIONS(2407), + [sym_integer] = ACTIONS(2407), + [sym_float] = ACTIONS(2407), + [sym_char] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -126984,86 +126867,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, - [789] = { - [sym__expression] = STATE(2124), - [sym_block] = STATE(2124), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2124), - [sym_nil] = STATE(2124), - [sym__atom] = STATE(2124), - [sym_quoted_atom] = STATE(2124), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2124), - [sym_charlist] = STATE(2124), - [sym_sigil] = STATE(2124), - [sym_list] = STATE(2124), - [sym_tuple] = STATE(2124), - [sym_bitstring] = STATE(2124), - [sym_map] = STATE(2124), - [sym__nullary_operator] = STATE(2124), - [sym_unary_operator] = STATE(2124), - [sym_binary_operator] = STATE(2124), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2124), - [sym_call] = STATE(2124), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2124), - [sym_anonymous_function] = STATE(2124), + [790] = { + [sym__expression] = STATE(2138), + [sym_block] = STATE(2138), + [sym_identifier] = STATE(29), + [sym_boolean] = STATE(2138), + [sym_nil] = STATE(2138), + [sym__atom] = STATE(2138), + [sym_quoted_atom] = STATE(2138), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(2138), + [sym_charlist] = STATE(2138), + [sym_sigil] = STATE(2138), + [sym_list] = STATE(2138), + [sym_tuple] = STATE(2138), + [sym_bitstring] = STATE(2138), + [sym_map] = STATE(2138), + [sym__nullary_operator] = STATE(2138), + [sym_unary_operator] = STATE(2138), + [sym_binary_operator] = STATE(2138), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(2138), + [sym_call] = STATE(2138), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(2138), + [sym_anonymous_function] = STATE(2138), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(918), [aux_sym_identifier_token1] = ACTIONS(65), [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2405), - [sym_integer] = ACTIONS(2405), - [sym_float] = ACTIONS(2405), - [sym_char] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [sym_alias] = ACTIONS(2409), + [sym_integer] = ACTIONS(2409), + [sym_float] = ACTIONS(2409), + [sym_char] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(938), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), + [anon_sym_not] = ACTIONS(948), + [anon_sym_AT] = ACTIONS(950), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127101,86 +126984,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(956), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, - [790] = { - [sym__expression] = STATE(2111), - [sym_block] = STATE(2111), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2111), - [sym_nil] = STATE(2111), - [sym__atom] = STATE(2111), - [sym_quoted_atom] = STATE(2111), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2111), - [sym_charlist] = STATE(2111), - [sym_sigil] = STATE(2111), - [sym_list] = STATE(2111), - [sym_tuple] = STATE(2111), - [sym_bitstring] = STATE(2111), - [sym_map] = STATE(2111), - [sym__nullary_operator] = STATE(2111), - [sym_unary_operator] = STATE(2111), - [sym_binary_operator] = STATE(2111), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2111), - [sym_call] = STATE(2111), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2111), - [sym_anonymous_function] = STATE(2111), + [791] = { + [sym__expression] = STATE(1416), + [sym_block] = STATE(1416), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1416), + [sym_nil] = STATE(1416), + [sym__atom] = STATE(1416), + [sym_quoted_atom] = STATE(1416), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1416), + [sym_charlist] = STATE(1416), + [sym_sigil] = STATE(1416), + [sym_list] = STATE(1416), + [sym_tuple] = STATE(1416), + [sym_bitstring] = STATE(1416), + [sym_map] = STATE(1416), + [sym__nullary_operator] = STATE(1416), + [sym_unary_operator] = STATE(1416), + [sym_binary_operator] = STATE(1416), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1416), + [sym_call] = STATE(1416), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1416), + [sym_anonymous_function] = STATE(1416), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2407), - [sym_integer] = ACTIONS(2407), - [sym_float] = ACTIONS(2407), - [sym_char] = ACTIONS(2407), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2411), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2411), + [sym_char] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127218,86 +127101,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [791] = { - [sym__expression] = STATE(2103), - [sym_block] = STATE(2103), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2103), - [sym_nil] = STATE(2103), - [sym__atom] = STATE(2103), - [sym_quoted_atom] = STATE(2103), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2103), - [sym_charlist] = STATE(2103), - [sym_sigil] = STATE(2103), - [sym_list] = STATE(2103), - [sym_tuple] = STATE(2103), - [sym_bitstring] = STATE(2103), - [sym_map] = STATE(2103), - [sym__nullary_operator] = STATE(2103), - [sym_unary_operator] = STATE(2103), - [sym_binary_operator] = STATE(2103), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2103), - [sym_call] = STATE(2103), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2103), - [sym_anonymous_function] = STATE(2103), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2409), - [sym_integer] = ACTIONS(2409), - [sym_float] = ACTIONS(2409), - [sym_char] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2409), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [792] = { + [sym__expression] = STATE(1261), + [sym_block] = STATE(1261), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1261), + [sym_nil] = STATE(1261), + [sym__atom] = STATE(1261), + [sym_quoted_atom] = STATE(1261), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1261), + [sym_charlist] = STATE(1261), + [sym_sigil] = STATE(1261), + [sym_list] = STATE(1261), + [sym_tuple] = STATE(1261), + [sym_bitstring] = STATE(1261), + [sym_map] = STATE(1261), + [sym__nullary_operator] = STATE(1261), + [sym_unary_operator] = STATE(1261), + [sym_binary_operator] = STATE(1261), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1261), + [sym_call] = STATE(1261), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1261), + [sym_anonymous_function] = STATE(1261), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2337), + [sym_integer] = ACTIONS(2337), + [sym_float] = ACTIONS(2337), + [sym_char] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127335,86 +127218,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [792] = { - [sym__expression] = STATE(1988), - [sym_block] = STATE(1988), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1988), - [sym_nil] = STATE(1988), - [sym__atom] = STATE(1988), - [sym_quoted_atom] = STATE(1988), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1988), - [sym_charlist] = STATE(1988), - [sym_sigil] = STATE(1988), - [sym_list] = STATE(1988), - [sym_tuple] = STATE(1988), - [sym_bitstring] = STATE(1988), - [sym_map] = STATE(1988), - [sym__nullary_operator] = STATE(1988), - [sym_unary_operator] = STATE(1988), - [sym_binary_operator] = STATE(1988), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1988), - [sym_call] = STATE(1988), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1988), - [sym_anonymous_function] = STATE(1988), + [793] = { + [sym__expression] = STATE(1240), + [sym_block] = STATE(1240), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1240), + [sym_nil] = STATE(1240), + [sym__atom] = STATE(1240), + [sym_quoted_atom] = STATE(1240), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1240), + [sym_charlist] = STATE(1240), + [sym_sigil] = STATE(1240), + [sym_list] = STATE(1240), + [sym_tuple] = STATE(1240), + [sym_bitstring] = STATE(1240), + [sym_map] = STATE(1240), + [sym__nullary_operator] = STATE(1240), + [sym_unary_operator] = STATE(1240), + [sym_binary_operator] = STATE(1240), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1240), + [sym_call] = STATE(1240), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1240), + [sym_anonymous_function] = STATE(1240), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2411), - [sym_integer] = ACTIONS(2411), - [sym_float] = ACTIONS(2411), - [sym_char] = ACTIONS(2411), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2405), + [sym_integer] = ACTIONS(2405), + [sym_float] = ACTIONS(2405), + [sym_char] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127452,86 +127335,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [793] = { - [sym__expression] = STATE(2095), - [sym_block] = STATE(2095), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2095), - [sym_nil] = STATE(2095), - [sym__atom] = STATE(2095), - [sym_quoted_atom] = STATE(2095), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2095), - [sym_charlist] = STATE(2095), - [sym_sigil] = STATE(2095), - [sym_list] = STATE(2095), - [sym_tuple] = STATE(2095), - [sym_bitstring] = STATE(2095), - [sym_map] = STATE(2095), - [sym__nullary_operator] = STATE(2095), - [sym_unary_operator] = STATE(2095), - [sym_binary_operator] = STATE(2095), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2095), - [sym_call] = STATE(2095), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2095), - [sym_anonymous_function] = STATE(2095), + [794] = { + [sym__expression] = STATE(1511), + [sym_block] = STATE(1511), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1511), + [sym_nil] = STATE(1511), + [sym__atom] = STATE(1511), + [sym_quoted_atom] = STATE(1511), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1511), + [sym_charlist] = STATE(1511), + [sym_sigil] = STATE(1511), + [sym_list] = STATE(1511), + [sym_tuple] = STATE(1511), + [sym_bitstring] = STATE(1511), + [sym_map] = STATE(1511), + [sym__nullary_operator] = STATE(1511), + [sym_unary_operator] = STATE(1511), + [sym_binary_operator] = STATE(1511), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1511), + [sym_call] = STATE(1511), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1511), + [sym_anonymous_function] = STATE(1511), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2413), [sym_integer] = ACTIONS(2413), [sym_float] = ACTIONS(2413), [sym_char] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127569,86 +127452,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [794] = { - [sym__expression] = STATE(2087), - [sym_block] = STATE(2087), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2087), - [sym_nil] = STATE(2087), - [sym__atom] = STATE(2087), - [sym_quoted_atom] = STATE(2087), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2087), - [sym_charlist] = STATE(2087), - [sym_sigil] = STATE(2087), - [sym_list] = STATE(2087), - [sym_tuple] = STATE(2087), - [sym_bitstring] = STATE(2087), - [sym_map] = STATE(2087), - [sym__nullary_operator] = STATE(2087), - [sym_unary_operator] = STATE(2087), - [sym_binary_operator] = STATE(2087), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2087), - [sym_call] = STATE(2087), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2087), - [sym_anonymous_function] = STATE(2087), + [795] = { + [sym__expression] = STATE(1512), + [sym_block] = STATE(1512), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1512), + [sym_nil] = STATE(1512), + [sym__atom] = STATE(1512), + [sym_quoted_atom] = STATE(1512), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1512), + [sym_charlist] = STATE(1512), + [sym_sigil] = STATE(1512), + [sym_list] = STATE(1512), + [sym_tuple] = STATE(1512), + [sym_bitstring] = STATE(1512), + [sym_map] = STATE(1512), + [sym__nullary_operator] = STATE(1512), + [sym_unary_operator] = STATE(1512), + [sym_binary_operator] = STATE(1512), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1512), + [sym_call] = STATE(1512), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1512), + [sym_anonymous_function] = STATE(1512), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2415), [sym_integer] = ACTIONS(2415), [sym_float] = ACTIONS(2415), [sym_char] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127686,86 +127569,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [795] = { - [sym__expression] = STATE(2071), - [sym_block] = STATE(2071), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2071), - [sym_nil] = STATE(2071), - [sym__atom] = STATE(2071), - [sym_quoted_atom] = STATE(2071), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2071), - [sym_charlist] = STATE(2071), - [sym_sigil] = STATE(2071), - [sym_list] = STATE(2071), - [sym_tuple] = STATE(2071), - [sym_bitstring] = STATE(2071), - [sym_map] = STATE(2071), - [sym__nullary_operator] = STATE(2071), - [sym_unary_operator] = STATE(2071), - [sym_binary_operator] = STATE(2071), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2071), - [sym_call] = STATE(2071), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2071), - [sym_anonymous_function] = STATE(2071), + [796] = { + [sym__expression] = STATE(4061), + [sym_block] = STATE(4061), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4061), + [sym_nil] = STATE(4061), + [sym__atom] = STATE(4061), + [sym_quoted_atom] = STATE(4061), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4061), + [sym_charlist] = STATE(4061), + [sym_sigil] = STATE(4061), + [sym_list] = STATE(4061), + [sym_tuple] = STATE(4061), + [sym_bitstring] = STATE(4061), + [sym_map] = STATE(4061), + [sym__nullary_operator] = STATE(4061), + [sym_unary_operator] = STATE(4061), + [sym_binary_operator] = STATE(4061), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4061), + [sym_call] = STATE(4061), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4061), + [sym_anonymous_function] = STATE(4061), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2417), [sym_integer] = ACTIONS(2417), [sym_float] = ACTIONS(2417), [sym_char] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127803,86 +127686,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, - [796] = { - [sym__expression] = STATE(2070), - [sym_block] = STATE(2070), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(2070), - [sym_nil] = STATE(2070), - [sym__atom] = STATE(2070), - [sym_quoted_atom] = STATE(2070), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(2070), - [sym_charlist] = STATE(2070), - [sym_sigil] = STATE(2070), - [sym_list] = STATE(2070), - [sym_tuple] = STATE(2070), - [sym_bitstring] = STATE(2070), - [sym_map] = STATE(2070), - [sym__nullary_operator] = STATE(2070), - [sym_unary_operator] = STATE(2070), - [sym_binary_operator] = STATE(2070), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(2070), - [sym_call] = STATE(2070), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(2070), - [sym_anonymous_function] = STATE(2070), + [797] = { + [sym__expression] = STATE(4490), + [sym_block] = STATE(4490), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4490), + [sym_nil] = STATE(4490), + [sym__atom] = STATE(4490), + [sym_quoted_atom] = STATE(4490), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4490), + [sym_charlist] = STATE(4490), + [sym_sigil] = STATE(4490), + [sym_list] = STATE(4490), + [sym_tuple] = STATE(4490), + [sym_bitstring] = STATE(4490), + [sym_map] = STATE(4490), + [sym__nullary_operator] = STATE(4490), + [sym_unary_operator] = STATE(4490), + [sym_binary_operator] = STATE(4490), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4490), + [sym_call] = STATE(4490), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4490), + [sym_anonymous_function] = STATE(4490), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2419), - [sym_integer] = ACTIONS(2419), - [sym_float] = ACTIONS(2419), - [sym_char] = ACTIONS(2419), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1519), + [sym_integer] = ACTIONS(1519), + [sym_float] = ACTIONS(1519), + [sym_char] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -127920,86 +127803,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(958), }, - [797] = { - [sym__expression] = STATE(1875), - [sym_block] = STATE(1875), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1875), - [sym_nil] = STATE(1875), - [sym__atom] = STATE(1875), - [sym_quoted_atom] = STATE(1875), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1875), - [sym_charlist] = STATE(1875), - [sym_sigil] = STATE(1875), - [sym_list] = STATE(1875), - [sym_tuple] = STATE(1875), - [sym_bitstring] = STATE(1875), - [sym_map] = STATE(1875), - [sym__nullary_operator] = STATE(1875), - [sym_unary_operator] = STATE(1875), - [sym_binary_operator] = STATE(1875), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1875), - [sym_call] = STATE(1875), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1875), - [sym_anonymous_function] = STATE(1875), + [798] = { + [sym__expression] = STATE(1514), + [sym_block] = STATE(1514), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1514), + [sym_nil] = STATE(1514), + [sym__atom] = STATE(1514), + [sym_quoted_atom] = STATE(1514), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1514), + [sym_charlist] = STATE(1514), + [sym_sigil] = STATE(1514), + [sym_list] = STATE(1514), + [sym_tuple] = STATE(1514), + [sym_bitstring] = STATE(1514), + [sym_map] = STATE(1514), + [sym__nullary_operator] = STATE(1514), + [sym_unary_operator] = STATE(1514), + [sym_binary_operator] = STATE(1514), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1514), + [sym_call] = STATE(1514), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1514), + [sym_anonymous_function] = STATE(1514), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2421), - [sym_integer] = ACTIONS(2421), - [sym_float] = ACTIONS(2421), - [sym_char] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2419), + [sym_integer] = ACTIONS(2419), + [sym_float] = ACTIONS(2419), + [sym_char] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128037,86 +127920,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [798] = { - [sym__expression] = STATE(1870), - [sym_block] = STATE(1870), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1870), - [sym_nil] = STATE(1870), - [sym__atom] = STATE(1870), - [sym_quoted_atom] = STATE(1870), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1870), - [sym_charlist] = STATE(1870), - [sym_sigil] = STATE(1870), - [sym_list] = STATE(1870), - [sym_tuple] = STATE(1870), - [sym_bitstring] = STATE(1870), - [sym_map] = STATE(1870), - [sym__nullary_operator] = STATE(1870), - [sym_unary_operator] = STATE(1870), - [sym_binary_operator] = STATE(1870), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1870), - [sym_call] = STATE(1870), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1870), - [sym_anonymous_function] = STATE(1870), + [799] = { + [sym__expression] = STATE(1515), + [sym_block] = STATE(1515), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1515), + [sym_nil] = STATE(1515), + [sym__atom] = STATE(1515), + [sym_quoted_atom] = STATE(1515), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1515), + [sym_charlist] = STATE(1515), + [sym_sigil] = STATE(1515), + [sym_list] = STATE(1515), + [sym_tuple] = STATE(1515), + [sym_bitstring] = STATE(1515), + [sym_map] = STATE(1515), + [sym__nullary_operator] = STATE(1515), + [sym_unary_operator] = STATE(1515), + [sym_binary_operator] = STATE(1515), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1515), + [sym_call] = STATE(1515), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1515), + [sym_anonymous_function] = STATE(1515), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2423), - [sym_integer] = ACTIONS(2423), - [sym_float] = ACTIONS(2423), - [sym_char] = ACTIONS(2423), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), - [sym_atom] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2421), + [sym_integer] = ACTIONS(2421), + [sym_float] = ACTIONS(2421), + [sym_char] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128154,86 +128037,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [799] = { - [sym__expression] = STATE(2790), - [sym_block] = STATE(2790), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2790), - [sym_nil] = STATE(2790), - [sym__atom] = STATE(2790), - [sym_quoted_atom] = STATE(2790), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2790), - [sym_charlist] = STATE(2790), - [sym_sigil] = STATE(2790), - [sym_list] = STATE(2790), - [sym_tuple] = STATE(2790), - [sym_bitstring] = STATE(2790), - [sym_map] = STATE(2790), - [sym__nullary_operator] = STATE(2790), - [sym_unary_operator] = STATE(2790), - [sym_binary_operator] = STATE(2790), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2790), - [sym_call] = STATE(2790), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2790), - [sym_anonymous_function] = STATE(2790), + [800] = { + [sym__expression] = STATE(1516), + [sym_block] = STATE(1516), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1516), + [sym_nil] = STATE(1516), + [sym__atom] = STATE(1516), + [sym_quoted_atom] = STATE(1516), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1516), + [sym_charlist] = STATE(1516), + [sym_sigil] = STATE(1516), + [sym_list] = STATE(1516), + [sym_tuple] = STATE(1516), + [sym_bitstring] = STATE(1516), + [sym_map] = STATE(1516), + [sym__nullary_operator] = STATE(1516), + [sym_unary_operator] = STATE(1516), + [sym_binary_operator] = STATE(1516), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1516), + [sym_call] = STATE(1516), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1516), + [sym_anonymous_function] = STATE(1516), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(920), - [sym_integer] = ACTIONS(920), - [sym_float] = ACTIONS(920), - [sym_char] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2423), + [sym_integer] = ACTIONS(2423), + [sym_float] = ACTIONS(2423), + [sym_char] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128271,86 +128154,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(231), }, - [800] = { - [sym__expression] = STATE(1861), - [sym_block] = STATE(1861), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1861), - [sym_nil] = STATE(1861), - [sym__atom] = STATE(1861), - [sym_quoted_atom] = STATE(1861), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1861), - [sym_charlist] = STATE(1861), - [sym_sigil] = STATE(1861), - [sym_list] = STATE(1861), - [sym_tuple] = STATE(1861), - [sym_bitstring] = STATE(1861), - [sym_map] = STATE(1861), - [sym__nullary_operator] = STATE(1861), - [sym_unary_operator] = STATE(1861), - [sym_binary_operator] = STATE(1861), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1861), - [sym_call] = STATE(1861), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1861), - [sym_anonymous_function] = STATE(1861), + [801] = { + [sym__expression] = STATE(1517), + [sym_block] = STATE(1517), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1517), + [sym_nil] = STATE(1517), + [sym__atom] = STATE(1517), + [sym_quoted_atom] = STATE(1517), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1517), + [sym_charlist] = STATE(1517), + [sym_sigil] = STATE(1517), + [sym_list] = STATE(1517), + [sym_tuple] = STATE(1517), + [sym_bitstring] = STATE(1517), + [sym_map] = STATE(1517), + [sym__nullary_operator] = STATE(1517), + [sym_unary_operator] = STATE(1517), + [sym_binary_operator] = STATE(1517), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1517), + [sym_call] = STATE(1517), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1517), + [sym_anonymous_function] = STATE(1517), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2425), [sym_integer] = ACTIONS(2425), [sym_float] = ACTIONS(2425), [sym_char] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128388,86 +128271,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [801] = { - [sym__expression] = STATE(1859), - [sym_block] = STATE(1859), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1859), - [sym_nil] = STATE(1859), - [sym__atom] = STATE(1859), - [sym_quoted_atom] = STATE(1859), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1859), - [sym_charlist] = STATE(1859), - [sym_sigil] = STATE(1859), - [sym_list] = STATE(1859), - [sym_tuple] = STATE(1859), - [sym_bitstring] = STATE(1859), - [sym_map] = STATE(1859), - [sym__nullary_operator] = STATE(1859), - [sym_unary_operator] = STATE(1859), - [sym_binary_operator] = STATE(1859), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1859), - [sym_call] = STATE(1859), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1859), - [sym_anonymous_function] = STATE(1859), + [802] = { + [sym__expression] = STATE(1519), + [sym_block] = STATE(1519), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1519), + [sym_nil] = STATE(1519), + [sym__atom] = STATE(1519), + [sym_quoted_atom] = STATE(1519), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1519), + [sym_charlist] = STATE(1519), + [sym_sigil] = STATE(1519), + [sym_list] = STATE(1519), + [sym_tuple] = STATE(1519), + [sym_bitstring] = STATE(1519), + [sym_map] = STATE(1519), + [sym__nullary_operator] = STATE(1519), + [sym_unary_operator] = STATE(1519), + [sym_binary_operator] = STATE(1519), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1519), + [sym_call] = STATE(1519), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1519), + [sym_anonymous_function] = STATE(1519), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2427), [sym_integer] = ACTIONS(2427), [sym_float] = ACTIONS(2427), [sym_char] = ACTIONS(2427), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128505,86 +128388,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [802] = { - [sym__expression] = STATE(1854), - [sym_block] = STATE(1854), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1854), - [sym_nil] = STATE(1854), - [sym__atom] = STATE(1854), - [sym_quoted_atom] = STATE(1854), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1854), - [sym_charlist] = STATE(1854), - [sym_sigil] = STATE(1854), - [sym_list] = STATE(1854), - [sym_tuple] = STATE(1854), - [sym_bitstring] = STATE(1854), - [sym_map] = STATE(1854), - [sym__nullary_operator] = STATE(1854), - [sym_unary_operator] = STATE(1854), - [sym_binary_operator] = STATE(1854), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1854), - [sym_call] = STATE(1854), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1854), - [sym_anonymous_function] = STATE(1854), + [803] = { + [sym__expression] = STATE(1520), + [sym_block] = STATE(1520), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1520), + [sym_nil] = STATE(1520), + [sym__atom] = STATE(1520), + [sym_quoted_atom] = STATE(1520), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1520), + [sym_charlist] = STATE(1520), + [sym_sigil] = STATE(1520), + [sym_list] = STATE(1520), + [sym_tuple] = STATE(1520), + [sym_bitstring] = STATE(1520), + [sym_map] = STATE(1520), + [sym__nullary_operator] = STATE(1520), + [sym_unary_operator] = STATE(1520), + [sym_binary_operator] = STATE(1520), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1520), + [sym_call] = STATE(1520), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1520), + [sym_anonymous_function] = STATE(1520), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2429), [sym_integer] = ACTIONS(2429), [sym_float] = ACTIONS(2429), [sym_char] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128622,86 +128505,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [803] = { - [sym__expression] = STATE(1942), - [sym_block] = STATE(1942), - [sym_identifier] = STATE(20), - [sym_boolean] = STATE(1942), - [sym_nil] = STATE(1942), - [sym__atom] = STATE(1942), - [sym_quoted_atom] = STATE(1942), - [sym__quoted_i_double] = STATE(1688), - [sym__quoted_i_single] = STATE(1687), - [sym__quoted_i_heredoc_single] = STATE(1706), - [sym__quoted_i_heredoc_double] = STATE(1707), - [sym_string] = STATE(1942), - [sym_charlist] = STATE(1942), - [sym_sigil] = STATE(1942), - [sym_list] = STATE(1942), - [sym_tuple] = STATE(1942), - [sym_bitstring] = STATE(1942), - [sym_map] = STATE(1942), - [sym__nullary_operator] = STATE(1942), - [sym_unary_operator] = STATE(1942), - [sym_binary_operator] = STATE(1942), - [sym_operator_identifier] = STATE(6882), - [sym_dot] = STATE(1942), - [sym_call] = STATE(1942), - [sym__call_without_parentheses] = STATE(1708), - [sym__call_with_parentheses] = STATE(1709), - [sym__local_call_without_parentheses] = STATE(1710), - [sym__local_call_with_parentheses] = STATE(1257), - [sym__local_call_just_do_block] = STATE(1711), - [sym__remote_call_without_parentheses] = STATE(1713), - [sym__remote_call_with_parentheses] = STATE(1253), - [sym__remote_dot] = STATE(15), - [sym__anonymous_call] = STATE(1248), - [sym__anonymous_dot] = STATE(6845), - [sym__double_call] = STATE(1714), - [sym_access_call] = STATE(1942), - [sym_anonymous_function] = STATE(1942), + [804] = { + [sym__expression] = STATE(1521), + [sym_block] = STATE(1521), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1521), + [sym_nil] = STATE(1521), + [sym__atom] = STATE(1521), + [sym_quoted_atom] = STATE(1521), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1521), + [sym_charlist] = STATE(1521), + [sym_sigil] = STATE(1521), + [sym_list] = STATE(1521), + [sym_tuple] = STATE(1521), + [sym_bitstring] = STATE(1521), + [sym_map] = STATE(1521), + [sym__nullary_operator] = STATE(1521), + [sym_unary_operator] = STATE(1521), + [sym_binary_operator] = STATE(1521), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1521), + [sym_call] = STATE(1521), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1521), + [sym_anonymous_function] = STATE(1521), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1397), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2431), [sym_integer] = ACTIONS(2431), [sym_float] = ACTIONS(2431), [sym_char] = ACTIONS(2431), - [anon_sym_true] = ACTIONS(69), - [anon_sym_false] = ACTIONS(69), - [anon_sym_nil] = ACTIONS(71), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(73), - [anon_sym_SQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(93), - [anon_sym_AMP] = ACTIONS(95), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_BANG] = ACTIONS(97), - [anon_sym_CARET] = ACTIONS(97), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(97), - [anon_sym_not] = ACTIONS(97), - [anon_sym_AT] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128739,86 +128622,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(111), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(115), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(117), + [sym__quoted_atom_start] = ACTIONS(231), }, - [804] = { - [sym__expression] = STATE(3191), - [sym_block] = STATE(3191), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3191), - [sym_nil] = STATE(3191), - [sym__atom] = STATE(3191), - [sym_quoted_atom] = STATE(3191), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3191), - [sym_charlist] = STATE(3191), - [sym_sigil] = STATE(3191), - [sym_list] = STATE(3191), - [sym_tuple] = STATE(3191), - [sym_bitstring] = STATE(3191), - [sym_map] = STATE(3191), - [sym__nullary_operator] = STATE(3191), - [sym_unary_operator] = STATE(3191), - [sym_binary_operator] = STATE(3191), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3191), - [sym_call] = STATE(3191), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3191), - [sym_anonymous_function] = STATE(3191), + [805] = { + [sym__expression] = STATE(1522), + [sym_block] = STATE(1522), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1522), + [sym_nil] = STATE(1522), + [sym__atom] = STATE(1522), + [sym_quoted_atom] = STATE(1522), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1522), + [sym_charlist] = STATE(1522), + [sym_sigil] = STATE(1522), + [sym_list] = STATE(1522), + [sym_tuple] = STATE(1522), + [sym_bitstring] = STATE(1522), + [sym_map] = STATE(1522), + [sym__nullary_operator] = STATE(1522), + [sym_unary_operator] = STATE(1522), + [sym_binary_operator] = STATE(1522), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1522), + [sym_call] = STATE(1522), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1522), + [sym_anonymous_function] = STATE(1522), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2433), [sym_integer] = ACTIONS(2433), [sym_float] = ACTIONS(2433), [sym_char] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -128856,203 +128739,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, - [805] = { - [sym__expression] = STATE(1452), - [sym_block] = STATE(1452), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(1452), - [sym_nil] = STATE(1452), - [sym__atom] = STATE(1452), - [sym_quoted_atom] = STATE(1452), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1452), - [sym_charlist] = STATE(1452), - [sym_sigil] = STATE(1452), - [sym_list] = STATE(1452), - [sym_tuple] = STATE(1452), - [sym_bitstring] = STATE(1452), - [sym_map] = STATE(1452), - [sym__nullary_operator] = STATE(1452), - [sym_unary_operator] = STATE(1452), - [sym_binary_operator] = STATE(1452), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1452), - [sym_call] = STATE(1452), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1452), - [sym_anonymous_function] = STATE(1452), + [806] = { + [sym__expression] = STATE(2431), + [sym_block] = STATE(2431), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2431), + [sym_nil] = STATE(2431), + [sym__atom] = STATE(2431), + [sym_quoted_atom] = STATE(2431), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2431), + [sym_charlist] = STATE(2431), + [sym_sigil] = STATE(2431), + [sym_list] = STATE(2431), + [sym_tuple] = STATE(2431), + [sym_bitstring] = STATE(2431), + [sym_map] = STATE(2431), + [sym__nullary_operator] = STATE(2431), + [sym_unary_operator] = STATE(2431), + [sym_binary_operator] = STATE(2431), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2431), + [sym_call] = STATE(2431), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2431), + [sym_anonymous_function] = STATE(2431), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2341), - [sym_integer] = ACTIONS(2341), - [sym_float] = ACTIONS(2341), - [sym_char] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), - }, - [806] = { - [sym__expression] = STATE(3223), - [sym_block] = STATE(3223), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3223), - [sym_nil] = STATE(3223), - [sym__atom] = STATE(3223), - [sym_quoted_atom] = STATE(3223), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3223), - [sym_charlist] = STATE(3223), - [sym_sigil] = STATE(3223), - [sym_list] = STATE(3223), - [sym_tuple] = STATE(3223), - [sym_bitstring] = STATE(3223), - [sym_map] = STATE(3223), - [sym__nullary_operator] = STATE(3223), - [sym_unary_operator] = STATE(3223), - [sym_binary_operator] = STATE(3223), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3223), - [sym_call] = STATE(3223), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3223), - [sym_anonymous_function] = STATE(3223), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2435), [sym_integer] = ACTIONS(2435), [sym_float] = ACTIONS(2435), [sym_char] = ACTIONS(2435), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129090,86 +128856,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [807] = { - [sym__expression] = STATE(1459), - [sym_block] = STATE(1459), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(1459), - [sym_nil] = STATE(1459), - [sym__atom] = STATE(1459), - [sym_quoted_atom] = STATE(1459), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1459), - [sym_charlist] = STATE(1459), - [sym_sigil] = STATE(1459), - [sym_list] = STATE(1459), - [sym_tuple] = STATE(1459), - [sym_bitstring] = STATE(1459), - [sym_map] = STATE(1459), - [sym__nullary_operator] = STATE(1459), - [sym_unary_operator] = STATE(1459), - [sym_binary_operator] = STATE(1459), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1459), - [sym_call] = STATE(1459), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1459), - [sym_anonymous_function] = STATE(1459), + [sym__expression] = STATE(2430), + [sym_block] = STATE(2430), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2430), + [sym_nil] = STATE(2430), + [sym__atom] = STATE(2430), + [sym_quoted_atom] = STATE(2430), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2430), + [sym_charlist] = STATE(2430), + [sym_sigil] = STATE(2430), + [sym_list] = STATE(2430), + [sym_tuple] = STATE(2430), + [sym_bitstring] = STATE(2430), + [sym_map] = STATE(2430), + [sym__nullary_operator] = STATE(2430), + [sym_unary_operator] = STATE(2430), + [sym_binary_operator] = STATE(2430), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2430), + [sym_call] = STATE(2430), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2430), + [sym_anonymous_function] = STATE(2430), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2337), - [sym_integer] = ACTIONS(2337), - [sym_float] = ACTIONS(2337), - [sym_char] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [sym_alias] = ACTIONS(2437), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2437), + [sym_char] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129207,86 +128973,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [808] = { - [sym__expression] = STATE(3476), - [sym_block] = STATE(3476), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3476), - [sym_nil] = STATE(3476), - [sym__atom] = STATE(3476), - [sym_quoted_atom] = STATE(3476), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3476), - [sym_charlist] = STATE(3476), - [sym_sigil] = STATE(3476), - [sym_list] = STATE(3476), - [sym_tuple] = STATE(3476), - [sym_bitstring] = STATE(3476), - [sym_map] = STATE(3476), - [sym__nullary_operator] = STATE(3476), - [sym_unary_operator] = STATE(3476), - [sym_binary_operator] = STATE(3476), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3476), - [sym_call] = STATE(3476), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3476), - [sym_anonymous_function] = STATE(3476), + [sym__expression] = STATE(2427), + [sym_block] = STATE(2427), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2427), + [sym_nil] = STATE(2427), + [sym__atom] = STATE(2427), + [sym_quoted_atom] = STATE(2427), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2427), + [sym_charlist] = STATE(2427), + [sym_sigil] = STATE(2427), + [sym_list] = STATE(2427), + [sym_tuple] = STATE(2427), + [sym_bitstring] = STATE(2427), + [sym_map] = STATE(2427), + [sym__nullary_operator] = STATE(2427), + [sym_unary_operator] = STATE(2427), + [sym_binary_operator] = STATE(2427), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2427), + [sym_call] = STATE(2427), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2427), + [sym_anonymous_function] = STATE(2427), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2437), - [sym_integer] = ACTIONS(2437), - [sym_float] = ACTIONS(2437), - [sym_char] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [sym_alias] = ACTIONS(2439), + [sym_integer] = ACTIONS(2439), + [sym_float] = ACTIONS(2439), + [sym_char] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129324,86 +129090,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [809] = { - [sym__expression] = STATE(3475), - [sym_block] = STATE(3475), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3475), - [sym_nil] = STATE(3475), - [sym__atom] = STATE(3475), - [sym_quoted_atom] = STATE(3475), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3475), - [sym_charlist] = STATE(3475), - [sym_sigil] = STATE(3475), - [sym_list] = STATE(3475), - [sym_tuple] = STATE(3475), - [sym_bitstring] = STATE(3475), - [sym_map] = STATE(3475), - [sym__nullary_operator] = STATE(3475), - [sym_unary_operator] = STATE(3475), - [sym_binary_operator] = STATE(3475), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3475), - [sym_call] = STATE(3475), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3475), - [sym_anonymous_function] = STATE(3475), + [sym__expression] = STATE(1523), + [sym_block] = STATE(1523), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1523), + [sym_nil] = STATE(1523), + [sym__atom] = STATE(1523), + [sym_quoted_atom] = STATE(1523), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1523), + [sym_charlist] = STATE(1523), + [sym_sigil] = STATE(1523), + [sym_list] = STATE(1523), + [sym_tuple] = STATE(1523), + [sym_bitstring] = STATE(1523), + [sym_map] = STATE(1523), + [sym__nullary_operator] = STATE(1523), + [sym_unary_operator] = STATE(1523), + [sym_binary_operator] = STATE(1523), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1523), + [sym_call] = STATE(1523), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1523), + [sym_anonymous_function] = STATE(1523), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2439), - [sym_integer] = ACTIONS(2439), - [sym_float] = ACTIONS(2439), - [sym_char] = ACTIONS(2439), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2441), + [sym_integer] = ACTIONS(2441), + [sym_float] = ACTIONS(2441), + [sym_char] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129441,86 +129207,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [810] = { - [sym__expression] = STATE(3473), - [sym_block] = STATE(3473), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3473), - [sym_nil] = STATE(3473), - [sym__atom] = STATE(3473), - [sym_quoted_atom] = STATE(3473), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3473), - [sym_charlist] = STATE(3473), - [sym_sigil] = STATE(3473), - [sym_list] = STATE(3473), - [sym_tuple] = STATE(3473), - [sym_bitstring] = STATE(3473), - [sym_map] = STATE(3473), - [sym__nullary_operator] = STATE(3473), - [sym_unary_operator] = STATE(3473), - [sym_binary_operator] = STATE(3473), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3473), - [sym_call] = STATE(3473), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3473), - [sym_anonymous_function] = STATE(3473), + [sym__expression] = STATE(1524), + [sym_block] = STATE(1524), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1524), + [sym_nil] = STATE(1524), + [sym__atom] = STATE(1524), + [sym_quoted_atom] = STATE(1524), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1524), + [sym_charlist] = STATE(1524), + [sym_sigil] = STATE(1524), + [sym_list] = STATE(1524), + [sym_tuple] = STATE(1524), + [sym_bitstring] = STATE(1524), + [sym_map] = STATE(1524), + [sym__nullary_operator] = STATE(1524), + [sym_unary_operator] = STATE(1524), + [sym_binary_operator] = STATE(1524), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1524), + [sym_call] = STATE(1524), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1524), + [sym_anonymous_function] = STATE(1524), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2441), - [sym_integer] = ACTIONS(2441), - [sym_float] = ACTIONS(2441), - [sym_char] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2443), + [sym_integer] = ACTIONS(2443), + [sym_float] = ACTIONS(2443), + [sym_char] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129558,86 +129324,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [811] = { - [sym__expression] = STATE(3470), - [sym_block] = STATE(3470), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3470), - [sym_nil] = STATE(3470), - [sym__atom] = STATE(3470), - [sym_quoted_atom] = STATE(3470), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3470), - [sym_charlist] = STATE(3470), - [sym_sigil] = STATE(3470), - [sym_list] = STATE(3470), - [sym_tuple] = STATE(3470), - [sym_bitstring] = STATE(3470), - [sym_map] = STATE(3470), - [sym__nullary_operator] = STATE(3470), - [sym_unary_operator] = STATE(3470), - [sym_binary_operator] = STATE(3470), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3470), - [sym_call] = STATE(3470), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3470), - [sym_anonymous_function] = STATE(3470), + [sym__expression] = STATE(1525), + [sym_block] = STATE(1525), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1525), + [sym_nil] = STATE(1525), + [sym__atom] = STATE(1525), + [sym_quoted_atom] = STATE(1525), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1525), + [sym_charlist] = STATE(1525), + [sym_sigil] = STATE(1525), + [sym_list] = STATE(1525), + [sym_tuple] = STATE(1525), + [sym_bitstring] = STATE(1525), + [sym_map] = STATE(1525), + [sym__nullary_operator] = STATE(1525), + [sym_unary_operator] = STATE(1525), + [sym_binary_operator] = STATE(1525), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1525), + [sym_call] = STATE(1525), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1525), + [sym_anonymous_function] = STATE(1525), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2443), - [sym_integer] = ACTIONS(2443), - [sym_float] = ACTIONS(2443), - [sym_char] = ACTIONS(2443), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2445), + [sym_integer] = ACTIONS(2445), + [sym_float] = ACTIONS(2445), + [sym_char] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129675,86 +129441,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [812] = { - [sym__expression] = STATE(3469), - [sym_block] = STATE(3469), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3469), - [sym_nil] = STATE(3469), - [sym__atom] = STATE(3469), - [sym_quoted_atom] = STATE(3469), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3469), - [sym_charlist] = STATE(3469), - [sym_sigil] = STATE(3469), - [sym_list] = STATE(3469), - [sym_tuple] = STATE(3469), - [sym_bitstring] = STATE(3469), - [sym_map] = STATE(3469), - [sym__nullary_operator] = STATE(3469), - [sym_unary_operator] = STATE(3469), - [sym_binary_operator] = STATE(3469), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3469), - [sym_call] = STATE(3469), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3469), - [sym_anonymous_function] = STATE(3469), + [sym__expression] = STATE(1526), + [sym_block] = STATE(1526), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1526), + [sym_nil] = STATE(1526), + [sym__atom] = STATE(1526), + [sym_quoted_atom] = STATE(1526), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1526), + [sym_charlist] = STATE(1526), + [sym_sigil] = STATE(1526), + [sym_list] = STATE(1526), + [sym_tuple] = STATE(1526), + [sym_bitstring] = STATE(1526), + [sym_map] = STATE(1526), + [sym__nullary_operator] = STATE(1526), + [sym_unary_operator] = STATE(1526), + [sym_binary_operator] = STATE(1526), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1526), + [sym_call] = STATE(1526), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1526), + [sym_anonymous_function] = STATE(1526), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2445), - [sym_integer] = ACTIONS(2445), - [sym_float] = ACTIONS(2445), - [sym_char] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2447), + [sym_integer] = ACTIONS(2447), + [sym_float] = ACTIONS(2447), + [sym_char] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129792,86 +129558,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [813] = { - [sym__expression] = STATE(3467), - [sym_block] = STATE(3467), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3467), - [sym_nil] = STATE(3467), - [sym__atom] = STATE(3467), - [sym_quoted_atom] = STATE(3467), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3467), - [sym_charlist] = STATE(3467), - [sym_sigil] = STATE(3467), - [sym_list] = STATE(3467), - [sym_tuple] = STATE(3467), - [sym_bitstring] = STATE(3467), - [sym_map] = STATE(3467), - [sym__nullary_operator] = STATE(3467), - [sym_unary_operator] = STATE(3467), - [sym_binary_operator] = STATE(3467), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3467), - [sym_call] = STATE(3467), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3467), - [sym_anonymous_function] = STATE(3467), + [sym__expression] = STATE(1527), + [sym_block] = STATE(1527), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1527), + [sym_nil] = STATE(1527), + [sym__atom] = STATE(1527), + [sym_quoted_atom] = STATE(1527), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1527), + [sym_charlist] = STATE(1527), + [sym_sigil] = STATE(1527), + [sym_list] = STATE(1527), + [sym_tuple] = STATE(1527), + [sym_bitstring] = STATE(1527), + [sym_map] = STATE(1527), + [sym__nullary_operator] = STATE(1527), + [sym_unary_operator] = STATE(1527), + [sym_binary_operator] = STATE(1527), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1527), + [sym_call] = STATE(1527), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1527), + [sym_anonymous_function] = STATE(1527), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2447), - [sym_integer] = ACTIONS(2447), - [sym_float] = ACTIONS(2447), - [sym_char] = ACTIONS(2447), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2449), + [sym_integer] = ACTIONS(2449), + [sym_float] = ACTIONS(2449), + [sym_char] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -129909,86 +129675,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [814] = { - [sym__expression] = STATE(3462), - [sym_block] = STATE(3462), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3462), - [sym_nil] = STATE(3462), - [sym__atom] = STATE(3462), - [sym_quoted_atom] = STATE(3462), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3462), - [sym_charlist] = STATE(3462), - [sym_sigil] = STATE(3462), - [sym_list] = STATE(3462), - [sym_tuple] = STATE(3462), - [sym_bitstring] = STATE(3462), - [sym_map] = STATE(3462), - [sym__nullary_operator] = STATE(3462), - [sym_unary_operator] = STATE(3462), - [sym_binary_operator] = STATE(3462), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3462), - [sym_call] = STATE(3462), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3462), - [sym_anonymous_function] = STATE(3462), + [sym__expression] = STATE(1414), + [sym_block] = STATE(1414), + [sym_identifier] = STATE(17), + [sym_boolean] = STATE(1414), + [sym_nil] = STATE(1414), + [sym__atom] = STATE(1414), + [sym_quoted_atom] = STATE(1414), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(1414), + [sym_charlist] = STATE(1414), + [sym_sigil] = STATE(1414), + [sym_list] = STATE(1414), + [sym_tuple] = STATE(1414), + [sym_bitstring] = STATE(1414), + [sym_map] = STATE(1414), + [sym__nullary_operator] = STATE(1414), + [sym_unary_operator] = STATE(1414), + [sym_binary_operator] = STATE(1414), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(1414), + [sym_call] = STATE(1414), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(1414), + [sym_anonymous_function] = STATE(1414), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2449), - [sym_integer] = ACTIONS(2449), - [sym_float] = ACTIONS(2449), - [sym_char] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2451), + [sym_integer] = ACTIONS(2451), + [sym_float] = ACTIONS(2451), + [sym_char] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), + [sym_atom] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(211), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_BANG] = ACTIONS(221), + [anon_sym_CARET] = ACTIONS(221), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), + [anon_sym_not] = ACTIONS(221), + [anon_sym_AT] = ACTIONS(223), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130026,86 +129792,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(229), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [815] = { - [sym__expression] = STATE(3461), - [sym_block] = STATE(3461), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3461), - [sym_nil] = STATE(3461), - [sym__atom] = STATE(3461), - [sym_quoted_atom] = STATE(3461), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3461), - [sym_charlist] = STATE(3461), - [sym_sigil] = STATE(3461), - [sym_list] = STATE(3461), - [sym_tuple] = STATE(3461), - [sym_bitstring] = STATE(3461), - [sym_map] = STATE(3461), - [sym__nullary_operator] = STATE(3461), - [sym_unary_operator] = STATE(3461), - [sym_binary_operator] = STATE(3461), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3461), - [sym_call] = STATE(3461), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3461), - [sym_anonymous_function] = STATE(3461), + [sym__expression] = STATE(1999), + [sym_block] = STATE(1999), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(1999), + [sym_nil] = STATE(1999), + [sym__atom] = STATE(1999), + [sym_quoted_atom] = STATE(1999), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(1999), + [sym_charlist] = STATE(1999), + [sym_sigil] = STATE(1999), + [sym_list] = STATE(1999), + [sym_tuple] = STATE(1999), + [sym_bitstring] = STATE(1999), + [sym_map] = STATE(1999), + [sym__nullary_operator] = STATE(1999), + [sym_unary_operator] = STATE(1999), + [sym_binary_operator] = STATE(1999), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(1999), + [sym_call] = STATE(1999), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(1999), + [sym_anonymous_function] = STATE(1999), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2451), - [sym_integer] = ACTIONS(2451), - [sym_float] = ACTIONS(2451), - [sym_char] = ACTIONS(2451), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130143,86 +129909,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(958), }, [816] = { - [sym__expression] = STATE(3460), - [sym_block] = STATE(3460), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3460), - [sym_nil] = STATE(3460), - [sym__atom] = STATE(3460), - [sym_quoted_atom] = STATE(3460), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3460), - [sym_charlist] = STATE(3460), - [sym_sigil] = STATE(3460), - [sym_list] = STATE(3460), - [sym_tuple] = STATE(3460), - [sym_bitstring] = STATE(3460), - [sym_map] = STATE(3460), - [sym__nullary_operator] = STATE(3460), - [sym_unary_operator] = STATE(3460), - [sym_binary_operator] = STATE(3460), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3460), - [sym_call] = STATE(3460), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3460), - [sym_anonymous_function] = STATE(3460), + [sym__expression] = STATE(2426), + [sym_block] = STATE(2426), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2426), + [sym_nil] = STATE(2426), + [sym__atom] = STATE(2426), + [sym_quoted_atom] = STATE(2426), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2426), + [sym_charlist] = STATE(2426), + [sym_sigil] = STATE(2426), + [sym_list] = STATE(2426), + [sym_tuple] = STATE(2426), + [sym_bitstring] = STATE(2426), + [sym_map] = STATE(2426), + [sym__nullary_operator] = STATE(2426), + [sym_unary_operator] = STATE(2426), + [sym_binary_operator] = STATE(2426), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2426), + [sym_call] = STATE(2426), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2426), + [sym_anonymous_function] = STATE(2426), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2453), [sym_integer] = ACTIONS(2453), [sym_float] = ACTIONS(2453), [sym_char] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130260,86 +130026,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [817] = { - [sym__expression] = STATE(3459), - [sym_block] = STATE(3459), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3459), - [sym_nil] = STATE(3459), - [sym__atom] = STATE(3459), - [sym_quoted_atom] = STATE(3459), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3459), - [sym_charlist] = STATE(3459), - [sym_sigil] = STATE(3459), - [sym_list] = STATE(3459), - [sym_tuple] = STATE(3459), - [sym_bitstring] = STATE(3459), - [sym_map] = STATE(3459), - [sym__nullary_operator] = STATE(3459), - [sym_unary_operator] = STATE(3459), - [sym_binary_operator] = STATE(3459), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3459), - [sym_call] = STATE(3459), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3459), - [sym_anonymous_function] = STATE(3459), + [sym__expression] = STATE(2425), + [sym_block] = STATE(2425), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2425), + [sym_nil] = STATE(2425), + [sym__atom] = STATE(2425), + [sym_quoted_atom] = STATE(2425), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2425), + [sym_charlist] = STATE(2425), + [sym_sigil] = STATE(2425), + [sym_list] = STATE(2425), + [sym_tuple] = STATE(2425), + [sym_bitstring] = STATE(2425), + [sym_map] = STATE(2425), + [sym__nullary_operator] = STATE(2425), + [sym_unary_operator] = STATE(2425), + [sym_binary_operator] = STATE(2425), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2425), + [sym_call] = STATE(2425), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2425), + [sym_anonymous_function] = STATE(2425), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2455), [sym_integer] = ACTIONS(2455), [sym_float] = ACTIONS(2455), [sym_char] = ACTIONS(2455), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130377,86 +130143,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [818] = { - [sym__expression] = STATE(3458), - [sym_block] = STATE(3458), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3458), - [sym_nil] = STATE(3458), - [sym__atom] = STATE(3458), - [sym_quoted_atom] = STATE(3458), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3458), - [sym_charlist] = STATE(3458), - [sym_sigil] = STATE(3458), - [sym_list] = STATE(3458), - [sym_tuple] = STATE(3458), - [sym_bitstring] = STATE(3458), - [sym_map] = STATE(3458), - [sym__nullary_operator] = STATE(3458), - [sym_unary_operator] = STATE(3458), - [sym_binary_operator] = STATE(3458), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3458), - [sym_call] = STATE(3458), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3458), - [sym_anonymous_function] = STATE(3458), + [sym__expression] = STATE(2424), + [sym_block] = STATE(2424), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2424), + [sym_nil] = STATE(2424), + [sym__atom] = STATE(2424), + [sym_quoted_atom] = STATE(2424), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2424), + [sym_charlist] = STATE(2424), + [sym_sigil] = STATE(2424), + [sym_list] = STATE(2424), + [sym_tuple] = STATE(2424), + [sym_bitstring] = STATE(2424), + [sym_map] = STATE(2424), + [sym__nullary_operator] = STATE(2424), + [sym_unary_operator] = STATE(2424), + [sym_binary_operator] = STATE(2424), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2424), + [sym_call] = STATE(2424), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2424), + [sym_anonymous_function] = STATE(2424), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2457), [sym_integer] = ACTIONS(2457), [sym_float] = ACTIONS(2457), [sym_char] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130494,86 +130260,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [819] = { - [sym__expression] = STATE(3455), - [sym_block] = STATE(3455), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3455), - [sym_nil] = STATE(3455), - [sym__atom] = STATE(3455), - [sym_quoted_atom] = STATE(3455), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3455), - [sym_charlist] = STATE(3455), - [sym_sigil] = STATE(3455), - [sym_list] = STATE(3455), - [sym_tuple] = STATE(3455), - [sym_bitstring] = STATE(3455), - [sym_map] = STATE(3455), - [sym__nullary_operator] = STATE(3455), - [sym_unary_operator] = STATE(3455), - [sym_binary_operator] = STATE(3455), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3455), - [sym_call] = STATE(3455), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3455), - [sym_anonymous_function] = STATE(3455), + [sym__expression] = STATE(2421), + [sym_block] = STATE(2421), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2421), + [sym_nil] = STATE(2421), + [sym__atom] = STATE(2421), + [sym_quoted_atom] = STATE(2421), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2421), + [sym_charlist] = STATE(2421), + [sym_sigil] = STATE(2421), + [sym_list] = STATE(2421), + [sym_tuple] = STATE(2421), + [sym_bitstring] = STATE(2421), + [sym_map] = STATE(2421), + [sym__nullary_operator] = STATE(2421), + [sym_unary_operator] = STATE(2421), + [sym_binary_operator] = STATE(2421), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2421), + [sym_call] = STATE(2421), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2421), + [sym_anonymous_function] = STATE(2421), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2459), [sym_integer] = ACTIONS(2459), [sym_float] = ACTIONS(2459), [sym_char] = ACTIONS(2459), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130611,86 +130377,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [820] = { - [sym__expression] = STATE(3454), - [sym_block] = STATE(3454), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3454), - [sym_nil] = STATE(3454), - [sym__atom] = STATE(3454), - [sym_quoted_atom] = STATE(3454), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3454), - [sym_charlist] = STATE(3454), - [sym_sigil] = STATE(3454), - [sym_list] = STATE(3454), - [sym_tuple] = STATE(3454), - [sym_bitstring] = STATE(3454), - [sym_map] = STATE(3454), - [sym__nullary_operator] = STATE(3454), - [sym_unary_operator] = STATE(3454), - [sym_binary_operator] = STATE(3454), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3454), - [sym_call] = STATE(3454), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3454), - [sym_anonymous_function] = STATE(3454), + [sym__expression] = STATE(2420), + [sym_block] = STATE(2420), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2420), + [sym_nil] = STATE(2420), + [sym__atom] = STATE(2420), + [sym_quoted_atom] = STATE(2420), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2420), + [sym_charlist] = STATE(2420), + [sym_sigil] = STATE(2420), + [sym_list] = STATE(2420), + [sym_tuple] = STATE(2420), + [sym_bitstring] = STATE(2420), + [sym_map] = STATE(2420), + [sym__nullary_operator] = STATE(2420), + [sym_unary_operator] = STATE(2420), + [sym_binary_operator] = STATE(2420), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2420), + [sym_call] = STATE(2420), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2420), + [sym_anonymous_function] = STATE(2420), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2461), [sym_integer] = ACTIONS(2461), [sym_float] = ACTIONS(2461), [sym_char] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(35), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130728,86 +130494,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [821] = { - [sym__expression] = STATE(3453), - [sym_block] = STATE(3453), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3453), - [sym_nil] = STATE(3453), - [sym__atom] = STATE(3453), - [sym_quoted_atom] = STATE(3453), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3453), - [sym_charlist] = STATE(3453), - [sym_sigil] = STATE(3453), - [sym_list] = STATE(3453), - [sym_tuple] = STATE(3453), - [sym_bitstring] = STATE(3453), - [sym_map] = STATE(3453), - [sym__nullary_operator] = STATE(3453), - [sym_unary_operator] = STATE(3453), - [sym_binary_operator] = STATE(3453), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3453), - [sym_call] = STATE(3453), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3453), - [sym_anonymous_function] = STATE(3453), + [sym__expression] = STATE(2419), + [sym_block] = STATE(2419), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2419), + [sym_nil] = STATE(2419), + [sym__atom] = STATE(2419), + [sym_quoted_atom] = STATE(2419), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2419), + [sym_charlist] = STATE(2419), + [sym_sigil] = STATE(2419), + [sym_list] = STATE(2419), + [sym_tuple] = STATE(2419), + [sym_bitstring] = STATE(2419), + [sym_map] = STATE(2419), + [sym__nullary_operator] = STATE(2419), + [sym_unary_operator] = STATE(2419), + [sym_binary_operator] = STATE(2419), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2419), + [sym_call] = STATE(2419), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2419), + [sym_anonymous_function] = STATE(2419), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2463), [sym_integer] = ACTIONS(2463), [sym_float] = ACTIONS(2463), [sym_char] = ACTIONS(2463), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130845,86 +130611,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [822] = { - [sym__expression] = STATE(3452), - [sym_block] = STATE(3452), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3452), - [sym_nil] = STATE(3452), - [sym__atom] = STATE(3452), - [sym_quoted_atom] = STATE(3452), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3452), - [sym_charlist] = STATE(3452), - [sym_sigil] = STATE(3452), - [sym_list] = STATE(3452), - [sym_tuple] = STATE(3452), - [sym_bitstring] = STATE(3452), - [sym_map] = STATE(3452), - [sym__nullary_operator] = STATE(3452), - [sym_unary_operator] = STATE(3452), - [sym_binary_operator] = STATE(3452), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3452), - [sym_call] = STATE(3452), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3452), - [sym_anonymous_function] = STATE(3452), + [sym__expression] = STATE(2414), + [sym_block] = STATE(2414), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2414), + [sym_nil] = STATE(2414), + [sym__atom] = STATE(2414), + [sym_quoted_atom] = STATE(2414), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2414), + [sym_charlist] = STATE(2414), + [sym_sigil] = STATE(2414), + [sym_list] = STATE(2414), + [sym_tuple] = STATE(2414), + [sym_bitstring] = STATE(2414), + [sym_map] = STATE(2414), + [sym__nullary_operator] = STATE(2414), + [sym_unary_operator] = STATE(2414), + [sym_binary_operator] = STATE(2414), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2414), + [sym_call] = STATE(2414), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2414), + [sym_anonymous_function] = STATE(2414), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2465), [sym_integer] = ACTIONS(2465), [sym_float] = ACTIONS(2465), [sym_char] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -130962,86 +130728,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [823] = { - [sym__expression] = STATE(3276), - [sym_block] = STATE(3276), - [sym_identifier] = STATE(41), - [sym_boolean] = STATE(3276), - [sym_nil] = STATE(3276), - [sym__atom] = STATE(3276), - [sym_quoted_atom] = STATE(3276), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3276), - [sym_charlist] = STATE(3276), - [sym_sigil] = STATE(3276), - [sym_list] = STATE(3276), - [sym_tuple] = STATE(3276), - [sym_bitstring] = STATE(3276), - [sym_map] = STATE(3276), - [sym__nullary_operator] = STATE(3276), - [sym_unary_operator] = STATE(3276), - [sym_binary_operator] = STATE(3276), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3276), - [sym_call] = STATE(3276), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(48), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3276), - [sym_anonymous_function] = STATE(3276), + [sym__expression] = STATE(2413), + [sym_block] = STATE(2413), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2413), + [sym_nil] = STATE(2413), + [sym__atom] = STATE(2413), + [sym_quoted_atom] = STATE(2413), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2413), + [sym_charlist] = STATE(2413), + [sym_sigil] = STATE(2413), + [sym_list] = STATE(2413), + [sym_tuple] = STATE(2413), + [sym_bitstring] = STATE(2413), + [sym_map] = STATE(2413), + [sym__nullary_operator] = STATE(2413), + [sym_unary_operator] = STATE(2413), + [sym_binary_operator] = STATE(2413), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2413), + [sym_call] = STATE(2413), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2413), + [sym_anonymous_function] = STATE(2413), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_LPAREN] = ACTIONS(189), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2467), [sym_integer] = ACTIONS(2467), [sym_float] = ACTIONS(2467), [sym_char] = ACTIONS(2467), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(435), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(444), - [anon_sym_not] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(446), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131079,203 +130845,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(448), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(231), }, [824] = { - [sym__expression] = STATE(3339), - [sym_block] = STATE(3339), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3339), - [sym_nil] = STATE(3339), - [sym__atom] = STATE(3339), - [sym_quoted_atom] = STATE(3339), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3339), - [sym_charlist] = STATE(3339), - [sym_sigil] = STATE(3339), - [sym_list] = STATE(3339), - [sym_tuple] = STATE(3339), - [sym_bitstring] = STATE(3339), - [sym_map] = STATE(3339), - [sym__nullary_operator] = STATE(3339), - [sym_unary_operator] = STATE(3339), - [sym_binary_operator] = STATE(3339), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3339), - [sym_call] = STATE(3339), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3339), - [sym_anonymous_function] = STATE(3339), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1893), - [sym_integer] = ACTIONS(1893), - [sym_float] = ACTIONS(1893), - [sym_char] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), - }, - [825] = { - [sym__expression] = STATE(3864), - [sym_block] = STATE(3864), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3864), - [sym_nil] = STATE(3864), - [sym__atom] = STATE(3864), - [sym_quoted_atom] = STATE(3864), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3864), - [sym_charlist] = STATE(3864), - [sym_sigil] = STATE(3864), - [sym_list] = STATE(3864), - [sym_tuple] = STATE(3864), - [sym_bitstring] = STATE(3864), - [sym_map] = STATE(3864), - [sym__nullary_operator] = STATE(3864), - [sym_unary_operator] = STATE(3864), - [sym_binary_operator] = STATE(3864), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3864), - [sym_call] = STATE(3864), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3864), - [sym_anonymous_function] = STATE(3864), + [sym__expression] = STATE(2412), + [sym_block] = STATE(2412), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2412), + [sym_nil] = STATE(2412), + [sym__atom] = STATE(2412), + [sym_quoted_atom] = STATE(2412), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2412), + [sym_charlist] = STATE(2412), + [sym_sigil] = STATE(2412), + [sym_list] = STATE(2412), + [sym_tuple] = STATE(2412), + [sym_bitstring] = STATE(2412), + [sym_map] = STATE(2412), + [sym__nullary_operator] = STATE(2412), + [sym_unary_operator] = STATE(2412), + [sym_binary_operator] = STATE(2412), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2412), + [sym_call] = STATE(2412), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2412), + [sym_anonymous_function] = STATE(2412), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2469), [sym_integer] = ACTIONS(2469), [sym_float] = ACTIONS(2469), [sym_char] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131313,86 +130962,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(231), }, - [826] = { - [sym__expression] = STATE(3863), - [sym_block] = STATE(3863), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3863), - [sym_nil] = STATE(3863), - [sym__atom] = STATE(3863), - [sym_quoted_atom] = STATE(3863), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3863), - [sym_charlist] = STATE(3863), - [sym_sigil] = STATE(3863), - [sym_list] = STATE(3863), - [sym_tuple] = STATE(3863), - [sym_bitstring] = STATE(3863), - [sym_map] = STATE(3863), - [sym__nullary_operator] = STATE(3863), - [sym_unary_operator] = STATE(3863), - [sym_binary_operator] = STATE(3863), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3863), - [sym_call] = STATE(3863), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3863), - [sym_anonymous_function] = STATE(3863), + [825] = { + [sym__expression] = STATE(2411), + [sym_block] = STATE(2411), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2411), + [sym_nil] = STATE(2411), + [sym__atom] = STATE(2411), + [sym_quoted_atom] = STATE(2411), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2411), + [sym_charlist] = STATE(2411), + [sym_sigil] = STATE(2411), + [sym_list] = STATE(2411), + [sym_tuple] = STATE(2411), + [sym_bitstring] = STATE(2411), + [sym_map] = STATE(2411), + [sym__nullary_operator] = STATE(2411), + [sym_unary_operator] = STATE(2411), + [sym_binary_operator] = STATE(2411), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2411), + [sym_call] = STATE(2411), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2411), + [sym_anonymous_function] = STATE(2411), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2471), [sym_integer] = ACTIONS(2471), [sym_float] = ACTIONS(2471), [sym_char] = ACTIONS(2471), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131430,86 +131079,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(231), }, - [827] = { - [sym__expression] = STATE(3861), - [sym_block] = STATE(3861), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3861), - [sym_nil] = STATE(3861), - [sym__atom] = STATE(3861), - [sym_quoted_atom] = STATE(3861), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3861), - [sym_charlist] = STATE(3861), - [sym_sigil] = STATE(3861), - [sym_list] = STATE(3861), - [sym_tuple] = STATE(3861), - [sym_bitstring] = STATE(3861), - [sym_map] = STATE(3861), - [sym__nullary_operator] = STATE(3861), - [sym_unary_operator] = STATE(3861), - [sym_binary_operator] = STATE(3861), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3861), - [sym_call] = STATE(3861), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3861), - [sym_anonymous_function] = STATE(3861), + [826] = { + [sym__expression] = STATE(2410), + [sym_block] = STATE(2410), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2410), + [sym_nil] = STATE(2410), + [sym__atom] = STATE(2410), + [sym_quoted_atom] = STATE(2410), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2410), + [sym_charlist] = STATE(2410), + [sym_sigil] = STATE(2410), + [sym_list] = STATE(2410), + [sym_tuple] = STATE(2410), + [sym_bitstring] = STATE(2410), + [sym_map] = STATE(2410), + [sym__nullary_operator] = STATE(2410), + [sym_unary_operator] = STATE(2410), + [sym_binary_operator] = STATE(2410), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2410), + [sym_call] = STATE(2410), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2410), + [sym_anonymous_function] = STATE(2410), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2473), [sym_integer] = ACTIONS(2473), [sym_float] = ACTIONS(2473), [sym_char] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131547,86 +131196,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(231), }, - [828] = { - [sym__expression] = STATE(3860), - [sym_block] = STATE(3860), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3860), - [sym_nil] = STATE(3860), - [sym__atom] = STATE(3860), - [sym_quoted_atom] = STATE(3860), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3860), - [sym_charlist] = STATE(3860), - [sym_sigil] = STATE(3860), - [sym_list] = STATE(3860), - [sym_tuple] = STATE(3860), - [sym_bitstring] = STATE(3860), - [sym_map] = STATE(3860), - [sym__nullary_operator] = STATE(3860), - [sym_unary_operator] = STATE(3860), - [sym_binary_operator] = STATE(3860), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3860), - [sym_call] = STATE(3860), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3860), - [sym_anonymous_function] = STATE(3860), + [827] = { + [sym__expression] = STATE(2409), + [sym_block] = STATE(2409), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2409), + [sym_nil] = STATE(2409), + [sym__atom] = STATE(2409), + [sym_quoted_atom] = STATE(2409), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2409), + [sym_charlist] = STATE(2409), + [sym_sigil] = STATE(2409), + [sym_list] = STATE(2409), + [sym_tuple] = STATE(2409), + [sym_bitstring] = STATE(2409), + [sym_map] = STATE(2409), + [sym__nullary_operator] = STATE(2409), + [sym_unary_operator] = STATE(2409), + [sym_binary_operator] = STATE(2409), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2409), + [sym_call] = STATE(2409), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2409), + [sym_anonymous_function] = STATE(2409), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2475), [sym_integer] = ACTIONS(2475), [sym_float] = ACTIONS(2475), [sym_char] = ACTIONS(2475), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131664,86 +131313,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(231), }, - [829] = { - [sym__expression] = STATE(3858), - [sym_block] = STATE(3858), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3858), - [sym_nil] = STATE(3858), - [sym__atom] = STATE(3858), - [sym_quoted_atom] = STATE(3858), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3858), - [sym_charlist] = STATE(3858), - [sym_sigil] = STATE(3858), - [sym_list] = STATE(3858), - [sym_tuple] = STATE(3858), - [sym_bitstring] = STATE(3858), - [sym_map] = STATE(3858), - [sym__nullary_operator] = STATE(3858), - [sym_unary_operator] = STATE(3858), - [sym_binary_operator] = STATE(3858), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3858), - [sym_call] = STATE(3858), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3858), - [sym_anonymous_function] = STATE(3858), + [828] = { + [sym__expression] = STATE(2408), + [sym_block] = STATE(2408), + [sym_identifier] = STATE(45), + [sym_boolean] = STATE(2408), + [sym_nil] = STATE(2408), + [sym__atom] = STATE(2408), + [sym_quoted_atom] = STATE(2408), + [sym__quoted_i_double] = STATE(1182), + [sym__quoted_i_single] = STATE(1179), + [sym__quoted_i_heredoc_single] = STATE(1175), + [sym__quoted_i_heredoc_double] = STATE(1161), + [sym_string] = STATE(2408), + [sym_charlist] = STATE(2408), + [sym_sigil] = STATE(2408), + [sym_list] = STATE(2408), + [sym_tuple] = STATE(2408), + [sym_bitstring] = STATE(2408), + [sym_map] = STATE(2408), + [sym__nullary_operator] = STATE(2408), + [sym_unary_operator] = STATE(2408), + [sym_binary_operator] = STATE(2408), + [sym_operator_identifier] = STATE(6931), + [sym_dot] = STATE(2408), + [sym_call] = STATE(2408), + [sym__call_without_parentheses] = STATE(1139), + [sym__call_with_parentheses] = STATE(1159), + [sym__local_call_without_parentheses] = STATE(1158), + [sym__local_call_with_parentheses] = STATE(1090), + [sym__local_call_just_do_block] = STATE(1156), + [sym__remote_call_without_parentheses] = STATE(1153), + [sym__remote_call_with_parentheses] = STATE(1087), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(1088), + [sym__anonymous_dot] = STATE(6768), + [sym__double_call] = STATE(1144), + [sym_access_call] = STATE(2408), + [sym_anonymous_function] = STATE(2408), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(189), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), [sym_alias] = ACTIONS(2477), [sym_integer] = ACTIONS(2477), [sym_float] = ACTIONS(2477), [sym_char] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(195), + [anon_sym_false] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(197), [sym_atom] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(199), + [anon_sym_SQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LBRACK] = ACTIONS(209), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(471), + [anon_sym_LT_LT] = ACTIONS(215), + [anon_sym_PERCENT] = ACTIONS(217), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(477), + [anon_sym_CARET] = ACTIONS(477), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(477), + [anon_sym_not] = ACTIONS(477), + [anon_sym_AT] = ACTIONS(479), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131781,86 +131430,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(225), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(481), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(231), }, - [830] = { - [sym__expression] = STATE(3855), - [sym_block] = STATE(3855), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3855), - [sym_nil] = STATE(3855), - [sym__atom] = STATE(3855), - [sym_quoted_atom] = STATE(3855), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3855), - [sym_charlist] = STATE(3855), - [sym_sigil] = STATE(3855), - [sym_list] = STATE(3855), - [sym_tuple] = STATE(3855), - [sym_bitstring] = STATE(3855), - [sym_map] = STATE(3855), - [sym__nullary_operator] = STATE(3855), - [sym_unary_operator] = STATE(3855), - [sym_binary_operator] = STATE(3855), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3855), - [sym_call] = STATE(3855), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3855), - [sym_anonymous_function] = STATE(3855), + [829] = { + [sym__expression] = STATE(4057), + [sym_block] = STATE(4057), + [sym_identifier] = STATE(54), + [sym_boolean] = STATE(4057), + [sym_nil] = STATE(4057), + [sym__atom] = STATE(4057), + [sym_quoted_atom] = STATE(4057), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4057), + [sym_charlist] = STATE(4057), + [sym_sigil] = STATE(4057), + [sym_list] = STATE(4057), + [sym_tuple] = STATE(4057), + [sym_bitstring] = STATE(4057), + [sym_map] = STATE(4057), + [sym__nullary_operator] = STATE(4057), + [sym_unary_operator] = STATE(4057), + [sym_binary_operator] = STATE(4057), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4057), + [sym_call] = STATE(4057), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4057), + [sym_anonymous_function] = STATE(4057), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), [sym_alias] = ACTIONS(2479), [sym_integer] = ACTIONS(2479), [sym_float] = ACTIONS(2479), [sym_char] = ACTIONS(2479), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), [sym_atom] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1401), + [anon_sym_not] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1403), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -131898,86 +131547,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(1405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(958), }, - [831] = { - [sym__expression] = STATE(3792), - [sym_block] = STATE(3792), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3792), - [sym_nil] = STATE(3792), - [sym__atom] = STATE(3792), - [sym_quoted_atom] = STATE(3792), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3792), - [sym_charlist] = STATE(3792), - [sym_sigil] = STATE(3792), - [sym_list] = STATE(3792), - [sym_tuple] = STATE(3792), - [sym_bitstring] = STATE(3792), - [sym_map] = STATE(3792), - [sym__nullary_operator] = STATE(3792), - [sym_unary_operator] = STATE(3792), - [sym_binary_operator] = STATE(3792), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3792), - [sym_call] = STATE(3792), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3792), - [sym_anonymous_function] = STATE(3792), + [830] = { + [sym__expression] = STATE(3944), + [sym_block] = STATE(3944), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3944), + [sym_nil] = STATE(3944), + [sym__atom] = STATE(3944), + [sym_quoted_atom] = STATE(3944), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3944), + [sym_charlist] = STATE(3944), + [sym_sigil] = STATE(3944), + [sym_list] = STATE(3944), + [sym_tuple] = STATE(3944), + [sym_bitstring] = STATE(3944), + [sym_map] = STATE(3944), + [sym__nullary_operator] = STATE(3944), + [sym_unary_operator] = STATE(3944), + [sym_binary_operator] = STATE(3944), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3944), + [sym_call] = STATE(3944), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3944), + [sym_anonymous_function] = STATE(3944), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2481), [sym_integer] = ACTIONS(2481), [sym_float] = ACTIONS(2481), [sym_char] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132015,86 +131664,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [832] = { - [sym__expression] = STATE(3791), - [sym_block] = STATE(3791), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3791), - [sym_nil] = STATE(3791), - [sym__atom] = STATE(3791), - [sym_quoted_atom] = STATE(3791), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3791), - [sym_charlist] = STATE(3791), - [sym_sigil] = STATE(3791), - [sym_list] = STATE(3791), - [sym_tuple] = STATE(3791), - [sym_bitstring] = STATE(3791), - [sym_map] = STATE(3791), - [sym__nullary_operator] = STATE(3791), - [sym_unary_operator] = STATE(3791), - [sym_binary_operator] = STATE(3791), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3791), - [sym_call] = STATE(3791), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3791), - [sym_anonymous_function] = STATE(3791), + [831] = { + [sym__expression] = STATE(3945), + [sym_block] = STATE(3945), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3945), + [sym_nil] = STATE(3945), + [sym__atom] = STATE(3945), + [sym_quoted_atom] = STATE(3945), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3945), + [sym_charlist] = STATE(3945), + [sym_sigil] = STATE(3945), + [sym_list] = STATE(3945), + [sym_tuple] = STATE(3945), + [sym_bitstring] = STATE(3945), + [sym_map] = STATE(3945), + [sym__nullary_operator] = STATE(3945), + [sym_unary_operator] = STATE(3945), + [sym_binary_operator] = STATE(3945), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3945), + [sym_call] = STATE(3945), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3945), + [sym_anonymous_function] = STATE(3945), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2483), [sym_integer] = ACTIONS(2483), [sym_float] = ACTIONS(2483), [sym_char] = ACTIONS(2483), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132132,86 +131781,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [833] = { - [sym__expression] = STATE(3790), - [sym_block] = STATE(3790), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3790), - [sym_nil] = STATE(3790), - [sym__atom] = STATE(3790), - [sym_quoted_atom] = STATE(3790), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3790), - [sym_charlist] = STATE(3790), - [sym_sigil] = STATE(3790), - [sym_list] = STATE(3790), - [sym_tuple] = STATE(3790), - [sym_bitstring] = STATE(3790), - [sym_map] = STATE(3790), - [sym__nullary_operator] = STATE(3790), - [sym_unary_operator] = STATE(3790), - [sym_binary_operator] = STATE(3790), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3790), - [sym_call] = STATE(3790), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3790), - [sym_anonymous_function] = STATE(3790), + [832] = { + [sym__expression] = STATE(3946), + [sym_block] = STATE(3946), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3946), + [sym_nil] = STATE(3946), + [sym__atom] = STATE(3946), + [sym_quoted_atom] = STATE(3946), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3946), + [sym_charlist] = STATE(3946), + [sym_sigil] = STATE(3946), + [sym_list] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_bitstring] = STATE(3946), + [sym_map] = STATE(3946), + [sym__nullary_operator] = STATE(3946), + [sym_unary_operator] = STATE(3946), + [sym_binary_operator] = STATE(3946), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3946), + [sym_call] = STATE(3946), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3946), + [sym_anonymous_function] = STATE(3946), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2485), [sym_integer] = ACTIONS(2485), [sym_float] = ACTIONS(2485), [sym_char] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132249,86 +131898,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [834] = { - [sym__expression] = STATE(1507), - [sym_block] = STATE(1507), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1507), - [sym_nil] = STATE(1507), - [sym__atom] = STATE(1507), - [sym_quoted_atom] = STATE(1507), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1507), - [sym_charlist] = STATE(1507), - [sym_sigil] = STATE(1507), - [sym_list] = STATE(1507), - [sym_tuple] = STATE(1507), - [sym_bitstring] = STATE(1507), - [sym_map] = STATE(1507), - [sym__nullary_operator] = STATE(1507), - [sym_unary_operator] = STATE(1507), - [sym_binary_operator] = STATE(1507), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1507), - [sym_call] = STATE(1507), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1507), - [sym_anonymous_function] = STATE(1507), + [833] = { + [sym__expression] = STATE(3947), + [sym_block] = STATE(3947), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3947), + [sym_nil] = STATE(3947), + [sym__atom] = STATE(3947), + [sym_quoted_atom] = STATE(3947), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3947), + [sym_charlist] = STATE(3947), + [sym_sigil] = STATE(3947), + [sym_list] = STATE(3947), + [sym_tuple] = STATE(3947), + [sym_bitstring] = STATE(3947), + [sym_map] = STATE(3947), + [sym__nullary_operator] = STATE(3947), + [sym_unary_operator] = STATE(3947), + [sym_binary_operator] = STATE(3947), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3947), + [sym_call] = STATE(3947), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3947), + [sym_anonymous_function] = STATE(3947), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(1419), - [sym_integer] = ACTIONS(1419), - [sym_float] = ACTIONS(1419), - [sym_char] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_alias] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2487), + [sym_char] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), + [sym_atom] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132366,203 +132015,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [835] = { - [sym__expression] = STATE(3778), - [sym_block] = STATE(3778), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3778), - [sym_nil] = STATE(3778), - [sym__atom] = STATE(3778), - [sym_quoted_atom] = STATE(3778), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3778), - [sym_charlist] = STATE(3778), - [sym_sigil] = STATE(3778), - [sym_list] = STATE(3778), - [sym_tuple] = STATE(3778), - [sym_bitstring] = STATE(3778), - [sym_map] = STATE(3778), - [sym__nullary_operator] = STATE(3778), - [sym_unary_operator] = STATE(3778), - [sym_binary_operator] = STATE(3778), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3778), - [sym_call] = STATE(3778), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3778), - [sym_anonymous_function] = STATE(3778), + [834] = { + [sym__expression] = STATE(3948), + [sym_block] = STATE(3948), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3948), + [sym_nil] = STATE(3948), + [sym__atom] = STATE(3948), + [sym_quoted_atom] = STATE(3948), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3948), + [sym_charlist] = STATE(3948), + [sym_sigil] = STATE(3948), + [sym_list] = STATE(3948), + [sym_tuple] = STATE(3948), + [sym_bitstring] = STATE(3948), + [sym_map] = STATE(3948), + [sym__nullary_operator] = STATE(3948), + [sym_unary_operator] = STATE(3948), + [sym_binary_operator] = STATE(3948), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3948), + [sym_call] = STATE(3948), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3948), + [sym_anonymous_function] = STATE(3948), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2487), - [sym_integer] = ACTIONS(2487), - [sym_float] = ACTIONS(2487), - [sym_char] = ACTIONS(2487), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), - }, - [836] = { - [sym__expression] = STATE(3777), - [sym_block] = STATE(3777), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3777), - [sym_nil] = STATE(3777), - [sym__atom] = STATE(3777), - [sym_quoted_atom] = STATE(3777), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3777), - [sym_charlist] = STATE(3777), - [sym_sigil] = STATE(3777), - [sym_list] = STATE(3777), - [sym_tuple] = STATE(3777), - [sym_bitstring] = STATE(3777), - [sym_map] = STATE(3777), - [sym__nullary_operator] = STATE(3777), - [sym_unary_operator] = STATE(3777), - [sym_binary_operator] = STATE(3777), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3777), - [sym_call] = STATE(3777), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3777), - [sym_anonymous_function] = STATE(3777), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2489), [sym_integer] = ACTIONS(2489), [sym_float] = ACTIONS(2489), [sym_char] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132600,86 +132132,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [837] = { - [sym__expression] = STATE(3775), - [sym_block] = STATE(3775), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3775), - [sym_nil] = STATE(3775), - [sym__atom] = STATE(3775), - [sym_quoted_atom] = STATE(3775), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3775), - [sym_charlist] = STATE(3775), - [sym_sigil] = STATE(3775), - [sym_list] = STATE(3775), - [sym_tuple] = STATE(3775), - [sym_bitstring] = STATE(3775), - [sym_map] = STATE(3775), - [sym__nullary_operator] = STATE(3775), - [sym_unary_operator] = STATE(3775), - [sym_binary_operator] = STATE(3775), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3775), - [sym_call] = STATE(3775), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3775), - [sym_anonymous_function] = STATE(3775), + [835] = { + [sym__expression] = STATE(3949), + [sym_block] = STATE(3949), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3949), + [sym_nil] = STATE(3949), + [sym__atom] = STATE(3949), + [sym_quoted_atom] = STATE(3949), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3949), + [sym_charlist] = STATE(3949), + [sym_sigil] = STATE(3949), + [sym_list] = STATE(3949), + [sym_tuple] = STATE(3949), + [sym_bitstring] = STATE(3949), + [sym_map] = STATE(3949), + [sym__nullary_operator] = STATE(3949), + [sym_unary_operator] = STATE(3949), + [sym_binary_operator] = STATE(3949), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3949), + [sym_call] = STATE(3949), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3949), + [sym_anonymous_function] = STATE(3949), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2491), [sym_integer] = ACTIONS(2491), [sym_float] = ACTIONS(2491), [sym_char] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132717,86 +132249,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [838] = { - [sym__expression] = STATE(3770), - [sym_block] = STATE(3770), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3770), - [sym_nil] = STATE(3770), - [sym__atom] = STATE(3770), - [sym_quoted_atom] = STATE(3770), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3770), - [sym_charlist] = STATE(3770), - [sym_sigil] = STATE(3770), - [sym_list] = STATE(3770), - [sym_tuple] = STATE(3770), - [sym_bitstring] = STATE(3770), - [sym_map] = STATE(3770), - [sym__nullary_operator] = STATE(3770), - [sym_unary_operator] = STATE(3770), - [sym_binary_operator] = STATE(3770), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3770), - [sym_call] = STATE(3770), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3770), - [sym_anonymous_function] = STATE(3770), + [836] = { + [sym__expression] = STATE(3950), + [sym_block] = STATE(3950), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3950), + [sym_nil] = STATE(3950), + [sym__atom] = STATE(3950), + [sym_quoted_atom] = STATE(3950), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3950), + [sym_charlist] = STATE(3950), + [sym_sigil] = STATE(3950), + [sym_list] = STATE(3950), + [sym_tuple] = STATE(3950), + [sym_bitstring] = STATE(3950), + [sym_map] = STATE(3950), + [sym__nullary_operator] = STATE(3950), + [sym_unary_operator] = STATE(3950), + [sym_binary_operator] = STATE(3950), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3950), + [sym_call] = STATE(3950), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3950), + [sym_anonymous_function] = STATE(3950), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2493), [sym_integer] = ACTIONS(2493), [sym_float] = ACTIONS(2493), [sym_char] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132834,86 +132366,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [839] = { - [sym__expression] = STATE(3901), - [sym_block] = STATE(3901), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3901), - [sym_nil] = STATE(3901), - [sym__atom] = STATE(3901), - [sym_quoted_atom] = STATE(3901), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3901), - [sym_charlist] = STATE(3901), - [sym_sigil] = STATE(3901), - [sym_list] = STATE(3901), - [sym_tuple] = STATE(3901), - [sym_bitstring] = STATE(3901), - [sym_map] = STATE(3901), - [sym__nullary_operator] = STATE(3901), - [sym_unary_operator] = STATE(3901), - [sym_binary_operator] = STATE(3901), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3901), - [sym_call] = STATE(3901), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3901), - [sym_anonymous_function] = STATE(3901), + [837] = { + [sym__expression] = STATE(3951), + [sym_block] = STATE(3951), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3951), + [sym_nil] = STATE(3951), + [sym__atom] = STATE(3951), + [sym_quoted_atom] = STATE(3951), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3951), + [sym_charlist] = STATE(3951), + [sym_sigil] = STATE(3951), + [sym_list] = STATE(3951), + [sym_tuple] = STATE(3951), + [sym_bitstring] = STATE(3951), + [sym_map] = STATE(3951), + [sym__nullary_operator] = STATE(3951), + [sym_unary_operator] = STATE(3951), + [sym_binary_operator] = STATE(3951), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3951), + [sym_call] = STATE(3951), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3951), + [sym_anonymous_function] = STATE(3951), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2495), [sym_integer] = ACTIONS(2495), [sym_float] = ACTIONS(2495), [sym_char] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -132951,86 +132483,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [840] = { - [sym__expression] = STATE(3747), - [sym_block] = STATE(3747), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3747), - [sym_nil] = STATE(3747), - [sym__atom] = STATE(3747), - [sym_quoted_atom] = STATE(3747), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3747), - [sym_charlist] = STATE(3747), - [sym_sigil] = STATE(3747), - [sym_list] = STATE(3747), - [sym_tuple] = STATE(3747), - [sym_bitstring] = STATE(3747), - [sym_map] = STATE(3747), - [sym__nullary_operator] = STATE(3747), - [sym_unary_operator] = STATE(3747), - [sym_binary_operator] = STATE(3747), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3747), - [sym_call] = STATE(3747), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3747), - [sym_anonymous_function] = STATE(3747), + [838] = { + [sym__expression] = STATE(3953), + [sym_block] = STATE(3953), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3953), + [sym_nil] = STATE(3953), + [sym__atom] = STATE(3953), + [sym_quoted_atom] = STATE(3953), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3953), + [sym_charlist] = STATE(3953), + [sym_sigil] = STATE(3953), + [sym_list] = STATE(3953), + [sym_tuple] = STATE(3953), + [sym_bitstring] = STATE(3953), + [sym_map] = STATE(3953), + [sym__nullary_operator] = STATE(3953), + [sym_unary_operator] = STATE(3953), + [sym_binary_operator] = STATE(3953), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3953), + [sym_call] = STATE(3953), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3953), + [sym_anonymous_function] = STATE(3953), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2497), [sym_integer] = ACTIONS(2497), [sym_float] = ACTIONS(2497), [sym_char] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133068,86 +132600,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(634), }, - [841] = { - [sym__expression] = STATE(2980), - [sym_block] = STATE(2980), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2980), - [sym_nil] = STATE(2980), - [sym__atom] = STATE(2980), - [sym_quoted_atom] = STATE(2980), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2980), - [sym_charlist] = STATE(2980), - [sym_sigil] = STATE(2980), - [sym_list] = STATE(2980), - [sym_tuple] = STATE(2980), - [sym_bitstring] = STATE(2980), - [sym_map] = STATE(2980), - [sym__nullary_operator] = STATE(2980), - [sym_unary_operator] = STATE(2980), - [sym_binary_operator] = STATE(2980), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2980), - [sym_call] = STATE(2980), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2980), - [sym_anonymous_function] = STATE(2980), + [839] = { + [sym__expression] = STATE(3954), + [sym_block] = STATE(3954), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3954), + [sym_nil] = STATE(3954), + [sym__atom] = STATE(3954), + [sym_quoted_atom] = STATE(3954), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3954), + [sym_charlist] = STATE(3954), + [sym_sigil] = STATE(3954), + [sym_list] = STATE(3954), + [sym_tuple] = STATE(3954), + [sym_bitstring] = STATE(3954), + [sym_map] = STATE(3954), + [sym__nullary_operator] = STATE(3954), + [sym_unary_operator] = STATE(3954), + [sym_binary_operator] = STATE(3954), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3954), + [sym_call] = STATE(3954), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3954), + [sym_anonymous_function] = STATE(3954), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2499), [sym_integer] = ACTIONS(2499), [sym_float] = ACTIONS(2499), [sym_char] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133185,86 +132717,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(634), }, - [842] = { - [sym__expression] = STATE(1452), - [sym_block] = STATE(1452), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(1452), - [sym_nil] = STATE(1452), - [sym__atom] = STATE(1452), - [sym_quoted_atom] = STATE(1452), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1452), - [sym_charlist] = STATE(1452), - [sym_sigil] = STATE(1452), - [sym_list] = STATE(1452), - [sym_tuple] = STATE(1452), - [sym_bitstring] = STATE(1452), - [sym_map] = STATE(1452), - [sym__nullary_operator] = STATE(1452), - [sym_unary_operator] = STATE(1452), - [sym_binary_operator] = STATE(1452), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1452), - [sym_call] = STATE(1452), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1452), - [sym_anonymous_function] = STATE(1452), + [840] = { + [sym__expression] = STATE(3961), + [sym_block] = STATE(3961), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3961), + [sym_nil] = STATE(3961), + [sym__atom] = STATE(3961), + [sym_quoted_atom] = STATE(3961), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3961), + [sym_charlist] = STATE(3961), + [sym_sigil] = STATE(3961), + [sym_list] = STATE(3961), + [sym_tuple] = STATE(3961), + [sym_bitstring] = STATE(3961), + [sym_map] = STATE(3961), + [sym__nullary_operator] = STATE(3961), + [sym_unary_operator] = STATE(3961), + [sym_binary_operator] = STATE(3961), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3961), + [sym_call] = STATE(3961), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3961), + [sym_anonymous_function] = STATE(3961), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2341), - [sym_integer] = ACTIONS(2341), - [sym_float] = ACTIONS(2341), - [sym_char] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_alias] = ACTIONS(2501), + [sym_integer] = ACTIONS(2501), + [sym_float] = ACTIONS(2501), + [sym_char] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), + [sym_atom] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133302,86 +132834,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(634), }, - [843] = { - [sym__expression] = STATE(2978), - [sym_block] = STATE(2978), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2978), - [sym_nil] = STATE(2978), - [sym__atom] = STATE(2978), - [sym_quoted_atom] = STATE(2978), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2978), - [sym_charlist] = STATE(2978), - [sym_sigil] = STATE(2978), - [sym_list] = STATE(2978), - [sym_tuple] = STATE(2978), - [sym_bitstring] = STATE(2978), - [sym_map] = STATE(2978), - [sym__nullary_operator] = STATE(2978), - [sym_unary_operator] = STATE(2978), - [sym_binary_operator] = STATE(2978), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2978), - [sym_call] = STATE(2978), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2978), - [sym_anonymous_function] = STATE(2978), + [841] = { + [sym__expression] = STATE(3962), + [sym_block] = STATE(3962), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3962), + [sym_nil] = STATE(3962), + [sym__atom] = STATE(3962), + [sym_quoted_atom] = STATE(3962), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3962), + [sym_charlist] = STATE(3962), + [sym_sigil] = STATE(3962), + [sym_list] = STATE(3962), + [sym_tuple] = STATE(3962), + [sym_bitstring] = STATE(3962), + [sym_map] = STATE(3962), + [sym__nullary_operator] = STATE(3962), + [sym_unary_operator] = STATE(3962), + [sym_binary_operator] = STATE(3962), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3962), + [sym_call] = STATE(3962), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3962), + [sym_anonymous_function] = STATE(3962), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2501), - [sym_integer] = ACTIONS(2501), - [sym_float] = ACTIONS(2501), - [sym_char] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), + [sym_alias] = ACTIONS(2503), + [sym_integer] = ACTIONS(2503), + [sym_float] = ACTIONS(2503), + [sym_char] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), + [sym_atom] = ACTIONS(2503), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133419,64 +132951,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(634), }, - [844] = { - [sym__expression] = STATE(1459), - [sym_block] = STATE(1459), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(1459), - [sym_nil] = STATE(1459), - [sym__atom] = STATE(1459), - [sym_quoted_atom] = STATE(1459), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(1459), - [sym_charlist] = STATE(1459), - [sym_sigil] = STATE(1459), - [sym_list] = STATE(1459), - [sym_tuple] = STATE(1459), - [sym_bitstring] = STATE(1459), - [sym_map] = STATE(1459), - [sym__nullary_operator] = STATE(1459), - [sym_unary_operator] = STATE(1459), - [sym_binary_operator] = STATE(1459), + [842] = { + [sym__expression] = STATE(1787), + [sym_block] = STATE(1787), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1787), + [sym_nil] = STATE(1787), + [sym__atom] = STATE(1787), + [sym_quoted_atom] = STATE(1787), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1787), + [sym_charlist] = STATE(1787), + [sym_sigil] = STATE(1787), + [sym_list] = STATE(1787), + [sym_tuple] = STATE(1787), + [sym_bitstring] = STATE(1787), + [sym_map] = STATE(1787), + [sym__nullary_operator] = STATE(1787), + [sym_unary_operator] = STATE(1787), + [sym_binary_operator] = STATE(1787), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(1459), - [sym_call] = STATE(1459), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(1459), - [sym_anonymous_function] = STATE(1459), + [sym_dot] = STATE(1787), + [sym_call] = STATE(1787), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1787), + [sym_anonymous_function] = STATE(1787), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2337), - [sym_integer] = ACTIONS(2337), - [sym_float] = ACTIONS(2337), - [sym_char] = ACTIONS(2337), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2505), + [sym_integer] = ACTIONS(2505), + [sym_float] = ACTIONS(2505), + [sym_char] = ACTIONS(2505), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2337), + [sym_atom] = ACTIONS(2505), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -133486,19 +133018,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133540,60 +133072,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [845] = { - [sym__expression] = STATE(3429), - [sym_block] = STATE(3429), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3429), - [sym_nil] = STATE(3429), - [sym__atom] = STATE(3429), - [sym_quoted_atom] = STATE(3429), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3429), - [sym_charlist] = STATE(3429), - [sym_sigil] = STATE(3429), - [sym_list] = STATE(3429), - [sym_tuple] = STATE(3429), - [sym_bitstring] = STATE(3429), - [sym_map] = STATE(3429), - [sym__nullary_operator] = STATE(3429), - [sym_unary_operator] = STATE(3429), - [sym_binary_operator] = STATE(3429), + [843] = { + [sym__expression] = STATE(1432), + [sym_block] = STATE(1432), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1432), + [sym_nil] = STATE(1432), + [sym__atom] = STATE(1432), + [sym_quoted_atom] = STATE(1432), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1432), + [sym_charlist] = STATE(1432), + [sym_sigil] = STATE(1432), + [sym_list] = STATE(1432), + [sym_tuple] = STATE(1432), + [sym_bitstring] = STATE(1432), + [sym_map] = STATE(1432), + [sym__nullary_operator] = STATE(1432), + [sym_unary_operator] = STATE(1432), + [sym_binary_operator] = STATE(1432), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3429), - [sym_call] = STATE(3429), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3429), - [sym_anonymous_function] = STATE(3429), + [sym_dot] = STATE(1432), + [sym_call] = STATE(1432), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1432), + [sym_anonymous_function] = STATE(1432), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2503), - [sym_integer] = ACTIONS(2503), - [sym_float] = ACTIONS(2503), - [sym_char] = ACTIONS(2503), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2257), + [sym_integer] = ACTIONS(2257), + [sym_float] = ACTIONS(2257), + [sym_char] = ACTIONS(2257), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2503), + [sym_atom] = ACTIONS(2257), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -133603,19 +133135,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133657,60 +133189,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [846] = { - [sym__expression] = STATE(3428), - [sym_block] = STATE(3428), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3428), - [sym_nil] = STATE(3428), - [sym__atom] = STATE(3428), - [sym_quoted_atom] = STATE(3428), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3428), - [sym_charlist] = STATE(3428), - [sym_sigil] = STATE(3428), - [sym_list] = STATE(3428), - [sym_tuple] = STATE(3428), - [sym_bitstring] = STATE(3428), - [sym_map] = STATE(3428), - [sym__nullary_operator] = STATE(3428), - [sym_unary_operator] = STATE(3428), - [sym_binary_operator] = STATE(3428), + [844] = { + [sym__expression] = STATE(1788), + [sym_block] = STATE(1788), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1788), + [sym_nil] = STATE(1788), + [sym__atom] = STATE(1788), + [sym_quoted_atom] = STATE(1788), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1788), + [sym_charlist] = STATE(1788), + [sym_sigil] = STATE(1788), + [sym_list] = STATE(1788), + [sym_tuple] = STATE(1788), + [sym_bitstring] = STATE(1788), + [sym_map] = STATE(1788), + [sym__nullary_operator] = STATE(1788), + [sym_unary_operator] = STATE(1788), + [sym_binary_operator] = STATE(1788), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3428), - [sym_call] = STATE(3428), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3428), - [sym_anonymous_function] = STATE(3428), + [sym_dot] = STATE(1788), + [sym_call] = STATE(1788), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1788), + [sym_anonymous_function] = STATE(1788), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2505), - [sym_integer] = ACTIONS(2505), - [sym_float] = ACTIONS(2505), - [sym_char] = ACTIONS(2505), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2507), + [sym_integer] = ACTIONS(2507), + [sym_float] = ACTIONS(2507), + [sym_char] = ACTIONS(2507), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2505), + [sym_atom] = ACTIONS(2507), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -133721,18 +133253,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133774,60 +133306,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [847] = { - [sym__expression] = STATE(3426), - [sym_block] = STATE(3426), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3426), - [sym_nil] = STATE(3426), - [sym__atom] = STATE(3426), - [sym_quoted_atom] = STATE(3426), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3426), - [sym_charlist] = STATE(3426), - [sym_sigil] = STATE(3426), - [sym_list] = STATE(3426), - [sym_tuple] = STATE(3426), - [sym_bitstring] = STATE(3426), - [sym_map] = STATE(3426), - [sym__nullary_operator] = STATE(3426), - [sym_unary_operator] = STATE(3426), - [sym_binary_operator] = STATE(3426), + [845] = { + [sym__expression] = STATE(1403), + [sym_block] = STATE(1403), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1403), + [sym_nil] = STATE(1403), + [sym__atom] = STATE(1403), + [sym_quoted_atom] = STATE(1403), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1403), + [sym_charlist] = STATE(1403), + [sym_sigil] = STATE(1403), + [sym_list] = STATE(1403), + [sym_tuple] = STATE(1403), + [sym_bitstring] = STATE(1403), + [sym_map] = STATE(1403), + [sym__nullary_operator] = STATE(1403), + [sym_unary_operator] = STATE(1403), + [sym_binary_operator] = STATE(1403), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3426), - [sym_call] = STATE(3426), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3426), - [sym_anonymous_function] = STATE(3426), + [sym_dot] = STATE(1403), + [sym_call] = STATE(1403), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1403), + [sym_anonymous_function] = STATE(1403), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2507), - [sym_integer] = ACTIONS(2507), - [sym_float] = ACTIONS(2507), - [sym_char] = ACTIONS(2507), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2261), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2261), + [sym_char] = ACTIONS(2261), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2507), + [sym_atom] = ACTIONS(2261), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -133838,18 +133370,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -133891,52 +133423,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [848] = { - [sym__expression] = STATE(3425), - [sym_block] = STATE(3425), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3425), - [sym_nil] = STATE(3425), - [sym__atom] = STATE(3425), - [sym_quoted_atom] = STATE(3425), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3425), - [sym_charlist] = STATE(3425), - [sym_sigil] = STATE(3425), - [sym_list] = STATE(3425), - [sym_tuple] = STATE(3425), - [sym_bitstring] = STATE(3425), - [sym_map] = STATE(3425), - [sym__nullary_operator] = STATE(3425), - [sym_unary_operator] = STATE(3425), - [sym_binary_operator] = STATE(3425), + [846] = { + [sym__expression] = STATE(1574), + [sym_block] = STATE(1574), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1574), + [sym_nil] = STATE(1574), + [sym__atom] = STATE(1574), + [sym_quoted_atom] = STATE(1574), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1574), + [sym_charlist] = STATE(1574), + [sym_sigil] = STATE(1574), + [sym_list] = STATE(1574), + [sym_tuple] = STATE(1574), + [sym_bitstring] = STATE(1574), + [sym_map] = STATE(1574), + [sym__nullary_operator] = STATE(1574), + [sym_unary_operator] = STATE(1574), + [sym_binary_operator] = STATE(1574), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3425), - [sym_call] = STATE(3425), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3425), - [sym_anonymous_function] = STATE(3425), + [sym_dot] = STATE(1574), + [sym_call] = STATE(1574), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1574), + [sym_anonymous_function] = STATE(1574), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2509), [sym_integer] = ACTIONS(2509), [sym_float] = ACTIONS(2509), @@ -133955,18 +133487,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134008,52 +133540,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [849] = { - [sym__expression] = STATE(3420), - [sym_block] = STATE(3420), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3420), - [sym_nil] = STATE(3420), - [sym__atom] = STATE(3420), - [sym_quoted_atom] = STATE(3420), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3420), - [sym_charlist] = STATE(3420), - [sym_sigil] = STATE(3420), - [sym_list] = STATE(3420), - [sym_tuple] = STATE(3420), - [sym_bitstring] = STATE(3420), - [sym_map] = STATE(3420), - [sym__nullary_operator] = STATE(3420), - [sym_unary_operator] = STATE(3420), - [sym_binary_operator] = STATE(3420), + [847] = { + [sym__expression] = STATE(1575), + [sym_block] = STATE(1575), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1575), + [sym_nil] = STATE(1575), + [sym__atom] = STATE(1575), + [sym_quoted_atom] = STATE(1575), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1575), + [sym_charlist] = STATE(1575), + [sym_sigil] = STATE(1575), + [sym_list] = STATE(1575), + [sym_tuple] = STATE(1575), + [sym_bitstring] = STATE(1575), + [sym_map] = STATE(1575), + [sym__nullary_operator] = STATE(1575), + [sym_unary_operator] = STATE(1575), + [sym_binary_operator] = STATE(1575), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3420), - [sym_call] = STATE(3420), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3420), - [sym_anonymous_function] = STATE(3420), + [sym_dot] = STATE(1575), + [sym_call] = STATE(1575), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1575), + [sym_anonymous_function] = STATE(1575), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2511), [sym_integer] = ACTIONS(2511), [sym_float] = ACTIONS(2511), @@ -134072,18 +133604,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134125,52 +133657,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [850] = { - [sym__expression] = STATE(3419), - [sym_block] = STATE(3419), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3419), - [sym_nil] = STATE(3419), - [sym__atom] = STATE(3419), - [sym_quoted_atom] = STATE(3419), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3419), - [sym_charlist] = STATE(3419), - [sym_sigil] = STATE(3419), - [sym_list] = STATE(3419), - [sym_tuple] = STATE(3419), - [sym_bitstring] = STATE(3419), - [sym_map] = STATE(3419), - [sym__nullary_operator] = STATE(3419), - [sym_unary_operator] = STATE(3419), - [sym_binary_operator] = STATE(3419), + [848] = { + [sym__expression] = STATE(1577), + [sym_block] = STATE(1577), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1577), + [sym_nil] = STATE(1577), + [sym__atom] = STATE(1577), + [sym_quoted_atom] = STATE(1577), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1577), + [sym_charlist] = STATE(1577), + [sym_sigil] = STATE(1577), + [sym_list] = STATE(1577), + [sym_tuple] = STATE(1577), + [sym_bitstring] = STATE(1577), + [sym_map] = STATE(1577), + [sym__nullary_operator] = STATE(1577), + [sym_unary_operator] = STATE(1577), + [sym_binary_operator] = STATE(1577), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3419), - [sym_call] = STATE(3419), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3419), - [sym_anonymous_function] = STATE(3419), + [sym_dot] = STATE(1577), + [sym_call] = STATE(1577), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1577), + [sym_anonymous_function] = STATE(1577), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2513), [sym_integer] = ACTIONS(2513), [sym_float] = ACTIONS(2513), @@ -134189,18 +133721,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134242,52 +133774,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [851] = { - [sym__expression] = STATE(3417), - [sym_block] = STATE(3417), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3417), - [sym_nil] = STATE(3417), - [sym__atom] = STATE(3417), - [sym_quoted_atom] = STATE(3417), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3417), - [sym_charlist] = STATE(3417), - [sym_sigil] = STATE(3417), - [sym_list] = STATE(3417), - [sym_tuple] = STATE(3417), - [sym_bitstring] = STATE(3417), - [sym_map] = STATE(3417), - [sym__nullary_operator] = STATE(3417), - [sym_unary_operator] = STATE(3417), - [sym_binary_operator] = STATE(3417), + [849] = { + [sym__expression] = STATE(1581), + [sym_block] = STATE(1581), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1581), + [sym_nil] = STATE(1581), + [sym__atom] = STATE(1581), + [sym_quoted_atom] = STATE(1581), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1581), + [sym_charlist] = STATE(1581), + [sym_sigil] = STATE(1581), + [sym_list] = STATE(1581), + [sym_tuple] = STATE(1581), + [sym_bitstring] = STATE(1581), + [sym_map] = STATE(1581), + [sym__nullary_operator] = STATE(1581), + [sym_unary_operator] = STATE(1581), + [sym_binary_operator] = STATE(1581), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3417), - [sym_call] = STATE(3417), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3417), - [sym_anonymous_function] = STATE(3417), + [sym_dot] = STATE(1581), + [sym_call] = STATE(1581), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1581), + [sym_anonymous_function] = STATE(1581), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2515), [sym_integer] = ACTIONS(2515), [sym_float] = ACTIONS(2515), @@ -134306,18 +133838,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134359,55 +133891,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [852] = { - [sym__expression] = STATE(3415), - [sym_block] = STATE(3415), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3415), - [sym_nil] = STATE(3415), - [sym__atom] = STATE(3415), - [sym_quoted_atom] = STATE(3415), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3415), - [sym_charlist] = STATE(3415), - [sym_sigil] = STATE(3415), - [sym_list] = STATE(3415), - [sym_tuple] = STATE(3415), - [sym_bitstring] = STATE(3415), - [sym_map] = STATE(3415), - [sym__nullary_operator] = STATE(3415), - [sym_unary_operator] = STATE(3415), - [sym_binary_operator] = STATE(3415), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3415), - [sym_call] = STATE(3415), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3415), - [sym_anonymous_function] = STATE(3415), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2517), - [sym_integer] = ACTIONS(2517), - [sym_float] = ACTIONS(2517), + [850] = { + [sym__expression] = STATE(1582), + [sym_block] = STATE(1582), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1582), + [sym_nil] = STATE(1582), + [sym__atom] = STATE(1582), + [sym_quoted_atom] = STATE(1582), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1582), + [sym_charlist] = STATE(1582), + [sym_sigil] = STATE(1582), + [sym_list] = STATE(1582), + [sym_tuple] = STATE(1582), + [sym_bitstring] = STATE(1582), + [sym_map] = STATE(1582), + [sym__nullary_operator] = STATE(1582), + [sym_unary_operator] = STATE(1582), + [sym_binary_operator] = STATE(1582), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1582), + [sym_call] = STATE(1582), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1582), + [sym_anonymous_function] = STATE(1582), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2517), + [sym_integer] = ACTIONS(2517), + [sym_float] = ACTIONS(2517), [sym_char] = ACTIONS(2517), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), @@ -134423,18 +133955,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134476,169 +134008,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [853] = { - [sym__expression] = STATE(4488), - [sym_block] = STATE(4488), - [sym_identifier] = STATE(57), - [sym_boolean] = STATE(4488), - [sym_nil] = STATE(4488), - [sym__atom] = STATE(4488), - [sym_quoted_atom] = STATE(4488), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(4488), - [sym_charlist] = STATE(4488), - [sym_sigil] = STATE(4488), - [sym_list] = STATE(4488), - [sym_tuple] = STATE(4488), - [sym_bitstring] = STATE(4488), - [sym_map] = STATE(4488), - [sym__nullary_operator] = STATE(4488), - [sym_unary_operator] = STATE(4488), - [sym_binary_operator] = STATE(4488), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(4488), - [sym_call] = STATE(4488), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(46), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(4488), - [sym_anonymous_function] = STATE(4488), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(686), - [sym_alias] = ACTIONS(1517), - [sym_integer] = ACTIONS(1517), - [sym_float] = ACTIONS(1517), - [sym_char] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1325), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1329), - [anon_sym_not] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1333), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), - }, - [854] = { - [sym__expression] = STATE(3413), - [sym_block] = STATE(3413), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3413), - [sym_nil] = STATE(3413), - [sym__atom] = STATE(3413), - [sym_quoted_atom] = STATE(3413), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3413), - [sym_charlist] = STATE(3413), - [sym_sigil] = STATE(3413), - [sym_list] = STATE(3413), - [sym_tuple] = STATE(3413), - [sym_bitstring] = STATE(3413), - [sym_map] = STATE(3413), - [sym__nullary_operator] = STATE(3413), - [sym_unary_operator] = STATE(3413), - [sym_binary_operator] = STATE(3413), + [851] = { + [sym__expression] = STATE(1583), + [sym_block] = STATE(1583), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1583), + [sym_nil] = STATE(1583), + [sym__atom] = STATE(1583), + [sym_quoted_atom] = STATE(1583), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1583), + [sym_charlist] = STATE(1583), + [sym_sigil] = STATE(1583), + [sym_list] = STATE(1583), + [sym_tuple] = STATE(1583), + [sym_bitstring] = STATE(1583), + [sym_map] = STATE(1583), + [sym__nullary_operator] = STATE(1583), + [sym_unary_operator] = STATE(1583), + [sym_binary_operator] = STATE(1583), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3413), - [sym_call] = STATE(3413), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3413), - [sym_anonymous_function] = STATE(3413), + [sym_dot] = STATE(1583), + [sym_call] = STATE(1583), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1583), + [sym_anonymous_function] = STATE(1583), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2519), [sym_integer] = ACTIONS(2519), [sym_float] = ACTIONS(2519), @@ -134657,18 +134072,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134710,52 +134125,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [855] = { - [sym__expression] = STATE(2919), - [sym_block] = STATE(2919), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2919), - [sym_nil] = STATE(2919), - [sym__atom] = STATE(2919), - [sym_quoted_atom] = STATE(2919), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2919), - [sym_charlist] = STATE(2919), - [sym_sigil] = STATE(2919), - [sym_list] = STATE(2919), - [sym_tuple] = STATE(2919), - [sym_bitstring] = STATE(2919), - [sym_map] = STATE(2919), - [sym__nullary_operator] = STATE(2919), - [sym_unary_operator] = STATE(2919), - [sym_binary_operator] = STATE(2919), + [852] = { + [sym__expression] = STATE(1585), + [sym_block] = STATE(1585), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1585), + [sym_nil] = STATE(1585), + [sym__atom] = STATE(1585), + [sym_quoted_atom] = STATE(1585), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1585), + [sym_charlist] = STATE(1585), + [sym_sigil] = STATE(1585), + [sym_list] = STATE(1585), + [sym_tuple] = STATE(1585), + [sym_bitstring] = STATE(1585), + [sym_map] = STATE(1585), + [sym__nullary_operator] = STATE(1585), + [sym_unary_operator] = STATE(1585), + [sym_binary_operator] = STATE(1585), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2919), - [sym_call] = STATE(2919), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2919), - [sym_anonymous_function] = STATE(2919), + [sym_dot] = STATE(1585), + [sym_call] = STATE(1585), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1585), + [sym_anonymous_function] = STATE(1585), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2521), [sym_integer] = ACTIONS(2521), [sym_float] = ACTIONS(2521), @@ -134774,18 +134189,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134827,82 +134242,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [856] = { - [sym__expression] = STATE(4379), - [sym_block] = STATE(4379), - [sym_identifier] = STATE(60), - [sym_boolean] = STATE(4379), - [sym_nil] = STATE(4379), - [sym__atom] = STATE(4379), - [sym_quoted_atom] = STATE(4379), - [sym__quoted_i_double] = STATE(4383), - [sym__quoted_i_single] = STATE(4381), - [sym__quoted_i_heredoc_single] = STATE(4380), - [sym__quoted_i_heredoc_double] = STATE(4377), - [sym_string] = STATE(4379), - [sym_charlist] = STATE(4379), - [sym_sigil] = STATE(4379), - [sym_list] = STATE(4379), - [sym_tuple] = STATE(4379), - [sym_bitstring] = STATE(4379), - [sym_map] = STATE(4379), - [sym__nullary_operator] = STATE(4379), - [sym_unary_operator] = STATE(4379), - [sym_binary_operator] = STATE(4379), - [sym_operator_identifier] = STATE(6916), - [sym_dot] = STATE(4379), - [sym_call] = STATE(4379), - [sym__call_without_parentheses] = STATE(4376), - [sym__call_with_parentheses] = STATE(4374), - [sym__local_call_without_parentheses] = STATE(4371), - [sym__local_call_with_parentheses] = STATE(2971), - [sym__local_call_just_do_block] = STATE(4365), - [sym__remote_call_without_parentheses] = STATE(4364), - [sym__remote_call_with_parentheses] = STATE(2973), - [sym__remote_dot] = STATE(50), - [sym__anonymous_call] = STATE(2976), - [sym__anonymous_dot] = STATE(6831), - [sym__double_call] = STATE(4339), - [sym_access_call] = STATE(4379), - [sym_anonymous_function] = STATE(4379), + [853] = { + [sym__expression] = STATE(4492), + [sym_block] = STATE(4492), + [sym_identifier] = STATE(57), + [sym_boolean] = STATE(4492), + [sym_nil] = STATE(4492), + [sym__atom] = STATE(4492), + [sym_quoted_atom] = STATE(4492), + [sym__quoted_i_double] = STATE(1936), + [sym__quoted_i_single] = STATE(1937), + [sym__quoted_i_heredoc_single] = STATE(1967), + [sym__quoted_i_heredoc_double] = STATE(1968), + [sym_string] = STATE(4492), + [sym_charlist] = STATE(4492), + [sym_sigil] = STATE(4492), + [sym_list] = STATE(4492), + [sym_tuple] = STATE(4492), + [sym_bitstring] = STATE(4492), + [sym_map] = STATE(4492), + [sym__nullary_operator] = STATE(4492), + [sym_unary_operator] = STATE(4492), + [sym_binary_operator] = STATE(4492), + [sym_operator_identifier] = STATE(6924), + [sym_dot] = STATE(4492), + [sym_call] = STATE(4492), + [sym__call_without_parentheses] = STATE(1969), + [sym__call_with_parentheses] = STATE(1970), + [sym__local_call_without_parentheses] = STATE(1971), + [sym__local_call_with_parentheses] = STATE(1418), + [sym__local_call_just_do_block] = STATE(1973), + [sym__remote_call_without_parentheses] = STATE(1974), + [sym__remote_call_with_parentheses] = STATE(1419), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1420), + [sym__anonymous_dot] = STATE(6809), + [sym__double_call] = STATE(1978), + [sym_access_call] = STATE(4492), + [sym_anonymous_function] = STATE(4492), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(13), - [aux_sym_identifier_token1] = ACTIONS(15), - [anon_sym_DOT_DOT_DOT] = ACTIONS(15), - [sym_alias] = ACTIONS(2523), - [sym_integer] = ACTIONS(2523), - [sym_float] = ACTIONS(2523), - [sym_char] = ACTIONS(2523), - [anon_sym_true] = ACTIONS(19), - [anon_sym_false] = ACTIONS(19), - [anon_sym_nil] = ACTIONS(21), - [sym_atom] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(23), - [anon_sym_SQUOTE] = ACTIONS(25), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(686), + [sym_alias] = ACTIONS(1517), + [sym_integer] = ACTIONS(1517), + [sym_float] = ACTIONS(1517), + [sym_char] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_nil] = ACTIONS(924), + [sym_atom] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(936), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(37), - [anon_sym_LT_LT] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(47), - [anon_sym_not] = ACTIONS(47), - [anon_sym_AT] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_DOT_DOT] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1363), + [anon_sym_not] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -134940,64 +134355,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(954), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(53), + [sym__before_unary_op] = ACTIONS(1367), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(958), }, - [857] = { - [sym__expression] = STATE(3412), - [sym_block] = STATE(3412), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3412), - [sym_nil] = STATE(3412), - [sym__atom] = STATE(3412), - [sym_quoted_atom] = STATE(3412), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3412), - [sym_charlist] = STATE(3412), - [sym_sigil] = STATE(3412), - [sym_list] = STATE(3412), - [sym_tuple] = STATE(3412), - [sym_bitstring] = STATE(3412), - [sym_map] = STATE(3412), - [sym__nullary_operator] = STATE(3412), - [sym_unary_operator] = STATE(3412), - [sym_binary_operator] = STATE(3412), + [854] = { + [sym__expression] = STATE(1588), + [sym_block] = STATE(1588), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1588), + [sym_nil] = STATE(1588), + [sym__atom] = STATE(1588), + [sym_quoted_atom] = STATE(1588), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1588), + [sym_charlist] = STATE(1588), + [sym_sigil] = STATE(1588), + [sym_list] = STATE(1588), + [sym_tuple] = STATE(1588), + [sym_bitstring] = STATE(1588), + [sym_map] = STATE(1588), + [sym__nullary_operator] = STATE(1588), + [sym_unary_operator] = STATE(1588), + [sym_binary_operator] = STATE(1588), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3412), - [sym_call] = STATE(3412), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3412), - [sym_anonymous_function] = STATE(3412), + [sym_dot] = STATE(1588), + [sym_call] = STATE(1588), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1588), + [sym_anonymous_function] = STATE(1588), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2525), - [sym_integer] = ACTIONS(2525), - [sym_float] = ACTIONS(2525), - [sym_char] = ACTIONS(2525), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2523), + [sym_integer] = ACTIONS(2523), + [sym_float] = ACTIONS(2523), + [sym_char] = ACTIONS(2523), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2525), + [sym_atom] = ACTIONS(2523), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -135008,18 +134423,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135061,60 +134476,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [858] = { - [sym__expression] = STATE(3411), - [sym_block] = STATE(3411), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3411), - [sym_nil] = STATE(3411), - [sym__atom] = STATE(3411), - [sym_quoted_atom] = STATE(3411), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3411), - [sym_charlist] = STATE(3411), - [sym_sigil] = STATE(3411), - [sym_list] = STATE(3411), - [sym_tuple] = STATE(3411), - [sym_bitstring] = STATE(3411), - [sym_map] = STATE(3411), - [sym__nullary_operator] = STATE(3411), - [sym_unary_operator] = STATE(3411), - [sym_binary_operator] = STATE(3411), + [855] = { + [sym__expression] = STATE(1589), + [sym_block] = STATE(1589), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1589), + [sym_nil] = STATE(1589), + [sym__atom] = STATE(1589), + [sym_quoted_atom] = STATE(1589), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1589), + [sym_charlist] = STATE(1589), + [sym_sigil] = STATE(1589), + [sym_list] = STATE(1589), + [sym_tuple] = STATE(1589), + [sym_bitstring] = STATE(1589), + [sym_map] = STATE(1589), + [sym__nullary_operator] = STATE(1589), + [sym_unary_operator] = STATE(1589), + [sym_binary_operator] = STATE(1589), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3411), - [sym_call] = STATE(3411), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3411), - [sym_anonymous_function] = STATE(3411), + [sym_dot] = STATE(1589), + [sym_call] = STATE(1589), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1589), + [sym_anonymous_function] = STATE(1589), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2527), - [sym_integer] = ACTIONS(2527), - [sym_float] = ACTIONS(2527), - [sym_char] = ACTIONS(2527), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2525), + [sym_integer] = ACTIONS(2525), + [sym_float] = ACTIONS(2525), + [sym_char] = ACTIONS(2525), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2527), + [sym_atom] = ACTIONS(2525), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -135125,18 +134540,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135178,60 +134593,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [859] = { - [sym__expression] = STATE(3410), - [sym_block] = STATE(3410), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3410), - [sym_nil] = STATE(3410), - [sym__atom] = STATE(3410), - [sym_quoted_atom] = STATE(3410), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3410), - [sym_charlist] = STATE(3410), - [sym_sigil] = STATE(3410), - [sym_list] = STATE(3410), - [sym_tuple] = STATE(3410), - [sym_bitstring] = STATE(3410), - [sym_map] = STATE(3410), - [sym__nullary_operator] = STATE(3410), - [sym_unary_operator] = STATE(3410), - [sym_binary_operator] = STATE(3410), + [856] = { + [sym__expression] = STATE(1590), + [sym_block] = STATE(1590), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1590), + [sym_nil] = STATE(1590), + [sym__atom] = STATE(1590), + [sym_quoted_atom] = STATE(1590), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1590), + [sym_charlist] = STATE(1590), + [sym_sigil] = STATE(1590), + [sym_list] = STATE(1590), + [sym_tuple] = STATE(1590), + [sym_bitstring] = STATE(1590), + [sym_map] = STATE(1590), + [sym__nullary_operator] = STATE(1590), + [sym_unary_operator] = STATE(1590), + [sym_binary_operator] = STATE(1590), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3410), - [sym_call] = STATE(3410), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3410), - [sym_anonymous_function] = STATE(3410), + [sym_dot] = STATE(1590), + [sym_call] = STATE(1590), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1590), + [sym_anonymous_function] = STATE(1590), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2529), - [sym_integer] = ACTIONS(2529), - [sym_float] = ACTIONS(2529), - [sym_char] = ACTIONS(2529), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2527), + [sym_integer] = ACTIONS(2527), + [sym_float] = ACTIONS(2527), + [sym_char] = ACTIONS(2527), [anon_sym_true] = ACTIONS(241), [anon_sym_false] = ACTIONS(241), [anon_sym_nil] = ACTIONS(243), - [sym_atom] = ACTIONS(2529), + [sym_atom] = ACTIONS(2527), [anon_sym_DQUOTE] = ACTIONS(245), [anon_sym_SQUOTE] = ACTIONS(247), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), @@ -135242,18 +134657,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135295,199 +134710,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [860] = { - [sym__expression] = STATE(3487), - [sym_block] = STATE(3487), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3487), - [sym_nil] = STATE(3487), - [sym__atom] = STATE(3487), - [sym_quoted_atom] = STATE(3487), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3487), - [sym_charlist] = STATE(3487), - [sym_sigil] = STATE(3487), - [sym_list] = STATE(3487), - [sym_tuple] = STATE(3487), - [sym_bitstring] = STATE(3487), - [sym_map] = STATE(3487), - [sym__nullary_operator] = STATE(3487), - [sym_unary_operator] = STATE(3487), - [sym_binary_operator] = STATE(3487), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3487), - [sym_call] = STATE(3487), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3487), - [sym_anonymous_function] = STATE(3487), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1829), - [sym_integer] = ACTIONS(1829), - [sym_float] = ACTIONS(1829), - [sym_char] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), - }, - [861] = { - [sym__expression] = STATE(3486), - [sym_block] = STATE(3486), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3486), - [sym_nil] = STATE(3486), - [sym__atom] = STATE(3486), - [sym_quoted_atom] = STATE(3486), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3486), - [sym_charlist] = STATE(3486), - [sym_sigil] = STATE(3486), - [sym_list] = STATE(3486), - [sym_tuple] = STATE(3486), - [sym_bitstring] = STATE(3486), - [sym_map] = STATE(3486), - [sym__nullary_operator] = STATE(3486), - [sym_unary_operator] = STATE(3486), - [sym_binary_operator] = STATE(3486), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3486), - [sym_call] = STATE(3486), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3486), - [sym_anonymous_function] = STATE(3486), + [857] = { + [sym__expression] = STATE(1591), + [sym_block] = STATE(1591), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1591), + [sym_nil] = STATE(1591), + [sym__atom] = STATE(1591), + [sym_quoted_atom] = STATE(1591), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1591), + [sym_charlist] = STATE(1591), + [sym_sigil] = STATE(1591), + [sym_list] = STATE(1591), + [sym_tuple] = STATE(1591), + [sym_bitstring] = STATE(1591), + [sym_map] = STATE(1591), + [sym__nullary_operator] = STATE(1591), + [sym_unary_operator] = STATE(1591), + [sym_binary_operator] = STATE(1591), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1591), + [sym_call] = STATE(1591), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1591), + [sym_anonymous_function] = STATE(1591), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1827), - [sym_integer] = ACTIONS(1827), - [sym_float] = ACTIONS(1827), - [sym_char] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(237), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2529), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2529), + [sym_char] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), + [sym_atom] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135525,56 +134823,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(281), }, - [862] = { - [sym__expression] = STATE(3170), - [sym_block] = STATE(3170), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3170), - [sym_nil] = STATE(3170), - [sym__atom] = STATE(3170), - [sym_quoted_atom] = STATE(3170), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3170), - [sym_charlist] = STATE(3170), - [sym_sigil] = STATE(3170), - [sym_list] = STATE(3170), - [sym_tuple] = STATE(3170), - [sym_bitstring] = STATE(3170), - [sym_map] = STATE(3170), - [sym__nullary_operator] = STATE(3170), - [sym_unary_operator] = STATE(3170), - [sym_binary_operator] = STATE(3170), + [858] = { + [sym__expression] = STATE(1592), + [sym_block] = STATE(1592), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1592), + [sym_nil] = STATE(1592), + [sym__atom] = STATE(1592), + [sym_quoted_atom] = STATE(1592), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1592), + [sym_charlist] = STATE(1592), + [sym_sigil] = STATE(1592), + [sym_list] = STATE(1592), + [sym_tuple] = STATE(1592), + [sym_bitstring] = STATE(1592), + [sym_map] = STATE(1592), + [sym__nullary_operator] = STATE(1592), + [sym_unary_operator] = STATE(1592), + [sym_binary_operator] = STATE(1592), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3170), - [sym_call] = STATE(3170), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3170), - [sym_anonymous_function] = STATE(3170), + [sym_dot] = STATE(1592), + [sym_call] = STATE(1592), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1592), + [sym_anonymous_function] = STATE(1592), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2531), [sym_integer] = ACTIONS(2531), [sym_float] = ACTIONS(2531), @@ -135593,18 +134891,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135646,52 +134944,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [863] = { - [sym__expression] = STATE(3409), - [sym_block] = STATE(3409), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3409), - [sym_nil] = STATE(3409), - [sym__atom] = STATE(3409), - [sym_quoted_atom] = STATE(3409), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3409), - [sym_charlist] = STATE(3409), - [sym_sigil] = STATE(3409), - [sym_list] = STATE(3409), - [sym_tuple] = STATE(3409), - [sym_bitstring] = STATE(3409), - [sym_map] = STATE(3409), - [sym__nullary_operator] = STATE(3409), - [sym_unary_operator] = STATE(3409), - [sym_binary_operator] = STATE(3409), + [859] = { + [sym__expression] = STATE(1593), + [sym_block] = STATE(1593), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1593), + [sym_nil] = STATE(1593), + [sym__atom] = STATE(1593), + [sym_quoted_atom] = STATE(1593), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1593), + [sym_charlist] = STATE(1593), + [sym_sigil] = STATE(1593), + [sym_list] = STATE(1593), + [sym_tuple] = STATE(1593), + [sym_bitstring] = STATE(1593), + [sym_map] = STATE(1593), + [sym__nullary_operator] = STATE(1593), + [sym_unary_operator] = STATE(1593), + [sym_binary_operator] = STATE(1593), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3409), - [sym_call] = STATE(3409), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3409), - [sym_anonymous_function] = STATE(3409), + [sym_dot] = STATE(1593), + [sym_call] = STATE(1593), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1593), + [sym_anonymous_function] = STATE(1593), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2533), [sym_integer] = ACTIONS(2533), [sym_float] = ACTIONS(2533), @@ -135710,18 +135008,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135763,52 +135061,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [864] = { - [sym__expression] = STATE(3408), - [sym_block] = STATE(3408), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(3408), - [sym_nil] = STATE(3408), - [sym__atom] = STATE(3408), - [sym_quoted_atom] = STATE(3408), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(3408), - [sym_charlist] = STATE(3408), - [sym_sigil] = STATE(3408), - [sym_list] = STATE(3408), - [sym_tuple] = STATE(3408), - [sym_bitstring] = STATE(3408), - [sym_map] = STATE(3408), - [sym__nullary_operator] = STATE(3408), - [sym_unary_operator] = STATE(3408), - [sym_binary_operator] = STATE(3408), + [860] = { + [sym__expression] = STATE(1570), + [sym_block] = STATE(1570), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1570), + [sym_nil] = STATE(1570), + [sym__atom] = STATE(1570), + [sym_quoted_atom] = STATE(1570), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1570), + [sym_charlist] = STATE(1570), + [sym_sigil] = STATE(1570), + [sym_list] = STATE(1570), + [sym_tuple] = STATE(1570), + [sym_bitstring] = STATE(1570), + [sym_map] = STATE(1570), + [sym__nullary_operator] = STATE(1570), + [sym_unary_operator] = STATE(1570), + [sym_binary_operator] = STATE(1570), [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(3408), - [sym_call] = STATE(3408), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(3408), - [sym_anonymous_function] = STATE(3408), + [sym_dot] = STATE(1570), + [sym_call] = STATE(1570), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1570), + [sym_anonymous_function] = STATE(1570), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2535), [sym_integer] = ACTIONS(2535), [sym_float] = ACTIONS(2535), @@ -135827,18 +135125,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(257), [anon_sym_LT_LT] = ACTIONS(261), [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135880,82 +135178,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(281), }, - [865] = { - [sym__expression] = STATE(1483), - [sym_block] = STATE(1483), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1483), - [sym_nil] = STATE(1483), - [sym__atom] = STATE(1483), - [sym_quoted_atom] = STATE(1483), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1483), - [sym_charlist] = STATE(1483), - [sym_sigil] = STATE(1483), - [sym_list] = STATE(1483), - [sym_tuple] = STATE(1483), - [sym_bitstring] = STATE(1483), - [sym_map] = STATE(1483), - [sym__nullary_operator] = STATE(1483), - [sym_unary_operator] = STATE(1483), - [sym_binary_operator] = STATE(1483), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1483), - [sym_call] = STATE(1483), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1483), - [sym_anonymous_function] = STATE(1483), + [861] = { + [sym__expression] = STATE(1572), + [sym_block] = STATE(1572), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1572), + [sym_nil] = STATE(1572), + [sym__atom] = STATE(1572), + [sym_quoted_atom] = STATE(1572), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1572), + [sym_charlist] = STATE(1572), + [sym_sigil] = STATE(1572), + [sym_list] = STATE(1572), + [sym_tuple] = STATE(1572), + [sym_bitstring] = STATE(1572), + [sym_map] = STATE(1572), + [sym__nullary_operator] = STATE(1572), + [sym_unary_operator] = STATE(1572), + [sym_binary_operator] = STATE(1572), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1572), + [sym_call] = STATE(1572), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1572), + [sym_anonymous_function] = STATE(1572), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2537), [sym_integer] = ACTIONS(2537), [sym_float] = ACTIONS(2537), [sym_char] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -135993,86 +135291,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(281), }, - [866] = { - [sym__expression] = STATE(1542), - [sym_block] = STATE(1542), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1542), - [sym_nil] = STATE(1542), - [sym__atom] = STATE(1542), - [sym_quoted_atom] = STATE(1542), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1542), - [sym_charlist] = STATE(1542), - [sym_sigil] = STATE(1542), - [sym_list] = STATE(1542), - [sym_tuple] = STATE(1542), - [sym_bitstring] = STATE(1542), - [sym_map] = STATE(1542), - [sym__nullary_operator] = STATE(1542), - [sym_unary_operator] = STATE(1542), - [sym_binary_operator] = STATE(1542), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1542), - [sym_call] = STATE(1542), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1542), - [sym_anonymous_function] = STATE(1542), + [862] = { + [sym__expression] = STATE(1789), + [sym_block] = STATE(1789), + [sym_identifier] = STATE(18), + [sym_boolean] = STATE(1789), + [sym_nil] = STATE(1789), + [sym__atom] = STATE(1789), + [sym_quoted_atom] = STATE(1789), + [sym__quoted_i_double] = STATE(1464), + [sym__quoted_i_single] = STATE(1463), + [sym__quoted_i_heredoc_single] = STATE(1460), + [sym__quoted_i_heredoc_double] = STATE(1349), + [sym_string] = STATE(1789), + [sym_charlist] = STATE(1789), + [sym_sigil] = STATE(1789), + [sym_list] = STATE(1789), + [sym_tuple] = STATE(1789), + [sym_bitstring] = STATE(1789), + [sym_map] = STATE(1789), + [sym__nullary_operator] = STATE(1789), + [sym_unary_operator] = STATE(1789), + [sym_binary_operator] = STATE(1789), + [sym_operator_identifier] = STATE(6959), + [sym_dot] = STATE(1789), + [sym_call] = STATE(1789), + [sym__call_without_parentheses] = STATE(1457), + [sym__call_with_parentheses] = STATE(1456), + [sym__local_call_without_parentheses] = STATE(1455), + [sym__local_call_with_parentheses] = STATE(1109), + [sym__local_call_just_do_block] = STATE(1453), + [sym__remote_call_without_parentheses] = STATE(1452), + [sym__remote_call_with_parentheses] = STATE(1108), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1107), + [sym__anonymous_dot] = STATE(6811), + [sym__double_call] = STATE(1449), + [sym_access_call] = STATE(1789), + [sym_anonymous_function] = STATE(1789), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(237), [aux_sym_identifier_token1] = ACTIONS(191), [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2539), [sym_integer] = ACTIONS(2539), [sym_float] = ACTIONS(2539), [sym_char] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(241), + [anon_sym_false] = ACTIONS(241), + [anon_sym_nil] = ACTIONS(243), [sym_atom] = ACTIONS(2539), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(245), + [anon_sym_SQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(255), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_not] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(269), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136110,86 +135408,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(273), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(279), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(281), }, - [867] = { - [sym__expression] = STATE(1543), - [sym_block] = STATE(1543), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1543), - [sym_nil] = STATE(1543), - [sym__atom] = STATE(1543), - [sym_quoted_atom] = STATE(1543), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1543), - [sym_charlist] = STATE(1543), - [sym_sigil] = STATE(1543), - [sym_list] = STATE(1543), - [sym_tuple] = STATE(1543), - [sym_bitstring] = STATE(1543), - [sym_map] = STATE(1543), - [sym__nullary_operator] = STATE(1543), - [sym_unary_operator] = STATE(1543), - [sym_binary_operator] = STATE(1543), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1543), - [sym_call] = STATE(1543), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1543), - [sym_anonymous_function] = STATE(1543), + [863] = { + [sym__expression] = STATE(3963), + [sym_block] = STATE(3963), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3963), + [sym_nil] = STATE(3963), + [sym__atom] = STATE(3963), + [sym_quoted_atom] = STATE(3963), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3963), + [sym_charlist] = STATE(3963), + [sym_sigil] = STATE(3963), + [sym_list] = STATE(3963), + [sym_tuple] = STATE(3963), + [sym_bitstring] = STATE(3963), + [sym_map] = STATE(3963), + [sym__nullary_operator] = STATE(3963), + [sym_unary_operator] = STATE(3963), + [sym_binary_operator] = STATE(3963), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3963), + [sym_call] = STATE(3963), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3963), + [sym_anonymous_function] = STATE(3963), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2541), [sym_integer] = ACTIONS(2541), [sym_float] = ACTIONS(2541), [sym_char] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136227,86 +135525,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [868] = { - [sym__expression] = STATE(1547), - [sym_block] = STATE(1547), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1547), - [sym_nil] = STATE(1547), - [sym__atom] = STATE(1547), - [sym_quoted_atom] = STATE(1547), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1547), - [sym_charlist] = STATE(1547), - [sym_sigil] = STATE(1547), - [sym_list] = STATE(1547), - [sym_tuple] = STATE(1547), - [sym_bitstring] = STATE(1547), - [sym_map] = STATE(1547), - [sym__nullary_operator] = STATE(1547), - [sym_unary_operator] = STATE(1547), - [sym_binary_operator] = STATE(1547), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1547), - [sym_call] = STATE(1547), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1547), - [sym_anonymous_function] = STATE(1547), + [864] = { + [sym__expression] = STATE(3964), + [sym_block] = STATE(3964), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3964), + [sym_nil] = STATE(3964), + [sym__atom] = STATE(3964), + [sym_quoted_atom] = STATE(3964), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3964), + [sym_charlist] = STATE(3964), + [sym_sigil] = STATE(3964), + [sym_list] = STATE(3964), + [sym_tuple] = STATE(3964), + [sym_bitstring] = STATE(3964), + [sym_map] = STATE(3964), + [sym__nullary_operator] = STATE(3964), + [sym_unary_operator] = STATE(3964), + [sym_binary_operator] = STATE(3964), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3964), + [sym_call] = STATE(3964), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3964), + [sym_anonymous_function] = STATE(3964), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2543), [sym_integer] = ACTIONS(2543), [sym_float] = ACTIONS(2543), [sym_char] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2543), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136344,86 +135642,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [869] = { - [sym__expression] = STATE(1548), - [sym_block] = STATE(1548), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1548), - [sym_nil] = STATE(1548), - [sym__atom] = STATE(1548), - [sym_quoted_atom] = STATE(1548), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1548), - [sym_charlist] = STATE(1548), - [sym_sigil] = STATE(1548), - [sym_list] = STATE(1548), - [sym_tuple] = STATE(1548), - [sym_bitstring] = STATE(1548), - [sym_map] = STATE(1548), - [sym__nullary_operator] = STATE(1548), - [sym_unary_operator] = STATE(1548), - [sym_binary_operator] = STATE(1548), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1548), - [sym_call] = STATE(1548), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1548), - [sym_anonymous_function] = STATE(1548), + [865] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym__atom] = STATE(3967), + [sym_quoted_atom] = STATE(3967), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym__nullary_operator] = STATE(3967), + [sym_unary_operator] = STATE(3967), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3967), + [sym_call] = STATE(3967), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2545), [sym_integer] = ACTIONS(2545), [sym_float] = ACTIONS(2545), [sym_char] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136461,86 +135759,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [870] = { - [sym__expression] = STATE(1549), - [sym_block] = STATE(1549), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1549), - [sym_nil] = STATE(1549), - [sym__atom] = STATE(1549), - [sym_quoted_atom] = STATE(1549), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1549), - [sym_charlist] = STATE(1549), - [sym_sigil] = STATE(1549), - [sym_list] = STATE(1549), - [sym_tuple] = STATE(1549), - [sym_bitstring] = STATE(1549), - [sym_map] = STATE(1549), - [sym__nullary_operator] = STATE(1549), - [sym_unary_operator] = STATE(1549), - [sym_binary_operator] = STATE(1549), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1549), - [sym_call] = STATE(1549), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1549), - [sym_anonymous_function] = STATE(1549), + [866] = { + [sym__expression] = STATE(3968), + [sym_block] = STATE(3968), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3968), + [sym_nil] = STATE(3968), + [sym__atom] = STATE(3968), + [sym_quoted_atom] = STATE(3968), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3968), + [sym_charlist] = STATE(3968), + [sym_sigil] = STATE(3968), + [sym_list] = STATE(3968), + [sym_tuple] = STATE(3968), + [sym_bitstring] = STATE(3968), + [sym_map] = STATE(3968), + [sym__nullary_operator] = STATE(3968), + [sym_unary_operator] = STATE(3968), + [sym_binary_operator] = STATE(3968), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3968), + [sym_call] = STATE(3968), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3968), + [sym_anonymous_function] = STATE(3968), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2547), [sym_integer] = ACTIONS(2547), [sym_float] = ACTIONS(2547), [sym_char] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136578,86 +135876,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [871] = { - [sym__expression] = STATE(1551), - [sym_block] = STATE(1551), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1551), - [sym_nil] = STATE(1551), - [sym__atom] = STATE(1551), - [sym_quoted_atom] = STATE(1551), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1551), - [sym_charlist] = STATE(1551), - [sym_sigil] = STATE(1551), - [sym_list] = STATE(1551), - [sym_tuple] = STATE(1551), - [sym_bitstring] = STATE(1551), - [sym_map] = STATE(1551), - [sym__nullary_operator] = STATE(1551), - [sym_unary_operator] = STATE(1551), - [sym_binary_operator] = STATE(1551), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1551), - [sym_call] = STATE(1551), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1551), - [sym_anonymous_function] = STATE(1551), + [867] = { + [sym__expression] = STATE(3997), + [sym_block] = STATE(3997), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3997), + [sym_nil] = STATE(3997), + [sym__atom] = STATE(3997), + [sym_quoted_atom] = STATE(3997), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3997), + [sym_charlist] = STATE(3997), + [sym_sigil] = STATE(3997), + [sym_list] = STATE(3997), + [sym_tuple] = STATE(3997), + [sym_bitstring] = STATE(3997), + [sym_map] = STATE(3997), + [sym__nullary_operator] = STATE(3997), + [sym_unary_operator] = STATE(3997), + [sym_binary_operator] = STATE(3997), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3997), + [sym_call] = STATE(3997), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3997), + [sym_anonymous_function] = STATE(3997), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2549), [sym_integer] = ACTIONS(2549), [sym_float] = ACTIONS(2549), [sym_char] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136695,86 +135993,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [872] = { - [sym__expression] = STATE(1552), - [sym_block] = STATE(1552), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1552), - [sym_nil] = STATE(1552), - [sym__atom] = STATE(1552), - [sym_quoted_atom] = STATE(1552), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1552), - [sym_charlist] = STATE(1552), - [sym_sigil] = STATE(1552), - [sym_list] = STATE(1552), - [sym_tuple] = STATE(1552), - [sym_bitstring] = STATE(1552), - [sym_map] = STATE(1552), - [sym__nullary_operator] = STATE(1552), - [sym_unary_operator] = STATE(1552), - [sym_binary_operator] = STATE(1552), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1552), - [sym_call] = STATE(1552), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1552), - [sym_anonymous_function] = STATE(1552), + [868] = { + [sym__expression] = STATE(3998), + [sym_block] = STATE(3998), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3998), + [sym_nil] = STATE(3998), + [sym__atom] = STATE(3998), + [sym_quoted_atom] = STATE(3998), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(3998), + [sym_charlist] = STATE(3998), + [sym_sigil] = STATE(3998), + [sym_list] = STATE(3998), + [sym_tuple] = STATE(3998), + [sym_bitstring] = STATE(3998), + [sym_map] = STATE(3998), + [sym__nullary_operator] = STATE(3998), + [sym_unary_operator] = STATE(3998), + [sym_binary_operator] = STATE(3998), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(3998), + [sym_call] = STATE(3998), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(3998), + [sym_anonymous_function] = STATE(3998), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2551), [sym_integer] = ACTIONS(2551), [sym_float] = ACTIONS(2551), [sym_char] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136812,86 +136110,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [873] = { - [sym__expression] = STATE(1553), - [sym_block] = STATE(1553), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1553), - [sym_nil] = STATE(1553), - [sym__atom] = STATE(1553), - [sym_quoted_atom] = STATE(1553), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1553), - [sym_charlist] = STATE(1553), - [sym_sigil] = STATE(1553), - [sym_list] = STATE(1553), - [sym_tuple] = STATE(1553), - [sym_bitstring] = STATE(1553), - [sym_map] = STATE(1553), - [sym__nullary_operator] = STATE(1553), - [sym_unary_operator] = STATE(1553), - [sym_binary_operator] = STATE(1553), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1553), - [sym_call] = STATE(1553), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1553), - [sym_anonymous_function] = STATE(1553), + [869] = { + [sym__expression] = STATE(4023), + [sym_block] = STATE(4023), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(4023), + [sym_nil] = STATE(4023), + [sym__atom] = STATE(4023), + [sym_quoted_atom] = STATE(4023), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(4023), + [sym_charlist] = STATE(4023), + [sym_sigil] = STATE(4023), + [sym_list] = STATE(4023), + [sym_tuple] = STATE(4023), + [sym_bitstring] = STATE(4023), + [sym_map] = STATE(4023), + [sym__nullary_operator] = STATE(4023), + [sym_unary_operator] = STATE(4023), + [sym_binary_operator] = STATE(4023), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(4023), + [sym_call] = STATE(4023), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(4023), + [sym_anonymous_function] = STATE(4023), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2553), [sym_integer] = ACTIONS(2553), [sym_float] = ACTIONS(2553), [sym_char] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -136929,86 +136227,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(628), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(632), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(634), }, - [874] = { - [sym__expression] = STATE(1554), - [sym_block] = STATE(1554), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1554), - [sym_nil] = STATE(1554), - [sym__atom] = STATE(1554), - [sym_quoted_atom] = STATE(1554), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1554), - [sym_charlist] = STATE(1554), - [sym_sigil] = STATE(1554), - [sym_list] = STATE(1554), - [sym_tuple] = STATE(1554), - [sym_bitstring] = STATE(1554), - [sym_map] = STATE(1554), - [sym__nullary_operator] = STATE(1554), - [sym_unary_operator] = STATE(1554), - [sym_binary_operator] = STATE(1554), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1554), - [sym_call] = STATE(1554), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1554), - [sym_anonymous_function] = STATE(1554), + [870] = { + [sym__expression] = STATE(4024), + [sym_block] = STATE(4024), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(4024), + [sym_nil] = STATE(4024), + [sym__atom] = STATE(4024), + [sym_quoted_atom] = STATE(4024), + [sym__quoted_i_double] = STATE(4011), + [sym__quoted_i_single] = STATE(4014), + [sym__quoted_i_heredoc_single] = STATE(4015), + [sym__quoted_i_heredoc_double] = STATE(4016), + [sym_string] = STATE(4024), + [sym_charlist] = STATE(4024), + [sym_sigil] = STATE(4024), + [sym_list] = STATE(4024), + [sym_tuple] = STATE(4024), + [sym_bitstring] = STATE(4024), + [sym_map] = STATE(4024), + [sym__nullary_operator] = STATE(4024), + [sym_unary_operator] = STATE(4024), + [sym_binary_operator] = STATE(4024), + [sym_operator_identifier] = STATE(6945), + [sym_dot] = STATE(4024), + [sym_call] = STATE(4024), + [sym__call_without_parentheses] = STATE(4020), + [sym__call_with_parentheses] = STATE(4027), + [sym__local_call_without_parentheses] = STATE(4035), + [sym__local_call_with_parentheses] = STATE(2691), + [sym__local_call_just_do_block] = STATE(4044), + [sym__remote_call_without_parentheses] = STATE(4046), + [sym__remote_call_with_parentheses] = STATE(2694), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2696), + [sym__anonymous_dot] = STATE(6849), + [sym__double_call] = STATE(4047), + [sym_access_call] = STATE(4024), + [sym_anonymous_function] = STATE(4024), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(592), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2555), [sym_integer] = ACTIONS(2555), [sym_float] = ACTIONS(2555), [sym_char] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [anon_sym_nil] = ACTIONS(600), [sym_atom] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_SQUOTE] = ACTIONS(604), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(606), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(624), + [anon_sym_CARET] = ACTIONS(624), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(624), + [anon_sym_not] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(626), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(628), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(632), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(634), + }, + [871] = { + [sym__expression] = STATE(2234), + [sym_block] = STATE(2234), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2234), + [sym_nil] = STATE(2234), + [sym__atom] = STATE(2234), + [sym_quoted_atom] = STATE(2234), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2234), + [sym_charlist] = STATE(2234), + [sym_sigil] = STATE(2234), + [sym_list] = STATE(2234), + [sym_tuple] = STATE(2234), + [sym_bitstring] = STATE(2234), + [sym_map] = STATE(2234), + [sym__nullary_operator] = STATE(2234), + [sym_unary_operator] = STATE(2234), + [sym_binary_operator] = STATE(2234), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2234), + [sym_call] = STATE(2234), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2234), + [sym_anonymous_function] = STATE(2234), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2061), + [sym_integer] = ACTIONS(2061), + [sym_float] = ACTIONS(2061), + [sym_char] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137046,86 +136461,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [875] = { - [sym__expression] = STATE(1556), - [sym_block] = STATE(1556), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1556), - [sym_nil] = STATE(1556), - [sym__atom] = STATE(1556), - [sym_quoted_atom] = STATE(1556), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1556), - [sym_charlist] = STATE(1556), - [sym_sigil] = STATE(1556), - [sym_list] = STATE(1556), - [sym_tuple] = STATE(1556), - [sym_bitstring] = STATE(1556), - [sym_map] = STATE(1556), - [sym__nullary_operator] = STATE(1556), - [sym_unary_operator] = STATE(1556), - [sym_binary_operator] = STATE(1556), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1556), - [sym_call] = STATE(1556), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1556), - [sym_anonymous_function] = STATE(1556), + [872] = { + [sym__expression] = STATE(2564), + [sym_block] = STATE(2564), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2564), + [sym_nil] = STATE(2564), + [sym__atom] = STATE(2564), + [sym_quoted_atom] = STATE(2564), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2564), + [sym_charlist] = STATE(2564), + [sym_sigil] = STATE(2564), + [sym_list] = STATE(2564), + [sym_tuple] = STATE(2564), + [sym_bitstring] = STATE(2564), + [sym_map] = STATE(2564), + [sym__nullary_operator] = STATE(2564), + [sym_unary_operator] = STATE(2564), + [sym_binary_operator] = STATE(2564), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2564), + [sym_call] = STATE(2564), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2564), + [sym_anonymous_function] = STATE(2564), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2557), [sym_integer] = ACTIONS(2557), [sym_float] = ACTIONS(2557), [sym_char] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137163,86 +136578,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [876] = { - [sym__expression] = STATE(1557), - [sym_block] = STATE(1557), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1557), - [sym_nil] = STATE(1557), - [sym__atom] = STATE(1557), - [sym_quoted_atom] = STATE(1557), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1557), - [sym_charlist] = STATE(1557), - [sym_sigil] = STATE(1557), - [sym_list] = STATE(1557), - [sym_tuple] = STATE(1557), - [sym_bitstring] = STATE(1557), - [sym_map] = STATE(1557), - [sym__nullary_operator] = STATE(1557), - [sym_unary_operator] = STATE(1557), - [sym_binary_operator] = STATE(1557), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1557), - [sym_call] = STATE(1557), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1557), - [sym_anonymous_function] = STATE(1557), + [873] = { + [sym__expression] = STATE(2563), + [sym_block] = STATE(2563), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2563), + [sym_nil] = STATE(2563), + [sym__atom] = STATE(2563), + [sym_quoted_atom] = STATE(2563), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2563), + [sym_charlist] = STATE(2563), + [sym_sigil] = STATE(2563), + [sym_list] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_bitstring] = STATE(2563), + [sym_map] = STATE(2563), + [sym__nullary_operator] = STATE(2563), + [sym_unary_operator] = STATE(2563), + [sym_binary_operator] = STATE(2563), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2563), + [sym_call] = STATE(2563), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2563), + [sym_anonymous_function] = STATE(2563), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2559), [sym_integer] = ACTIONS(2559), [sym_float] = ACTIONS(2559), [sym_char] = ACTIONS(2559), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137280,86 +136695,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [877] = { - [sym__expression] = STATE(1558), - [sym_block] = STATE(1558), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1558), - [sym_nil] = STATE(1558), - [sym__atom] = STATE(1558), - [sym_quoted_atom] = STATE(1558), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1558), - [sym_charlist] = STATE(1558), - [sym_sigil] = STATE(1558), - [sym_list] = STATE(1558), - [sym_tuple] = STATE(1558), - [sym_bitstring] = STATE(1558), - [sym_map] = STATE(1558), - [sym__nullary_operator] = STATE(1558), - [sym_unary_operator] = STATE(1558), - [sym_binary_operator] = STATE(1558), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1558), - [sym_call] = STATE(1558), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1558), - [sym_anonymous_function] = STATE(1558), + [874] = { + [sym__expression] = STATE(2562), + [sym_block] = STATE(2562), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2562), + [sym_nil] = STATE(2562), + [sym__atom] = STATE(2562), + [sym_quoted_atom] = STATE(2562), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2562), + [sym_charlist] = STATE(2562), + [sym_sigil] = STATE(2562), + [sym_list] = STATE(2562), + [sym_tuple] = STATE(2562), + [sym_bitstring] = STATE(2562), + [sym_map] = STATE(2562), + [sym__nullary_operator] = STATE(2562), + [sym_unary_operator] = STATE(2562), + [sym_binary_operator] = STATE(2562), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2562), + [sym_call] = STATE(2562), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2562), + [sym_anonymous_function] = STATE(2562), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2561), [sym_integer] = ACTIONS(2561), [sym_float] = ACTIONS(2561), [sym_char] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137397,86 +136812,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [878] = { - [sym__expression] = STATE(1559), - [sym_block] = STATE(1559), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1559), - [sym_nil] = STATE(1559), - [sym__atom] = STATE(1559), - [sym_quoted_atom] = STATE(1559), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1559), - [sym_charlist] = STATE(1559), - [sym_sigil] = STATE(1559), - [sym_list] = STATE(1559), - [sym_tuple] = STATE(1559), - [sym_bitstring] = STATE(1559), - [sym_map] = STATE(1559), - [sym__nullary_operator] = STATE(1559), - [sym_unary_operator] = STATE(1559), - [sym_binary_operator] = STATE(1559), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1559), - [sym_call] = STATE(1559), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1559), - [sym_anonymous_function] = STATE(1559), + [875] = { + [sym__expression] = STATE(2561), + [sym_block] = STATE(2561), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2561), + [sym_nil] = STATE(2561), + [sym__atom] = STATE(2561), + [sym_quoted_atom] = STATE(2561), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2561), + [sym_charlist] = STATE(2561), + [sym_sigil] = STATE(2561), + [sym_list] = STATE(2561), + [sym_tuple] = STATE(2561), + [sym_bitstring] = STATE(2561), + [sym_map] = STATE(2561), + [sym__nullary_operator] = STATE(2561), + [sym_unary_operator] = STATE(2561), + [sym_binary_operator] = STATE(2561), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2561), + [sym_call] = STATE(2561), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2561), + [sym_anonymous_function] = STATE(2561), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2563), [sym_integer] = ACTIONS(2563), [sym_float] = ACTIONS(2563), [sym_char] = ACTIONS(2563), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2563), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137514,86 +136929,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [879] = { - [sym__expression] = STATE(1561), - [sym_block] = STATE(1561), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1561), - [sym_nil] = STATE(1561), - [sym__atom] = STATE(1561), - [sym_quoted_atom] = STATE(1561), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1561), - [sym_charlist] = STATE(1561), - [sym_sigil] = STATE(1561), - [sym_list] = STATE(1561), - [sym_tuple] = STATE(1561), - [sym_bitstring] = STATE(1561), - [sym_map] = STATE(1561), - [sym__nullary_operator] = STATE(1561), - [sym_unary_operator] = STATE(1561), - [sym_binary_operator] = STATE(1561), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1561), - [sym_call] = STATE(1561), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1561), - [sym_anonymous_function] = STATE(1561), + [876] = { + [sym__expression] = STATE(2560), + [sym_block] = STATE(2560), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2560), + [sym_nil] = STATE(2560), + [sym__atom] = STATE(2560), + [sym_quoted_atom] = STATE(2560), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2560), + [sym_charlist] = STATE(2560), + [sym_sigil] = STATE(2560), + [sym_list] = STATE(2560), + [sym_tuple] = STATE(2560), + [sym_bitstring] = STATE(2560), + [sym_map] = STATE(2560), + [sym__nullary_operator] = STATE(2560), + [sym_unary_operator] = STATE(2560), + [sym_binary_operator] = STATE(2560), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2560), + [sym_call] = STATE(2560), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2560), + [sym_anonymous_function] = STATE(2560), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2565), [sym_integer] = ACTIONS(2565), [sym_float] = ACTIONS(2565), [sym_char] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137631,86 +137046,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [880] = { - [sym__expression] = STATE(1562), - [sym_block] = STATE(1562), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1562), - [sym_nil] = STATE(1562), - [sym__atom] = STATE(1562), - [sym_quoted_atom] = STATE(1562), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1562), - [sym_charlist] = STATE(1562), - [sym_sigil] = STATE(1562), - [sym_list] = STATE(1562), - [sym_tuple] = STATE(1562), - [sym_bitstring] = STATE(1562), - [sym_map] = STATE(1562), - [sym__nullary_operator] = STATE(1562), - [sym_unary_operator] = STATE(1562), - [sym_binary_operator] = STATE(1562), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1562), - [sym_call] = STATE(1562), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1562), - [sym_anonymous_function] = STATE(1562), + [877] = { + [sym__expression] = STATE(2559), + [sym_block] = STATE(2559), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2559), + [sym_nil] = STATE(2559), + [sym__atom] = STATE(2559), + [sym_quoted_atom] = STATE(2559), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2559), + [sym_charlist] = STATE(2559), + [sym_sigil] = STATE(2559), + [sym_list] = STATE(2559), + [sym_tuple] = STATE(2559), + [sym_bitstring] = STATE(2559), + [sym_map] = STATE(2559), + [sym__nullary_operator] = STATE(2559), + [sym_unary_operator] = STATE(2559), + [sym_binary_operator] = STATE(2559), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2559), + [sym_call] = STATE(2559), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2559), + [sym_anonymous_function] = STATE(2559), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2567), [sym_integer] = ACTIONS(2567), [sym_float] = ACTIONS(2567), [sym_char] = ACTIONS(2567), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2567), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137748,86 +137163,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [881] = { - [sym__expression] = STATE(1228), - [sym_block] = STATE(1228), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1228), - [sym_nil] = STATE(1228), - [sym__atom] = STATE(1228), - [sym_quoted_atom] = STATE(1228), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1228), - [sym_charlist] = STATE(1228), - [sym_sigil] = STATE(1228), - [sym_list] = STATE(1228), - [sym_tuple] = STATE(1228), - [sym_bitstring] = STATE(1228), - [sym_map] = STATE(1228), - [sym__nullary_operator] = STATE(1228), - [sym_unary_operator] = STATE(1228), - [sym_binary_operator] = STATE(1228), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1228), - [sym_call] = STATE(1228), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1228), - [sym_anonymous_function] = STATE(1228), + [878] = { + [sym__expression] = STATE(3193), + [sym_block] = STATE(3193), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3193), + [sym_nil] = STATE(3193), + [sym__atom] = STATE(3193), + [sym_quoted_atom] = STATE(3193), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3193), + [sym_charlist] = STATE(3193), + [sym_sigil] = STATE(3193), + [sym_list] = STATE(3193), + [sym_tuple] = STATE(3193), + [sym_bitstring] = STATE(3193), + [sym_map] = STATE(3193), + [sym__nullary_operator] = STATE(3193), + [sym_unary_operator] = STATE(3193), + [sym_binary_operator] = STATE(3193), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3193), + [sym_call] = STATE(3193), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3193), + [sym_anonymous_function] = STATE(3193), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2027), - [sym_integer] = ACTIONS(2027), - [sym_float] = ACTIONS(2027), - [sym_char] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2027), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2119), + [sym_char] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -137865,203 +137280,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [882] = { - [sym__expression] = STATE(1482), - [sym_block] = STATE(1482), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1482), - [sym_nil] = STATE(1482), - [sym__atom] = STATE(1482), - [sym_quoted_atom] = STATE(1482), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1482), - [sym_charlist] = STATE(1482), - [sym_sigil] = STATE(1482), - [sym_list] = STATE(1482), - [sym_tuple] = STATE(1482), - [sym_bitstring] = STATE(1482), - [sym_map] = STATE(1482), - [sym__nullary_operator] = STATE(1482), - [sym_unary_operator] = STATE(1482), - [sym_binary_operator] = STATE(1482), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1482), - [sym_call] = STATE(1482), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1482), - [sym_anonymous_function] = STATE(1482), + [879] = { + [sym__expression] = STATE(2558), + [sym_block] = STATE(2558), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2558), + [sym_nil] = STATE(2558), + [sym__atom] = STATE(2558), + [sym_quoted_atom] = STATE(2558), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2558), + [sym_charlist] = STATE(2558), + [sym_sigil] = STATE(2558), + [sym_list] = STATE(2558), + [sym_tuple] = STATE(2558), + [sym_bitstring] = STATE(2558), + [sym_map] = STATE(2558), + [sym__nullary_operator] = STATE(2558), + [sym_unary_operator] = STATE(2558), + [sym_binary_operator] = STATE(2558), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2558), + [sym_call] = STATE(2558), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2558), + [sym_anonymous_function] = STATE(2558), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2569), [sym_integer] = ACTIONS(2569), [sym_float] = ACTIONS(2569), [sym_char] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), [sym_atom] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), - [anon_sym_LT_DASH] = ACTIONS(35), - [anon_sym_BSLASH_BSLASH] = ACTIONS(35), - [anon_sym_when] = ACTIONS(35), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_EQ] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), - [anon_sym_or] = ACTIONS(35), - [anon_sym_AMP_AMP] = ACTIONS(35), - [anon_sym_AMP_AMP_AMP] = ACTIONS(35), - [anon_sym_and] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_EQ_TILDE] = ACTIONS(35), - [anon_sym_EQ_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ_EQ] = ACTIONS(35), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_PIPE_GT] = ACTIONS(35), - [anon_sym_LT_LT_LT] = ACTIONS(35), - [anon_sym_GT_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT_GT] = ACTIONS(35), - [anon_sym_LT_TILDE] = ACTIONS(35), - [anon_sym_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_TILDE_GT] = ACTIONS(35), - [anon_sym_LT_PIPE_GT] = ACTIONS(35), - [anon_sym_in] = ACTIONS(35), - [anon_sym_CARET_CARET_CARET] = ACTIONS(35), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH] = ACTIONS(35), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), - [anon_sym_DASH_DASH_DASH] = ACTIONS(35), - [anon_sym_LT_GT] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), - [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), - }, - [883] = { - [sym__expression] = STATE(1178), - [sym_block] = STATE(1178), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1178), - [sym_nil] = STATE(1178), - [sym__atom] = STATE(1178), - [sym_quoted_atom] = STATE(1178), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1178), - [sym_charlist] = STATE(1178), - [sym_sigil] = STATE(1178), - [sym_list] = STATE(1178), - [sym_tuple] = STATE(1178), - [sym_bitstring] = STATE(1178), - [sym_map] = STATE(1178), - [sym__nullary_operator] = STATE(1178), - [sym_unary_operator] = STATE(1178), - [sym_binary_operator] = STATE(1178), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1178), - [sym_call] = STATE(1178), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1178), - [sym_anonymous_function] = STATE(1178), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2019), - [sym_integer] = ACTIONS(2019), - [sym_float] = ACTIONS(2019), - [sym_char] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), - [sym_atom] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138099,86 +137397,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(407), }, - [884] = { - [sym__expression] = STATE(1481), - [sym_block] = STATE(1481), - [sym_identifier] = STATE(17), - [sym_boolean] = STATE(1481), - [sym_nil] = STATE(1481), - [sym__atom] = STATE(1481), - [sym_quoted_atom] = STATE(1481), - [sym__quoted_i_double] = STATE(1198), - [sym__quoted_i_single] = STATE(1197), - [sym__quoted_i_heredoc_single] = STATE(1191), - [sym__quoted_i_heredoc_double] = STATE(1186), - [sym_string] = STATE(1481), - [sym_charlist] = STATE(1481), - [sym_sigil] = STATE(1481), - [sym_list] = STATE(1481), - [sym_tuple] = STATE(1481), - [sym_bitstring] = STATE(1481), - [sym_map] = STATE(1481), - [sym__nullary_operator] = STATE(1481), - [sym_unary_operator] = STATE(1481), - [sym_binary_operator] = STATE(1481), - [sym_operator_identifier] = STATE(6931), - [sym_dot] = STATE(1481), - [sym_call] = STATE(1481), - [sym__call_without_parentheses] = STATE(1149), - [sym__call_with_parentheses] = STATE(1150), - [sym__local_call_without_parentheses] = STATE(1151), - [sym__local_call_with_parentheses] = STATE(1084), - [sym__local_call_just_do_block] = STATE(1152), - [sym__remote_call_without_parentheses] = STATE(1153), - [sym__remote_call_with_parentheses] = STATE(1087), - [sym__remote_dot] = STATE(14), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(6764), - [sym__double_call] = STATE(1154), - [sym_access_call] = STATE(1481), - [sym_anonymous_function] = STATE(1481), + [880] = { + [sym__expression] = STATE(3976), + [sym_block] = STATE(3976), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3976), + [sym_nil] = STATE(3976), + [sym__atom] = STATE(3976), + [sym_quoted_atom] = STATE(3976), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3976), + [sym_charlist] = STATE(3976), + [sym_sigil] = STATE(3976), + [sym_list] = STATE(3976), + [sym_tuple] = STATE(3976), + [sym_bitstring] = STATE(3976), + [sym_map] = STATE(3976), + [sym__nullary_operator] = STATE(3976), + [sym_unary_operator] = STATE(3976), + [sym_binary_operator] = STATE(3976), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3976), + [sym_call] = STATE(3976), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3976), + [sym_anonymous_function] = STATE(3976), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(189), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2571), [sym_integer] = ACTIONS(2571), [sym_float] = ACTIONS(2571), [sym_char] = ACTIONS(2571), - [anon_sym_true] = ACTIONS(195), - [anon_sym_false] = ACTIONS(195), - [anon_sym_nil] = ACTIONS(197), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2571), - [anon_sym_DQUOTE] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(201), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(203), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LBRACK] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(211), - [anon_sym_LT_LT] = ACTIONS(215), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_DOT_DOT] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_BANG] = ACTIONS(221), - [anon_sym_CARET] = ACTIONS(221), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(221), - [anon_sym_not] = ACTIONS(221), - [anon_sym_AT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138216,86 +137514,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(229), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(231), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [885] = { - [sym__expression] = STATE(2977), - [sym_block] = STATE(2977), - [sym_identifier] = STATE(42), - [sym_boolean] = STATE(2977), - [sym_nil] = STATE(2977), - [sym__atom] = STATE(2977), - [sym_quoted_atom] = STATE(2977), - [sym__quoted_i_double] = STATE(1431), - [sym__quoted_i_single] = STATE(1432), - [sym__quoted_i_heredoc_single] = STATE(1433), - [sym__quoted_i_heredoc_double] = STATE(1434), - [sym_string] = STATE(2977), - [sym_charlist] = STATE(2977), - [sym_sigil] = STATE(2977), - [sym_list] = STATE(2977), - [sym_tuple] = STATE(2977), - [sym_bitstring] = STATE(2977), - [sym_map] = STATE(2977), - [sym__nullary_operator] = STATE(2977), - [sym_unary_operator] = STATE(2977), - [sym_binary_operator] = STATE(2977), - [sym_operator_identifier] = STATE(6959), - [sym_dot] = STATE(2977), - [sym_call] = STATE(2977), - [sym__call_without_parentheses] = STATE(1435), - [sym__call_with_parentheses] = STATE(1436), - [sym__local_call_without_parentheses] = STATE(1437), - [sym__local_call_with_parentheses] = STATE(1137), - [sym__local_call_just_do_block] = STATE(1438), - [sym__remote_call_without_parentheses] = STATE(1440), - [sym__remote_call_with_parentheses] = STATE(1134), - [sym__remote_dot] = STATE(51), - [sym__anonymous_call] = STATE(1133), - [sym__anonymous_dot] = STATE(6813), - [sym__double_call] = STATE(1441), - [sym_access_call] = STATE(2977), - [sym_anonymous_function] = STATE(2977), + [881] = { + [sym__expression] = STATE(3977), + [sym_block] = STATE(3977), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3977), + [sym_nil] = STATE(3977), + [sym__atom] = STATE(3977), + [sym_quoted_atom] = STATE(3977), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3977), + [sym_charlist] = STATE(3977), + [sym_sigil] = STATE(3977), + [sym_list] = STATE(3977), + [sym_tuple] = STATE(3977), + [sym_bitstring] = STATE(3977), + [sym_map] = STATE(3977), + [sym__nullary_operator] = STATE(3977), + [sym_unary_operator] = STATE(3977), + [sym_binary_operator] = STATE(3977), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3977), + [sym_call] = STATE(3977), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3977), + [sym_anonymous_function] = STATE(3977), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(237), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2573), [sym_integer] = ACTIONS(2573), [sym_float] = ACTIONS(2573), [sym_char] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(241), - [anon_sym_false] = ACTIONS(241), - [anon_sym_nil] = ACTIONS(243), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2573), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(249), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_LT_LT] = ACTIONS(261), - [anon_sym_PERCENT] = ACTIONS(263), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(463), - [anon_sym_not] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(465), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138333,86 +137631,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(467), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(281), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [886] = { - [sym__expression] = STATE(2260), - [sym_block] = STATE(2260), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2260), - [sym_nil] = STATE(2260), - [sym__atom] = STATE(2260), - [sym_quoted_atom] = STATE(2260), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2260), - [sym_charlist] = STATE(2260), - [sym_sigil] = STATE(2260), - [sym_list] = STATE(2260), - [sym_tuple] = STATE(2260), - [sym_bitstring] = STATE(2260), - [sym_map] = STATE(2260), - [sym__nullary_operator] = STATE(2260), - [sym_unary_operator] = STATE(2260), - [sym_binary_operator] = STATE(2260), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2260), - [sym_call] = STATE(2260), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2260), - [sym_anonymous_function] = STATE(2260), + [882] = { + [sym__expression] = STATE(3978), + [sym_block] = STATE(3978), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3978), + [sym_nil] = STATE(3978), + [sym__atom] = STATE(3978), + [sym_quoted_atom] = STATE(3978), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3978), + [sym_charlist] = STATE(3978), + [sym_sigil] = STATE(3978), + [sym_list] = STATE(3978), + [sym_tuple] = STATE(3978), + [sym_bitstring] = STATE(3978), + [sym_map] = STATE(3978), + [sym__nullary_operator] = STATE(3978), + [sym_unary_operator] = STATE(3978), + [sym_binary_operator] = STATE(3978), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3978), + [sym_call] = STATE(3978), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3978), + [sym_anonymous_function] = STATE(3978), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), [sym_alias] = ACTIONS(2575), [sym_integer] = ACTIONS(2575), [sym_float] = ACTIONS(2575), [sym_char] = ACTIONS(2575), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), [sym_atom] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138450,86 +137748,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [887] = { - [sym__expression] = STATE(1999), - [sym_block] = STATE(1999), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(1999), - [sym_nil] = STATE(1999), - [sym__atom] = STATE(1999), - [sym_quoted_atom] = STATE(1999), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(1999), - [sym_charlist] = STATE(1999), - [sym_sigil] = STATE(1999), - [sym_list] = STATE(1999), - [sym_tuple] = STATE(1999), - [sym_bitstring] = STATE(1999), - [sym_map] = STATE(1999), - [sym__nullary_operator] = STATE(1999), - [sym_unary_operator] = STATE(1999), - [sym_binary_operator] = STATE(1999), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(1999), - [sym_call] = STATE(1999), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(1999), - [sym_anonymous_function] = STATE(1999), + [883] = { + [sym__expression] = STATE(3979), + [sym_block] = STATE(3979), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3979), + [sym_nil] = STATE(3979), + [sym__atom] = STATE(3979), + [sym_quoted_atom] = STATE(3979), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3979), + [sym_charlist] = STATE(3979), + [sym_sigil] = STATE(3979), + [sym_list] = STATE(3979), + [sym_tuple] = STATE(3979), + [sym_bitstring] = STATE(3979), + [sym_map] = STATE(3979), + [sym__nullary_operator] = STATE(3979), + [sym_unary_operator] = STATE(3979), + [sym_binary_operator] = STATE(3979), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3979), + [sym_call] = STATE(3979), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3979), + [sym_anonymous_function] = STATE(3979), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(1861), - [sym_integer] = ACTIONS(1861), - [sym_float] = ACTIONS(1861), - [sym_char] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2577), + [sym_integer] = ACTIONS(2577), + [sym_float] = ACTIONS(2577), + [sym_char] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138567,86 +137865,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [888] = { - [sym__expression] = STATE(2283), - [sym_block] = STATE(2283), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2283), - [sym_nil] = STATE(2283), - [sym__atom] = STATE(2283), - [sym_quoted_atom] = STATE(2283), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2283), - [sym_charlist] = STATE(2283), - [sym_sigil] = STATE(2283), - [sym_list] = STATE(2283), - [sym_tuple] = STATE(2283), - [sym_bitstring] = STATE(2283), - [sym_map] = STATE(2283), - [sym__nullary_operator] = STATE(2283), - [sym_unary_operator] = STATE(2283), - [sym_binary_operator] = STATE(2283), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2283), - [sym_call] = STATE(2283), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2283), - [sym_anonymous_function] = STATE(2283), + [884] = { + [sym__expression] = STATE(3980), + [sym_block] = STATE(3980), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3980), + [sym_nil] = STATE(3980), + [sym__atom] = STATE(3980), + [sym_quoted_atom] = STATE(3980), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3980), + [sym_charlist] = STATE(3980), + [sym_sigil] = STATE(3980), + [sym_list] = STATE(3980), + [sym_tuple] = STATE(3980), + [sym_bitstring] = STATE(3980), + [sym_map] = STATE(3980), + [sym__nullary_operator] = STATE(3980), + [sym_unary_operator] = STATE(3980), + [sym_binary_operator] = STATE(3980), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3980), + [sym_call] = STATE(3980), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3980), + [sym_anonymous_function] = STATE(3980), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2577), - [sym_integer] = ACTIONS(2577), - [sym_float] = ACTIONS(2577), - [sym_char] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138684,86 +137982,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [889] = { - [sym__expression] = STATE(2032), - [sym_block] = STATE(2032), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2032), - [sym_nil] = STATE(2032), - [sym__atom] = STATE(2032), - [sym_quoted_atom] = STATE(2032), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2032), - [sym_charlist] = STATE(2032), - [sym_sigil] = STATE(2032), - [sym_list] = STATE(2032), - [sym_tuple] = STATE(2032), - [sym_bitstring] = STATE(2032), - [sym_map] = STATE(2032), - [sym__nullary_operator] = STATE(2032), - [sym_unary_operator] = STATE(2032), - [sym_binary_operator] = STATE(2032), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2032), - [sym_call] = STATE(2032), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2032), - [sym_anonymous_function] = STATE(2032), + [885] = { + [sym__expression] = STATE(3981), + [sym_block] = STATE(3981), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3981), + [sym_nil] = STATE(3981), + [sym__atom] = STATE(3981), + [sym_quoted_atom] = STATE(3981), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3981), + [sym_charlist] = STATE(3981), + [sym_sigil] = STATE(3981), + [sym_list] = STATE(3981), + [sym_tuple] = STATE(3981), + [sym_bitstring] = STATE(3981), + [sym_map] = STATE(3981), + [sym__nullary_operator] = STATE(3981), + [sym_unary_operator] = STATE(3981), + [sym_binary_operator] = STATE(3981), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3981), + [sym_call] = STATE(3981), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3981), + [sym_anonymous_function] = STATE(3981), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(1899), - [sym_integer] = ACTIONS(1899), - [sym_float] = ACTIONS(1899), - [sym_char] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2581), + [sym_integer] = ACTIONS(2581), + [sym_float] = ACTIONS(2581), + [sym_char] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -138801,64 +138099,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [890] = { - [sym__expression] = STATE(3447), - [sym_block] = STATE(3447), + [886] = { + [sym__expression] = STATE(3982), + [sym_block] = STATE(3982), [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3447), - [sym_nil] = STATE(3447), - [sym__atom] = STATE(3447), - [sym_quoted_atom] = STATE(3447), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3447), - [sym_charlist] = STATE(3447), - [sym_sigil] = STATE(3447), - [sym_list] = STATE(3447), - [sym_tuple] = STATE(3447), - [sym_bitstring] = STATE(3447), - [sym_map] = STATE(3447), - [sym__nullary_operator] = STATE(3447), - [sym_unary_operator] = STATE(3447), - [sym_binary_operator] = STATE(3447), + [sym_boolean] = STATE(3982), + [sym_nil] = STATE(3982), + [sym__atom] = STATE(3982), + [sym_quoted_atom] = STATE(3982), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3982), + [sym_charlist] = STATE(3982), + [sym_sigil] = STATE(3982), + [sym_list] = STATE(3982), + [sym_tuple] = STATE(3982), + [sym_bitstring] = STATE(3982), + [sym_map] = STATE(3982), + [sym__nullary_operator] = STATE(3982), + [sym_unary_operator] = STATE(3982), + [sym_binary_operator] = STATE(3982), [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3447), - [sym_call] = STATE(3447), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), + [sym_dot] = STATE(3982), + [sym_call] = STATE(3982), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3447), - [sym_anonymous_function] = STATE(3447), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3982), + [sym_anonymous_function] = STATE(3982), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1819), - [sym_integer] = ACTIONS(1819), - [sym_float] = ACTIONS(1819), - [sym_char] = ACTIONS(1819), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), [anon_sym_true] = ACTIONS(1047), [anon_sym_false] = ACTIONS(1047), [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1819), + [sym_atom] = ACTIONS(2583), [anon_sym_DQUOTE] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(1053), [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), @@ -138868,7 +138166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(35), [anon_sym_TILDE] = ACTIONS(1065), [anon_sym_LT_LT] = ACTIONS(1069), [anon_sym_PERCENT] = ACTIONS(1071), @@ -138926,78 +138224,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(55), [sym__quoted_atom_start] = ACTIONS(1085), }, - [891] = { - [sym__expression] = STATE(2307), - [sym_block] = STATE(2307), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2307), - [sym_nil] = STATE(2307), - [sym__atom] = STATE(2307), - [sym_quoted_atom] = STATE(2307), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2307), - [sym_charlist] = STATE(2307), - [sym_sigil] = STATE(2307), - [sym_list] = STATE(2307), - [sym_tuple] = STATE(2307), - [sym_bitstring] = STATE(2307), - [sym_map] = STATE(2307), - [sym__nullary_operator] = STATE(2307), - [sym_unary_operator] = STATE(2307), - [sym_binary_operator] = STATE(2307), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2307), - [sym_call] = STATE(2307), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2307), - [sym_anonymous_function] = STATE(2307), + [887] = { + [sym__expression] = STATE(3983), + [sym_block] = STATE(3983), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3983), + [sym_nil] = STATE(3983), + [sym__atom] = STATE(3983), + [sym_quoted_atom] = STATE(3983), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3983), + [sym_charlist] = STATE(3983), + [sym_sigil] = STATE(3983), + [sym_list] = STATE(3983), + [sym_tuple] = STATE(3983), + [sym_bitstring] = STATE(3983), + [sym_map] = STATE(3983), + [sym__nullary_operator] = STATE(3983), + [sym_unary_operator] = STATE(3983), + [sym_binary_operator] = STATE(3983), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3983), + [sym_call] = STATE(3983), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3983), + [sym_anonymous_function] = STATE(3983), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2579), - [sym_integer] = ACTIONS(2579), - [sym_float] = ACTIONS(2579), - [sym_char] = ACTIONS(2579), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_char] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139035,86 +138333,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [892] = { - [sym__expression] = STATE(2169), - [sym_block] = STATE(2169), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2169), - [sym_nil] = STATE(2169), - [sym__atom] = STATE(2169), - [sym_quoted_atom] = STATE(2169), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2169), - [sym_charlist] = STATE(2169), - [sym_sigil] = STATE(2169), - [sym_list] = STATE(2169), - [sym_tuple] = STATE(2169), - [sym_bitstring] = STATE(2169), - [sym_map] = STATE(2169), - [sym__nullary_operator] = STATE(2169), - [sym_unary_operator] = STATE(2169), - [sym_binary_operator] = STATE(2169), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2169), - [sym_call] = STATE(2169), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2169), - [sym_anonymous_function] = STATE(2169), + [888] = { + [sym__expression] = STATE(2557), + [sym_block] = STATE(2557), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2557), + [sym_nil] = STATE(2557), + [sym__atom] = STATE(2557), + [sym_quoted_atom] = STATE(2557), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2557), + [sym_charlist] = STATE(2557), + [sym_sigil] = STATE(2557), + [sym_list] = STATE(2557), + [sym_tuple] = STATE(2557), + [sym_bitstring] = STATE(2557), + [sym_map] = STATE(2557), + [sym__nullary_operator] = STATE(2557), + [sym_unary_operator] = STATE(2557), + [sym_binary_operator] = STATE(2557), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2557), + [sym_call] = STATE(2557), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2557), + [sym_anonymous_function] = STATE(2557), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2581), - [sym_integer] = ACTIONS(2581), - [sym_float] = ACTIONS(2581), - [sym_char] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2587), + [sym_integer] = ACTIONS(2587), + [sym_float] = ACTIONS(2587), + [sym_char] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139152,86 +138450,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, - [893] = { - [sym__expression] = STATE(2168), - [sym_block] = STATE(2168), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2168), - [sym_nil] = STATE(2168), - [sym__atom] = STATE(2168), - [sym_quoted_atom] = STATE(2168), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2168), - [sym_charlist] = STATE(2168), - [sym_sigil] = STATE(2168), - [sym_list] = STATE(2168), - [sym_tuple] = STATE(2168), - [sym_bitstring] = STATE(2168), - [sym_map] = STATE(2168), - [sym__nullary_operator] = STATE(2168), - [sym_unary_operator] = STATE(2168), - [sym_binary_operator] = STATE(2168), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2168), - [sym_call] = STATE(2168), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2168), - [sym_anonymous_function] = STATE(2168), + [889] = { + [sym__expression] = STATE(3986), + [sym_block] = STATE(3986), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3986), + [sym_nil] = STATE(3986), + [sym__atom] = STATE(3986), + [sym_quoted_atom] = STATE(3986), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3986), + [sym_charlist] = STATE(3986), + [sym_sigil] = STATE(3986), + [sym_list] = STATE(3986), + [sym_tuple] = STATE(3986), + [sym_bitstring] = STATE(3986), + [sym_map] = STATE(3986), + [sym__nullary_operator] = STATE(3986), + [sym_unary_operator] = STATE(3986), + [sym_binary_operator] = STATE(3986), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3986), + [sym_call] = STATE(3986), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3986), + [sym_anonymous_function] = STATE(3986), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2583), - [sym_integer] = ACTIONS(2583), - [sym_float] = ACTIONS(2583), - [sym_char] = ACTIONS(2583), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2583), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139269,86 +138567,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [894] = { - [sym__expression] = STATE(2167), - [sym_block] = STATE(2167), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2167), - [sym_nil] = STATE(2167), - [sym__atom] = STATE(2167), - [sym_quoted_atom] = STATE(2167), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2167), - [sym_charlist] = STATE(2167), - [sym_sigil] = STATE(2167), - [sym_list] = STATE(2167), - [sym_tuple] = STATE(2167), - [sym_bitstring] = STATE(2167), - [sym_map] = STATE(2167), - [sym__nullary_operator] = STATE(2167), - [sym_unary_operator] = STATE(2167), - [sym_binary_operator] = STATE(2167), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2167), - [sym_call] = STATE(2167), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2167), - [sym_anonymous_function] = STATE(2167), + [890] = { + [sym__expression] = STATE(3987), + [sym_block] = STATE(3987), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3987), + [sym_nil] = STATE(3987), + [sym__atom] = STATE(3987), + [sym_quoted_atom] = STATE(3987), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3987), + [sym_charlist] = STATE(3987), + [sym_sigil] = STATE(3987), + [sym_list] = STATE(3987), + [sym_tuple] = STATE(3987), + [sym_bitstring] = STATE(3987), + [sym_map] = STATE(3987), + [sym__nullary_operator] = STATE(3987), + [sym_unary_operator] = STATE(3987), + [sym_binary_operator] = STATE(3987), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3987), + [sym_call] = STATE(3987), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3987), + [sym_anonymous_function] = STATE(3987), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2585), - [sym_integer] = ACTIONS(2585), - [sym_float] = ACTIONS(2585), - [sym_char] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2591), + [sym_integer] = ACTIONS(2591), + [sym_float] = ACTIONS(2591), + [sym_char] = ACTIONS(2591), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139386,86 +138684,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [895] = { - [sym__expression] = STATE(2164), - [sym_block] = STATE(2164), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2164), - [sym_nil] = STATE(2164), - [sym__atom] = STATE(2164), - [sym_quoted_atom] = STATE(2164), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2164), - [sym_charlist] = STATE(2164), - [sym_sigil] = STATE(2164), - [sym_list] = STATE(2164), - [sym_tuple] = STATE(2164), - [sym_bitstring] = STATE(2164), - [sym_map] = STATE(2164), - [sym__nullary_operator] = STATE(2164), - [sym_unary_operator] = STATE(2164), - [sym_binary_operator] = STATE(2164), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2164), - [sym_call] = STATE(2164), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2164), - [sym_anonymous_function] = STATE(2164), + [891] = { + [sym__expression] = STATE(3988), + [sym_block] = STATE(3988), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3988), + [sym_nil] = STATE(3988), + [sym__atom] = STATE(3988), + [sym_quoted_atom] = STATE(3988), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3988), + [sym_charlist] = STATE(3988), + [sym_sigil] = STATE(3988), + [sym_list] = STATE(3988), + [sym_tuple] = STATE(3988), + [sym_bitstring] = STATE(3988), + [sym_map] = STATE(3988), + [sym__nullary_operator] = STATE(3988), + [sym_unary_operator] = STATE(3988), + [sym_binary_operator] = STATE(3988), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3988), + [sym_call] = STATE(3988), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3988), + [sym_anonymous_function] = STATE(3988), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2587), - [sym_integer] = ACTIONS(2587), - [sym_float] = ACTIONS(2587), - [sym_char] = ACTIONS(2587), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2587), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2593), + [sym_integer] = ACTIONS(2593), + [sym_float] = ACTIONS(2593), + [sym_char] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139503,86 +138801,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [896] = { - [sym__expression] = STATE(2162), - [sym_block] = STATE(2162), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2162), - [sym_nil] = STATE(2162), - [sym__atom] = STATE(2162), - [sym_quoted_atom] = STATE(2162), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2162), - [sym_charlist] = STATE(2162), - [sym_sigil] = STATE(2162), - [sym_list] = STATE(2162), - [sym_tuple] = STATE(2162), - [sym_bitstring] = STATE(2162), - [sym_map] = STATE(2162), - [sym__nullary_operator] = STATE(2162), - [sym_unary_operator] = STATE(2162), - [sym_binary_operator] = STATE(2162), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2162), - [sym_call] = STATE(2162), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2162), - [sym_anonymous_function] = STATE(2162), + [892] = { + [sym__expression] = STATE(3989), + [sym_block] = STATE(3989), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3989), + [sym_nil] = STATE(3989), + [sym__atom] = STATE(3989), + [sym_quoted_atom] = STATE(3989), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3989), + [sym_charlist] = STATE(3989), + [sym_sigil] = STATE(3989), + [sym_list] = STATE(3989), + [sym_tuple] = STATE(3989), + [sym_bitstring] = STATE(3989), + [sym_map] = STATE(3989), + [sym__nullary_operator] = STATE(3989), + [sym_unary_operator] = STATE(3989), + [sym_binary_operator] = STATE(3989), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3989), + [sym_call] = STATE(3989), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3989), + [sym_anonymous_function] = STATE(3989), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2589), - [sym_integer] = ACTIONS(2589), - [sym_float] = ACTIONS(2589), - [sym_char] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2595), + [sym_integer] = ACTIONS(2595), + [sym_float] = ACTIONS(2595), + [sym_char] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139620,86 +138918,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [897] = { - [sym__expression] = STATE(2160), - [sym_block] = STATE(2160), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2160), - [sym_nil] = STATE(2160), - [sym__atom] = STATE(2160), - [sym_quoted_atom] = STATE(2160), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2160), - [sym_charlist] = STATE(2160), - [sym_sigil] = STATE(2160), - [sym_list] = STATE(2160), - [sym_tuple] = STATE(2160), - [sym_bitstring] = STATE(2160), - [sym_map] = STATE(2160), - [sym__nullary_operator] = STATE(2160), - [sym_unary_operator] = STATE(2160), - [sym_binary_operator] = STATE(2160), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2160), - [sym_call] = STATE(2160), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2160), - [sym_anonymous_function] = STATE(2160), + [893] = { + [sym__expression] = STATE(2556), + [sym_block] = STATE(2556), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2556), + [sym_nil] = STATE(2556), + [sym__atom] = STATE(2556), + [sym_quoted_atom] = STATE(2556), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2556), + [sym_charlist] = STATE(2556), + [sym_sigil] = STATE(2556), + [sym_list] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_bitstring] = STATE(2556), + [sym_map] = STATE(2556), + [sym__nullary_operator] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_binary_operator] = STATE(2556), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2556), + [sym_call] = STATE(2556), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2556), + [sym_anonymous_function] = STATE(2556), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2591), - [sym_integer] = ACTIONS(2591), - [sym_float] = ACTIONS(2591), - [sym_char] = ACTIONS(2591), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2591), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2597), + [sym_integer] = ACTIONS(2597), + [sym_float] = ACTIONS(2597), + [sym_char] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139737,86 +139035,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, - [898] = { - [sym__expression] = STATE(2159), - [sym_block] = STATE(2159), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2159), - [sym_nil] = STATE(2159), - [sym__atom] = STATE(2159), - [sym_quoted_atom] = STATE(2159), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2159), - [sym_charlist] = STATE(2159), - [sym_sigil] = STATE(2159), - [sym_list] = STATE(2159), - [sym_tuple] = STATE(2159), - [sym_bitstring] = STATE(2159), - [sym_map] = STATE(2159), - [sym__nullary_operator] = STATE(2159), - [sym_unary_operator] = STATE(2159), - [sym_binary_operator] = STATE(2159), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2159), - [sym_call] = STATE(2159), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2159), - [sym_anonymous_function] = STATE(2159), + [894] = { + [sym__expression] = STATE(3992), + [sym_block] = STATE(3992), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3992), + [sym_nil] = STATE(3992), + [sym__atom] = STATE(3992), + [sym_quoted_atom] = STATE(3992), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3992), + [sym_charlist] = STATE(3992), + [sym_sigil] = STATE(3992), + [sym_list] = STATE(3992), + [sym_tuple] = STATE(3992), + [sym_bitstring] = STATE(3992), + [sym_map] = STATE(3992), + [sym__nullary_operator] = STATE(3992), + [sym_unary_operator] = STATE(3992), + [sym_binary_operator] = STATE(3992), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3992), + [sym_call] = STATE(3992), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3992), + [sym_anonymous_function] = STATE(3992), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2593), - [sym_integer] = ACTIONS(2593), - [sym_float] = ACTIONS(2593), - [sym_char] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2599), + [sym_integer] = ACTIONS(2599), + [sym_float] = ACTIONS(2599), + [sym_char] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2599), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139854,86 +139152,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [899] = { - [sym__expression] = STATE(2158), - [sym_block] = STATE(2158), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2158), - [sym_nil] = STATE(2158), - [sym__atom] = STATE(2158), - [sym_quoted_atom] = STATE(2158), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2158), - [sym_charlist] = STATE(2158), - [sym_sigil] = STATE(2158), - [sym_list] = STATE(2158), - [sym_tuple] = STATE(2158), - [sym_bitstring] = STATE(2158), - [sym_map] = STATE(2158), - [sym__nullary_operator] = STATE(2158), - [sym_unary_operator] = STATE(2158), - [sym_binary_operator] = STATE(2158), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2158), - [sym_call] = STATE(2158), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2158), - [sym_anonymous_function] = STATE(2158), + [895] = { + [sym__expression] = STATE(3993), + [sym_block] = STATE(3993), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3993), + [sym_nil] = STATE(3993), + [sym__atom] = STATE(3993), + [sym_quoted_atom] = STATE(3993), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3993), + [sym_charlist] = STATE(3993), + [sym_sigil] = STATE(3993), + [sym_list] = STATE(3993), + [sym_tuple] = STATE(3993), + [sym_bitstring] = STATE(3993), + [sym_map] = STATE(3993), + [sym__nullary_operator] = STATE(3993), + [sym_unary_operator] = STATE(3993), + [sym_binary_operator] = STATE(3993), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3993), + [sym_call] = STATE(3993), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3993), + [sym_anonymous_function] = STATE(3993), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2595), - [sym_integer] = ACTIONS(2595), - [sym_float] = ACTIONS(2595), - [sym_char] = ACTIONS(2595), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2595), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2601), + [sym_integer] = ACTIONS(2601), + [sym_float] = ACTIONS(2601), + [sym_char] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -139971,86 +139269,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, - [900] = { - [sym__expression] = STATE(2157), - [sym_block] = STATE(2157), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2157), - [sym_nil] = STATE(2157), - [sym__atom] = STATE(2157), - [sym_quoted_atom] = STATE(2157), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2157), - [sym_charlist] = STATE(2157), - [sym_sigil] = STATE(2157), - [sym_list] = STATE(2157), - [sym_tuple] = STATE(2157), - [sym_bitstring] = STATE(2157), - [sym_map] = STATE(2157), - [sym__nullary_operator] = STATE(2157), - [sym_unary_operator] = STATE(2157), - [sym_binary_operator] = STATE(2157), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2157), - [sym_call] = STATE(2157), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2157), - [sym_anonymous_function] = STATE(2157), + [896] = { + [sym__expression] = STATE(2553), + [sym_block] = STATE(2553), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2553), + [sym_nil] = STATE(2553), + [sym__atom] = STATE(2553), + [sym_quoted_atom] = STATE(2553), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2553), + [sym_charlist] = STATE(2553), + [sym_sigil] = STATE(2553), + [sym_list] = STATE(2553), + [sym_tuple] = STATE(2553), + [sym_bitstring] = STATE(2553), + [sym_map] = STATE(2553), + [sym__nullary_operator] = STATE(2553), + [sym_unary_operator] = STATE(2553), + [sym_binary_operator] = STATE(2553), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2553), + [sym_call] = STATE(2553), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2553), + [sym_anonymous_function] = STATE(2553), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2597), - [sym_integer] = ACTIONS(2597), - [sym_float] = ACTIONS(2597), - [sym_char] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2603), + [sym_integer] = ACTIONS(2603), + [sym_float] = ACTIONS(2603), + [sym_char] = ACTIONS(2603), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140088,86 +139386,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, - [901] = { - [sym__expression] = STATE(2154), - [sym_block] = STATE(2154), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2154), - [sym_nil] = STATE(2154), - [sym__atom] = STATE(2154), - [sym_quoted_atom] = STATE(2154), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2154), - [sym_charlist] = STATE(2154), - [sym_sigil] = STATE(2154), - [sym_list] = STATE(2154), - [sym_tuple] = STATE(2154), - [sym_bitstring] = STATE(2154), - [sym_map] = STATE(2154), - [sym__nullary_operator] = STATE(2154), - [sym_unary_operator] = STATE(2154), - [sym_binary_operator] = STATE(2154), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2154), - [sym_call] = STATE(2154), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2154), - [sym_anonymous_function] = STATE(2154), + [897] = { + [sym__expression] = STATE(2552), + [sym_block] = STATE(2552), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2552), + [sym_nil] = STATE(2552), + [sym__atom] = STATE(2552), + [sym_quoted_atom] = STATE(2552), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2552), + [sym_charlist] = STATE(2552), + [sym_sigil] = STATE(2552), + [sym_list] = STATE(2552), + [sym_tuple] = STATE(2552), + [sym_bitstring] = STATE(2552), + [sym_map] = STATE(2552), + [sym__nullary_operator] = STATE(2552), + [sym_unary_operator] = STATE(2552), + [sym_binary_operator] = STATE(2552), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2552), + [sym_call] = STATE(2552), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2552), + [sym_anonymous_function] = STATE(2552), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2599), - [sym_integer] = ACTIONS(2599), - [sym_float] = ACTIONS(2599), - [sym_char] = ACTIONS(2599), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2605), + [sym_integer] = ACTIONS(2605), + [sym_float] = ACTIONS(2605), + [sym_char] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140205,86 +139503,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, - [902] = { - [sym__expression] = STATE(2153), - [sym_block] = STATE(2153), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2153), - [sym_nil] = STATE(2153), - [sym__atom] = STATE(2153), - [sym_quoted_atom] = STATE(2153), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2153), - [sym_charlist] = STATE(2153), - [sym_sigil] = STATE(2153), - [sym_list] = STATE(2153), - [sym_tuple] = STATE(2153), - [sym_bitstring] = STATE(2153), - [sym_map] = STATE(2153), - [sym__nullary_operator] = STATE(2153), - [sym_unary_operator] = STATE(2153), - [sym_binary_operator] = STATE(2153), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2153), - [sym_call] = STATE(2153), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2153), - [sym_anonymous_function] = STATE(2153), + [898] = { + [sym__expression] = STATE(2551), + [sym_block] = STATE(2551), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2551), + [sym_nil] = STATE(2551), + [sym__atom] = STATE(2551), + [sym_quoted_atom] = STATE(2551), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2551), + [sym_charlist] = STATE(2551), + [sym_sigil] = STATE(2551), + [sym_list] = STATE(2551), + [sym_tuple] = STATE(2551), + [sym_bitstring] = STATE(2551), + [sym_map] = STATE(2551), + [sym__nullary_operator] = STATE(2551), + [sym_unary_operator] = STATE(2551), + [sym_binary_operator] = STATE(2551), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2551), + [sym_call] = STATE(2551), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2551), + [sym_anonymous_function] = STATE(2551), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2601), - [sym_integer] = ACTIONS(2601), - [sym_float] = ACTIONS(2601), - [sym_char] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2607), + [sym_integer] = ACTIONS(2607), + [sym_float] = ACTIONS(2607), + [sym_char] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140322,86 +139620,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, - [903] = { - [sym__expression] = STATE(2151), - [sym_block] = STATE(2151), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2151), - [sym_nil] = STATE(2151), - [sym__atom] = STATE(2151), - [sym_quoted_atom] = STATE(2151), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2151), - [sym_charlist] = STATE(2151), - [sym_sigil] = STATE(2151), - [sym_list] = STATE(2151), - [sym_tuple] = STATE(2151), - [sym_bitstring] = STATE(2151), - [sym_map] = STATE(2151), - [sym__nullary_operator] = STATE(2151), - [sym_unary_operator] = STATE(2151), - [sym_binary_operator] = STATE(2151), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2151), - [sym_call] = STATE(2151), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2151), - [sym_anonymous_function] = STATE(2151), + [899] = { + [sym__expression] = STATE(2550), + [sym_block] = STATE(2550), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2550), + [sym_nil] = STATE(2550), + [sym__atom] = STATE(2550), + [sym_quoted_atom] = STATE(2550), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2550), + [sym_charlist] = STATE(2550), + [sym_sigil] = STATE(2550), + [sym_list] = STATE(2550), + [sym_tuple] = STATE(2550), + [sym_bitstring] = STATE(2550), + [sym_map] = STATE(2550), + [sym__nullary_operator] = STATE(2550), + [sym_unary_operator] = STATE(2550), + [sym_binary_operator] = STATE(2550), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2550), + [sym_call] = STATE(2550), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2550), + [sym_anonymous_function] = STATE(2550), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2603), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2603), - [sym_char] = ACTIONS(2603), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140439,86 +139737,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), }, - [904] = { - [sym__expression] = STATE(2149), - [sym_block] = STATE(2149), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2149), - [sym_nil] = STATE(2149), - [sym__atom] = STATE(2149), - [sym_quoted_atom] = STATE(2149), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2149), - [sym_charlist] = STATE(2149), - [sym_sigil] = STATE(2149), - [sym_list] = STATE(2149), - [sym_tuple] = STATE(2149), - [sym_bitstring] = STATE(2149), - [sym_map] = STATE(2149), - [sym__nullary_operator] = STATE(2149), - [sym_unary_operator] = STATE(2149), - [sym_binary_operator] = STATE(2149), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2149), - [sym_call] = STATE(2149), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2149), - [sym_anonymous_function] = STATE(2149), + [900] = { + [sym__expression] = STATE(2547), + [sym_block] = STATE(2547), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2547), + [sym_nil] = STATE(2547), + [sym__atom] = STATE(2547), + [sym_quoted_atom] = STATE(2547), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2547), + [sym_charlist] = STATE(2547), + [sym_sigil] = STATE(2547), + [sym_list] = STATE(2547), + [sym_tuple] = STATE(2547), + [sym_bitstring] = STATE(2547), + [sym_map] = STATE(2547), + [sym__nullary_operator] = STATE(2547), + [sym_unary_operator] = STATE(2547), + [sym_binary_operator] = STATE(2547), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2547), + [sym_call] = STATE(2547), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2547), + [sym_anonymous_function] = STATE(2547), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2605), - [sym_integer] = ACTIONS(2605), - [sym_float] = ACTIONS(2605), - [sym_char] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140556,86 +139854,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(407), + }, + [901] = { + [sym__expression] = STATE(2546), + [sym_block] = STATE(2546), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2546), + [sym_nil] = STATE(2546), + [sym__atom] = STATE(2546), + [sym_quoted_atom] = STATE(2546), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2546), + [sym_charlist] = STATE(2546), + [sym_sigil] = STATE(2546), + [sym_list] = STATE(2546), + [sym_tuple] = STATE(2546), + [sym_bitstring] = STATE(2546), + [sym_map] = STATE(2546), + [sym__nullary_operator] = STATE(2546), + [sym_unary_operator] = STATE(2546), + [sym_binary_operator] = STATE(2546), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2546), + [sym_call] = STATE(2546), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2546), + [sym_anonymous_function] = STATE(2546), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2613), + [sym_integer] = ACTIONS(2613), + [sym_float] = ACTIONS(2613), + [sym_char] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(401), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(405), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(407), + }, + [902] = { + [sym__expression] = STATE(2245), + [sym_block] = STATE(2245), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2245), + [sym_nil] = STATE(2245), + [sym__atom] = STATE(2245), + [sym_quoted_atom] = STATE(2245), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2245), + [sym_charlist] = STATE(2245), + [sym_sigil] = STATE(2245), + [sym_list] = STATE(2245), + [sym_tuple] = STATE(2245), + [sym_bitstring] = STATE(2245), + [sym_map] = STATE(2245), + [sym__nullary_operator] = STATE(2245), + [sym_unary_operator] = STATE(2245), + [sym_binary_operator] = STATE(2245), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2245), + [sym_call] = STATE(2245), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2245), + [sym_anonymous_function] = STATE(2245), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2093), + [sym_integer] = ACTIONS(2093), + [sym_float] = ACTIONS(2093), + [sym_char] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(401), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(405), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(407), + }, + [903] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym__nullary_operator] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2095), + [sym_char] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(401), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(405), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(407), + }, + [904] = { + [sym__expression] = STATE(2257), + [sym_block] = STATE(2257), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2257), + [sym_nil] = STATE(2257), + [sym__atom] = STATE(2257), + [sym_quoted_atom] = STATE(2257), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2257), + [sym_charlist] = STATE(2257), + [sym_sigil] = STATE(2257), + [sym_list] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_bitstring] = STATE(2257), + [sym_map] = STATE(2257), + [sym__nullary_operator] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_binary_operator] = STATE(2257), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2257), + [sym_call] = STATE(2257), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2257), + [sym_anonymous_function] = STATE(2257), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2097), + [sym_integer] = ACTIONS(2097), + [sym_float] = ACTIONS(2097), + [sym_char] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_CARET_CARET_CARET] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(401), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(405), + [sym__not_in] = ACTIONS(55), + [sym__quoted_atom_start] = ACTIONS(407), }, [905] = { - [sym__expression] = STATE(3446), - [sym_block] = STATE(3446), - [sym_identifier] = STATE(47), - [sym_boolean] = STATE(3446), - [sym_nil] = STATE(3446), - [sym__atom] = STATE(3446), - [sym_quoted_atom] = STATE(3446), - [sym__quoted_i_double] = STATE(3013), - [sym__quoted_i_single] = STATE(3014), - [sym__quoted_i_heredoc_single] = STATE(3388), - [sym__quoted_i_heredoc_double] = STATE(3389), - [sym_string] = STATE(3446), - [sym_charlist] = STATE(3446), - [sym_sigil] = STATE(3446), - [sym_list] = STATE(3446), - [sym_tuple] = STATE(3446), - [sym_bitstring] = STATE(3446), - [sym_map] = STATE(3446), - [sym__nullary_operator] = STATE(3446), - [sym_unary_operator] = STATE(3446), - [sym_binary_operator] = STATE(3446), - [sym_operator_identifier] = STATE(6884), - [sym_dot] = STATE(3446), - [sym_call] = STATE(3446), - [sym__call_without_parentheses] = STATE(3390), - [sym__call_with_parentheses] = STATE(3391), - [sym__local_call_without_parentheses] = STATE(3393), - [sym__local_call_with_parentheses] = STATE(2145), - [sym__local_call_just_do_block] = STATE(3406), - [sym__remote_call_without_parentheses] = STATE(3407), - [sym__remote_call_with_parentheses] = STATE(2203), - [sym__remote_dot] = STATE(38), - [sym__anonymous_call] = STATE(2205), - [sym__anonymous_dot] = STATE(6825), - [sym__double_call] = STATE(3431), - [sym_access_call] = STATE(3446), - [sym_anonymous_function] = STATE(3446), + [sym__expression] = STATE(2258), + [sym_block] = STATE(2258), + [sym_identifier] = STATE(35), + [sym_boolean] = STATE(2258), + [sym_nil] = STATE(2258), + [sym__atom] = STATE(2258), + [sym_quoted_atom] = STATE(2258), + [sym__quoted_i_double] = STATE(2278), + [sym__quoted_i_single] = STATE(2277), + [sym__quoted_i_heredoc_single] = STATE(2276), + [sym__quoted_i_heredoc_double] = STATE(2275), + [sym_string] = STATE(2258), + [sym_charlist] = STATE(2258), + [sym_sigil] = STATE(2258), + [sym_list] = STATE(2258), + [sym_tuple] = STATE(2258), + [sym_bitstring] = STATE(2258), + [sym_map] = STATE(2258), + [sym__nullary_operator] = STATE(2258), + [sym_unary_operator] = STATE(2258), + [sym_binary_operator] = STATE(2258), + [sym_operator_identifier] = STATE(6938), + [sym_dot] = STATE(2258), + [sym_call] = STATE(2258), + [sym__call_without_parentheses] = STATE(2274), + [sym__call_with_parentheses] = STATE(2273), + [sym__local_call_without_parentheses] = STATE(2272), + [sym__local_call_with_parentheses] = STATE(1580), + [sym__local_call_just_do_block] = STATE(2271), + [sym__remote_call_without_parentheses] = STATE(2270), + [sym__remote_call_with_parentheses] = STATE(1579), + [sym__remote_dot] = STATE(40), + [sym__anonymous_call] = STATE(1578), + [sym__anonymous_dot] = STATE(6806), + [sym__double_call] = STATE(2269), + [sym_access_call] = STATE(2258), + [sym_anonymous_function] = STATE(2258), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1043), - [aux_sym_identifier_token1] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(1817), - [sym_integer] = ACTIONS(1817), - [sym_float] = ACTIONS(1817), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1047), - [anon_sym_false] = ACTIONS(1047), - [anon_sym_nil] = ACTIONS(1049), - [sym_atom] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1053), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LBRACK] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(359), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2099), + [sym_char] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [anon_sym_nil] = ACTIONS(367), + [sym_atom] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(373), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_LT_LT] = ACTIONS(1069), - [anon_sym_PERCENT] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(1075), - [anon_sym_PLUS] = ACTIONS(1077), - [anon_sym_DASH] = ACTIONS(1077), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_CARET] = ACTIONS(1077), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), - [anon_sym_not] = ACTIONS(1077), - [anon_sym_AT] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(381), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(397), + [anon_sym_not] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(399), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140673,86 +140439,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1081), + [anon_sym_fn] = ACTIONS(401), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1083), + [sym__before_unary_op] = ACTIONS(405), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1085), + [sym__quoted_atom_start] = ACTIONS(407), }, [906] = { - [sym__expression] = STATE(4321), - [sym_block] = STATE(4321), - [sym_identifier] = STATE(71), - [sym_boolean] = STATE(4321), - [sym_nil] = STATE(4321), - [sym__atom] = STATE(4321), - [sym_quoted_atom] = STATE(4321), - [sym__quoted_i_double] = STATE(4221), - [sym__quoted_i_single] = STATE(4219), - [sym__quoted_i_heredoc_single] = STATE(4217), - [sym__quoted_i_heredoc_double] = STATE(4214), - [sym_string] = STATE(4321), - [sym_charlist] = STATE(4321), - [sym_sigil] = STATE(4321), - [sym_list] = STATE(4321), - [sym_tuple] = STATE(4321), - [sym_bitstring] = STATE(4321), - [sym_map] = STATE(4321), - [sym__nullary_operator] = STATE(4321), - [sym_unary_operator] = STATE(4321), - [sym_binary_operator] = STATE(4321), - [sym_operator_identifier] = STATE(6910), - [sym_dot] = STATE(4321), - [sym_call] = STATE(4321), - [sym__call_without_parentheses] = STATE(4211), - [sym__call_with_parentheses] = STATE(4341), - [sym__local_call_without_parentheses] = STATE(4208), - [sym__local_call_with_parentheses] = STATE(3435), - [sym__local_call_just_do_block] = STATE(4207), - [sym__remote_call_without_parentheses] = STATE(4206), - [sym__remote_call_with_parentheses] = STATE(3434), - [sym__remote_dot] = STATE(58), - [sym__anonymous_call] = STATE(3430), - [sym__anonymous_dot] = STATE(6765), - [sym__double_call] = STATE(4202), - [sym_access_call] = STATE(4321), - [sym_anonymous_function] = STATE(4321), + [sym__expression] = STATE(3235), + [sym_block] = STATE(3235), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3235), + [sym_nil] = STATE(3235), + [sym__atom] = STATE(3235), + [sym_quoted_atom] = STATE(3235), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3235), + [sym_charlist] = STATE(3235), + [sym_sigil] = STATE(3235), + [sym_list] = STATE(3235), + [sym_tuple] = STATE(3235), + [sym_bitstring] = STATE(3235), + [sym_map] = STATE(3235), + [sym__nullary_operator] = STATE(3235), + [sym_unary_operator] = STATE(3235), + [sym_binary_operator] = STATE(3235), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3235), + [sym_call] = STATE(3235), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3235), + [sym_anonymous_function] = STATE(3235), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1043), [aux_sym_identifier_token1] = ACTIONS(804), [anon_sym_DOT_DOT_DOT] = ACTIONS(804), - [sym_alias] = ACTIONS(2607), - [sym_integer] = ACTIONS(2607), - [sym_float] = ACTIONS(2607), - [sym_char] = ACTIONS(2607), - [anon_sym_true] = ACTIONS(808), - [anon_sym_false] = ACTIONS(808), - [anon_sym_nil] = ACTIONS(810), - [sym_atom] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(812), - [anon_sym_SQUOTE] = ACTIONS(814), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(816), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(818), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(822), + [sym_alias] = ACTIONS(2271), + [sym_integer] = ACTIONS(2271), + [sym_float] = ACTIONS(2271), + [sym_char] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(832), - [anon_sym_PLUS] = ACTIONS(834), - [anon_sym_DASH] = ACTIONS(834), - [anon_sym_BANG] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(834), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(834), - [anon_sym_not] = ACTIONS(834), - [anon_sym_AT] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140790,86 +140556,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(840), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(842), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(844), + [sym__quoted_atom_start] = ACTIONS(1085), }, [907] = { - [sym__expression] = STATE(2146), - [sym_block] = STATE(2146), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2146), - [sym_nil] = STATE(2146), - [sym__atom] = STATE(2146), - [sym_quoted_atom] = STATE(2146), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2146), - [sym_charlist] = STATE(2146), - [sym_sigil] = STATE(2146), - [sym_list] = STATE(2146), - [sym_tuple] = STATE(2146), - [sym_bitstring] = STATE(2146), - [sym_map] = STATE(2146), - [sym__nullary_operator] = STATE(2146), - [sym_unary_operator] = STATE(2146), - [sym_binary_operator] = STATE(2146), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2146), - [sym_call] = STATE(2146), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2146), - [sym_anonymous_function] = STATE(2146), + [sym__expression] = STATE(3236), + [sym_block] = STATE(3236), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3236), + [sym_nil] = STATE(3236), + [sym__atom] = STATE(3236), + [sym_quoted_atom] = STATE(3236), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3236), + [sym_charlist] = STATE(3236), + [sym_sigil] = STATE(3236), + [sym_list] = STATE(3236), + [sym_tuple] = STATE(3236), + [sym_bitstring] = STATE(3236), + [sym_map] = STATE(3236), + [sym__nullary_operator] = STATE(3236), + [sym_unary_operator] = STATE(3236), + [sym_binary_operator] = STATE(3236), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3236), + [sym_call] = STATE(3236), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3236), + [sym_anonymous_function] = STATE(3236), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2609), - [sym_integer] = ACTIONS(2609), - [sym_float] = ACTIONS(2609), - [sym_char] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2275), + [sym_integer] = ACTIONS(2275), + [sym_float] = ACTIONS(2275), + [sym_char] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -140907,86 +140673,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, [908] = { - [sym__expression] = STATE(2147), - [sym_block] = STATE(2147), - [sym_identifier] = STATE(29), - [sym_boolean] = STATE(2147), - [sym_nil] = STATE(2147), - [sym__atom] = STATE(2147), - [sym_quoted_atom] = STATE(2147), - [sym__quoted_i_double] = STATE(1844), - [sym__quoted_i_single] = STATE(1850), - [sym__quoted_i_heredoc_single] = STATE(1967), - [sym__quoted_i_heredoc_double] = STATE(1968), - [sym_string] = STATE(2147), - [sym_charlist] = STATE(2147), - [sym_sigil] = STATE(2147), - [sym_list] = STATE(2147), - [sym_tuple] = STATE(2147), - [sym_bitstring] = STATE(2147), - [sym_map] = STATE(2147), - [sym__nullary_operator] = STATE(2147), - [sym_unary_operator] = STATE(2147), - [sym_binary_operator] = STATE(2147), - [sym_operator_identifier] = STATE(6924), - [sym_dot] = STATE(2147), - [sym_call] = STATE(2147), - [sym__call_without_parentheses] = STATE(1969), - [sym__call_with_parentheses] = STATE(1970), - [sym__local_call_without_parentheses] = STATE(1971), - [sym__local_call_with_parentheses] = STATE(1515), - [sym__local_call_just_do_block] = STATE(1973), - [sym__remote_call_without_parentheses] = STATE(1974), - [sym__remote_call_with_parentheses] = STATE(1514), - [sym__remote_dot] = STATE(16), - [sym__anonymous_call] = STATE(1513), - [sym__anonymous_dot] = STATE(6807), - [sym__double_call] = STATE(1978), - [sym_access_call] = STATE(2147), - [sym_anonymous_function] = STATE(2147), + [sym__expression] = STATE(3245), + [sym_block] = STATE(3245), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3245), + [sym_nil] = STATE(3245), + [sym__atom] = STATE(3245), + [sym_quoted_atom] = STATE(3245), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3245), + [sym_charlist] = STATE(3245), + [sym_sigil] = STATE(3245), + [sym_list] = STATE(3245), + [sym_tuple] = STATE(3245), + [sym_bitstring] = STATE(3245), + [sym_map] = STATE(3245), + [sym__nullary_operator] = STATE(3245), + [sym_unary_operator] = STATE(3245), + [sym_binary_operator] = STATE(3245), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3245), + [sym_call] = STATE(3245), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3245), + [sym_anonymous_function] = STATE(3245), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(918), - [aux_sym_identifier_token1] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(65), - [sym_alias] = ACTIONS(2611), - [sym_integer] = ACTIONS(2611), - [sym_float] = ACTIONS(2611), - [sym_char] = ACTIONS(2611), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [anon_sym_nil] = ACTIONS(924), - [sym_atom] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(928), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(930), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2283), + [sym_integer] = ACTIONS(2283), + [sym_float] = ACTIONS(2283), + [sym_char] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(948), - [anon_sym_not] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -141024,86 +140790,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(956), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(958), + [sym__quoted_atom_start] = ACTIONS(1085), }, [909] = { - [sym__expression] = STATE(4516), - [sym_block] = STATE(4516), - [sym_identifier] = STATE(68), - [sym_boolean] = STATE(4516), - [sym_nil] = STATE(4516), - [sym__atom] = STATE(4516), - [sym_quoted_atom] = STATE(4516), - [sym__quoted_i_double] = STATE(4421), - [sym__quoted_i_single] = STATE(4420), - [sym__quoted_i_heredoc_single] = STATE(4541), - [sym__quoted_i_heredoc_double] = STATE(4543), - [sym_string] = STATE(4516), - [sym_charlist] = STATE(4516), - [sym_sigil] = STATE(4516), - [sym_list] = STATE(4516), - [sym_tuple] = STATE(4516), - [sym_bitstring] = STATE(4516), - [sym_map] = STATE(4516), - [sym__nullary_operator] = STATE(4516), - [sym_unary_operator] = STATE(4516), - [sym_binary_operator] = STATE(4516), - [sym_operator_identifier] = STATE(6903), - [sym_dot] = STATE(4516), - [sym_call] = STATE(4516), - [sym__call_without_parentheses] = STATE(4548), - [sym__call_with_parentheses] = STATE(4549), - [sym__local_call_without_parentheses] = STATE(4550), - [sym__local_call_with_parentheses] = STATE(3521), - [sym__local_call_just_do_block] = STATE(4551), - [sym__remote_call_without_parentheses] = STATE(4552), - [sym__remote_call_with_parentheses] = STATE(3505), - [sym__remote_dot] = STATE(62), - [sym__anonymous_call] = STATE(3504), - [sym__anonymous_dot] = STATE(6836), - [sym__double_call] = STATE(4419), - [sym_access_call] = STATE(4516), - [sym_anonymous_function] = STATE(4516), + [sym__expression] = STATE(3246), + [sym_block] = STATE(3246), + [sym_identifier] = STATE(47), + [sym_boolean] = STATE(3246), + [sym_nil] = STATE(3246), + [sym__atom] = STATE(3246), + [sym_quoted_atom] = STATE(3246), + [sym__quoted_i_double] = STATE(3314), + [sym__quoted_i_single] = STATE(3319), + [sym__quoted_i_heredoc_single] = STATE(3336), + [sym__quoted_i_heredoc_double] = STATE(3334), + [sym_string] = STATE(3246), + [sym_charlist] = STATE(3246), + [sym_sigil] = STATE(3246), + [sym_list] = STATE(3246), + [sym_tuple] = STATE(3246), + [sym_bitstring] = STATE(3246), + [sym_map] = STATE(3246), + [sym__nullary_operator] = STATE(3246), + [sym_unary_operator] = STATE(3246), + [sym_binary_operator] = STATE(3246), + [sym_operator_identifier] = STATE(6884), + [sym_dot] = STATE(3246), + [sym_call] = STATE(3246), + [sym__call_without_parentheses] = STATE(3333), + [sym__call_with_parentheses] = STATE(3332), + [sym__local_call_without_parentheses] = STATE(3331), + [sym__local_call_with_parentheses] = STATE(2222), + [sym__local_call_just_do_block] = STATE(3329), + [sym__remote_call_without_parentheses] = STATE(3321), + [sym__remote_call_with_parentheses] = STATE(2211), + [sym__remote_dot] = STATE(38), + [sym__anonymous_call] = STATE(2210), + [sym__anonymous_dot] = STATE(6761), + [sym__double_call] = STATE(3318), + [sym_access_call] = STATE(3246), + [sym_anonymous_function] = STATE(3246), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(1091), - [aux_sym_identifier_token1] = ACTIONS(1093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1093), - [sym_alias] = ACTIONS(2613), - [sym_integer] = ACTIONS(2613), - [sym_float] = ACTIONS(2613), - [sym_char] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [anon_sym_nil] = ACTIONS(1099), - [sym_atom] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(1101), - [anon_sym_SQUOTE] = ACTIONS(1103), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(804), + [sym_alias] = ACTIONS(2285), + [sym_integer] = ACTIONS(2285), + [sym_float] = ACTIONS(2285), + [sym_char] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [anon_sym_nil] = ACTIONS(1049), + [sym_atom] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1053), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1055), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1063), [anon_sym_LT] = ACTIONS(35), [anon_sym_GT] = ACTIONS(35), [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_LT_LT] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1121), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_AMP] = ACTIONS(1125), - [anon_sym_PLUS] = ACTIONS(1127), - [anon_sym_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_CARET] = ACTIONS(1127), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1127), - [anon_sym_AT] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1077), + [anon_sym_not] = ACTIONS(1077), + [anon_sym_AT] = ACTIONS(1079), [anon_sym_LT_DASH] = ACTIONS(35), [anon_sym_BSLASH_BSLASH] = ACTIONS(35), [anon_sym_when] = ACTIONS(35), @@ -141141,13 +140907,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(35), [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(1131), + [anon_sym_fn] = ACTIONS(1081), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1133), + [sym__before_unary_op] = ACTIONS(1083), [sym__not_in] = ACTIONS(55), - [sym__quoted_atom_start] = ACTIONS(1135), + [sym__quoted_atom_start] = ACTIONS(1085), }, [910] = { [aux_sym__terminator_token1] = ACTIONS(2615), @@ -141340,168 +141106,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2619), }, [912] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_after] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_end] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_rescue] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [913] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_after] = ACTIONS(2617), + [anon_sym_catch] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_rescue] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [913] = { + [aux_sym__terminator_token1] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(2625), + [aux_sym_identifier_token1] = ACTIONS(2625), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [sym_alias] = ACTIONS(2625), + [sym_integer] = ACTIONS(2625), + [sym_float] = ACTIONS(2625), + [sym_char] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2625), + [anon_sym_false] = ACTIONS(2625), + [anon_sym_nil] = ACTIONS(2625), + [sym_atom] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2625), + [anon_sym_GT] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_COMMA] = ACTIONS(2625), + [sym_keyword] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_DOT_DOT] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_PLUS] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), + [anon_sym_not] = ACTIONS(2625), + [anon_sym_AT] = ACTIONS(2625), + [anon_sym_LT_DASH] = ACTIONS(2625), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), + [anon_sym_when] = ACTIONS(2625), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_EQ_GT] = ACTIONS(2625), + [anon_sym_EQ] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_or] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), + [anon_sym_and] = ACTIONS(2625), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_EQ_TILDE] = ACTIONS(2625), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_PIPE_GT] = ACTIONS(2625), + [anon_sym_LT_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_LT_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE] = ACTIONS(2625), + [anon_sym_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_TILDE_GT] = ACTIONS(2625), + [anon_sym_LT_PIPE_GT] = ACTIONS(2625), + [anon_sym_in] = ACTIONS(2625), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), [anon_sym_SLASH_SLASH] = ACTIONS(2625), [anon_sym_PLUS_PLUS] = ACTIONS(2625), [anon_sym_DASH_DASH] = ACTIONS(2625), @@ -141815,6 +141581,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2635), }, [917] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_after] = ACTIONS(2617), + [anon_sym_catch] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_rescue] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [918] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_after] = ACTIONS(2617), + [anon_sym_catch] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_else] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_rescue] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [919] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_after] = ACTIONS(2621), + [anon_sym_catch] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_rescue] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [920] = { [aux_sym__terminator_token1] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2641), [anon_sym_LPAREN] = ACTIONS(2641), @@ -141909,7 +141960,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2639), [sym__quoted_atom_start] = ACTIONS(2639), }, - [918] = { + [921] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_after] = ACTIONS(2621), + [anon_sym_catch] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_else] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_rescue] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [922] = { [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(2645), @@ -142004,7 +142150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [919] = { + [923] = { [aux_sym__terminator_token1] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2649), [anon_sym_LPAREN] = ACTIONS(2649), @@ -142099,386 +142245,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2647), [sym__quoted_atom_start] = ACTIONS(2647), }, - [920] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_after] = ACTIONS(2625), - [anon_sym_catch] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_rescue] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [921] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_after] = ACTIONS(2625), - [anon_sym_catch] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_rescue] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [922] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_after] = ACTIONS(2621), - [anon_sym_catch] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_else] = ACTIONS(2621), - [anon_sym_end] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_rescue] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [923] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_after] = ACTIONS(2625), - [anon_sym_catch] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_rescue] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, [924] = { [aux_sym__terminator_token1] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2653), @@ -142952,281 +142718,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [929] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_RBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [930] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_RBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, - [931] = { + [930] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_RBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_RPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_RBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2639), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), }, - [932] = { + [931] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2621), [anon_sym_RPAREN] = ACTIONS(2621), @@ -143318,6 +142992,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, + [932] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), + }, [933] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2633), @@ -143503,374 +143269,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2615), }, [935] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_RPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_RBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), - }, - [936] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_RBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [937] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_RBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2651), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, - [938] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_RPAREN] = ACTIONS(2657), - [aux_sym_identifier_token1] = ACTIONS(2657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), - [sym_alias] = ACTIONS(2657), - [sym_integer] = ACTIONS(2657), - [sym_float] = ACTIONS(2657), - [sym_char] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_atom] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_COMMA] = ACTIONS(2657), - [sym_keyword] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_AT] = ACTIONS(2657), - [anon_sym_LT_DASH] = ACTIONS(2657), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), - [anon_sym_when] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_EQ_GT] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2657), - [anon_sym_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_or] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [anon_sym_EQ_TILDE] = ACTIONS(2657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_PIPE_GT] = ACTIONS(2657), - [anon_sym_LT_LT_LT] = ACTIONS(2657), - [anon_sym_GT_GT_GT] = ACTIONS(2657), - [anon_sym_LT_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_PIPE_GT] = ACTIONS(2657), - [anon_sym_in] = ACTIONS(2657), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), - [anon_sym_SLASH_SLASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), - [anon_sym_LT_GT] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_STAR_STAR] = ACTIONS(2657), - [anon_sym_DASH_GT] = ACTIONS(2657), - [anon_sym_DOT] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_fn] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2655), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2655), - [sym__not_in] = ACTIONS(2655), - [sym__quoted_atom_start] = ACTIONS(2655), - }, - [939] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2661), [anon_sym_RPAREN] = ACTIONS(2661), @@ -143962,7 +143360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2659), [sym__quoted_atom_start] = ACTIONS(2659), }, - [940] = { + [936] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2621), [anon_sym_RPAREN] = ACTIONS(2621), @@ -144054,144 +143452,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [941] = { + [937] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_RPAREN] = ACTIONS(2637), - [aux_sym_identifier_token1] = ACTIONS(2637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), - [sym_alias] = ACTIONS(2637), - [sym_integer] = ACTIONS(2637), - [sym_float] = ACTIONS(2637), - [sym_char] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_nil] = ACTIONS(2637), - [sym_atom] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_RBRACK] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [sym_keyword] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), - [anon_sym_when] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), - [anon_sym_and] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_EQ_TILDE] = ACTIONS(2637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_PIPE_GT] = ACTIONS(2637), - [anon_sym_LT_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_LT_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_PIPE_GT] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), - [anon_sym_SLASH_SLASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), - [anon_sym_LT_GT] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_STAR_STAR] = ACTIONS(2637), - [anon_sym_DASH_GT] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2635), - [sym__not_in] = ACTIONS(2635), - [sym__quoted_atom_start] = ACTIONS(2635), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, - [942] = { + [938] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_RBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [939] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_RBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [940] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_RBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), [anon_sym_PIPE_PIPE] = ACTIONS(2649), [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), [anon_sym_or] = ACTIONS(2649), @@ -144238,7 +143820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2647), [sym__quoted_atom_start] = ACTIONS(2647), }, - [943] = { + [941] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2629), [anon_sym_RPAREN] = ACTIONS(2629), @@ -144330,7 +143912,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2627), [sym__quoted_atom_start] = ACTIONS(2627), }, - [944] = { + [942] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_RPAREN] = ACTIONS(2653), + [aux_sym_identifier_token1] = ACTIONS(2653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), + [sym_alias] = ACTIONS(2653), + [sym_integer] = ACTIONS(2653), + [sym_float] = ACTIONS(2653), + [sym_char] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_nil] = ACTIONS(2653), + [sym_atom] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_RBRACK] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [sym_keyword] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), + [anon_sym_when] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_EQ_GT] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_or] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), + [anon_sym_and] = ACTIONS(2653), + [anon_sym_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ] = ACTIONS(2653), + [anon_sym_EQ_TILDE] = ACTIONS(2653), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), + [anon_sym_LT_EQ] = ACTIONS(2653), + [anon_sym_GT_EQ] = ACTIONS(2653), + [anon_sym_PIPE_GT] = ACTIONS(2653), + [anon_sym_LT_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT_GT] = ACTIONS(2653), + [anon_sym_LT_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_PIPE_GT] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), + [anon_sym_LT_GT] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_STAR_STAR] = ACTIONS(2653), + [anon_sym_DASH_GT] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2651), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2651), + [sym__not_in] = ACTIONS(2651), + [sym__quoted_atom_start] = ACTIONS(2651), + }, + [943] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2645), [anon_sym_RPAREN] = ACTIONS(2645), @@ -144422,8 +144096,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, + [944] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2657), + [aux_sym_identifier_token1] = ACTIONS(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), + [sym_alias] = ACTIONS(2657), + [sym_integer] = ACTIONS(2657), + [sym_float] = ACTIONS(2657), + [sym_char] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_nil] = ACTIONS(2657), + [sym_atom] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_RBRACK] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [sym_keyword] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), + [anon_sym_when] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), + [anon_sym_and] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_EQ_TILDE] = ACTIONS(2657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_PIPE_GT] = ACTIONS(2657), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_PIPE_GT] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), + [anon_sym_LT_GT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_STAR_STAR] = ACTIONS(2657), + [anon_sym_DASH_GT] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_LBRACK2] = ACTIONS(2655), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2655), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2655), + [sym__not_in] = ACTIONS(2655), + [sym__quoted_atom_start] = ACTIONS(2655), + }, [945] = { - [ts_builtin_sym_end] = ACTIONS(2631), [aux_sym__terminator_token1] = ACTIONS(2631), [anon_sym_SEMI] = ACTIONS(2633), [anon_sym_LPAREN] = ACTIONS(2633), @@ -144502,6 +144267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2633), [anon_sym_DOT] = ACTIONS(2633), [anon_sym_do] = ACTIONS(2633), + [anon_sym_end] = ACTIONS(2633), [anon_sym_fn] = ACTIONS(2633), [anon_sym_LPAREN2] = ACTIONS(2631), [anon_sym_LBRACK2] = ACTIONS(2631), @@ -144514,10 +144280,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2631), }, [946] = { - [ts_builtin_sym_end] = ACTIONS(2627), [aux_sym__terminator_token1] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2629), [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_RPAREN] = ACTIONS(2629), [aux_sym_identifier_token1] = ACTIONS(2629), [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), [sym_alias] = ACTIONS(2629), @@ -144605,10 +144371,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2627), }, [947] = { - [ts_builtin_sym_end] = ACTIONS(2659), [aux_sym__terminator_token1] = ACTIONS(2659), [anon_sym_SEMI] = ACTIONS(2661), [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_RPAREN] = ACTIONS(2661), [aux_sym_identifier_token1] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), [sym_alias] = ACTIONS(2661), @@ -144696,374 +144462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2659), }, [948] = { - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_end] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2651), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, - [949] = { - [aux_sym__terminator_token1] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_end] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [950] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_end] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [951] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [952] = { + [ts_builtin_sym_end] = ACTIONS(2623), [aux_sym__terminator_token1] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2625), [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), [aux_sym_identifier_token1] = ACTIONS(2625), [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), [sym_alias] = ACTIONS(2625), @@ -145150,11 +144552,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2623), [sym__quoted_atom_start] = ACTIONS(2623), }, - [953] = { + [949] = { + [ts_builtin_sym_end] = ACTIONS(2627), + [aux_sym__terminator_token1] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), + }, + [950] = { + [aux_sym__terminator_token1] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_end] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), + }, + [951] = { [aux_sym__terminator_token1] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2625), [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), [aux_sym_identifier_token1] = ACTIONS(2625), [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), [sym_alias] = ACTIONS(2625), @@ -145230,6 +144813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2625), [anon_sym_DOT] = ACTIONS(2625), [anon_sym_do] = ACTIONS(2625), + [anon_sym_end] = ACTIONS(2625), [anon_sym_fn] = ACTIONS(2625), [anon_sym_LPAREN2] = ACTIONS(2623), [anon_sym_LBRACK2] = ACTIONS(2623), @@ -145241,284 +144825,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2623), [sym__quoted_atom_start] = ACTIONS(2623), }, - [954] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), + [952] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, - [955] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [953] = { + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_end] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2635), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, - [956] = { - [aux_sym__terminator_token1] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), + [954] = { + [ts_builtin_sym_end] = ACTIONS(2635), + [aux_sym__terminator_token1] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [aux_sym_identifier_token1] = ACTIONS(2637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), + [sym_alias] = ACTIONS(2637), + [sym_integer] = ACTIONS(2637), + [sym_float] = ACTIONS(2637), + [sym_char] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_nil] = ACTIONS(2637), + [sym_atom] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_GT] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_SLASH] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_COMMA] = ACTIONS(2637), + [sym_keyword] = ACTIONS(2637), + [anon_sym_LT_LT] = ACTIONS(2637), + [anon_sym_PERCENT] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PLUS] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_CARET] = ACTIONS(2637), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), + [anon_sym_not] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_LT_DASH] = ACTIONS(2637), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), + [anon_sym_when] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_EQ_GT] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2637), + [anon_sym_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), + [anon_sym_or] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), + [anon_sym_and] = ACTIONS(2637), + [anon_sym_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ] = ACTIONS(2637), + [anon_sym_EQ_TILDE] = ACTIONS(2637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), + [anon_sym_LT_EQ] = ACTIONS(2637), + [anon_sym_GT_EQ] = ACTIONS(2637), + [anon_sym_PIPE_GT] = ACTIONS(2637), + [anon_sym_LT_LT_LT] = ACTIONS(2637), + [anon_sym_GT_GT_GT] = ACTIONS(2637), + [anon_sym_LT_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE] = ACTIONS(2637), + [anon_sym_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_TILDE_GT] = ACTIONS(2637), + [anon_sym_LT_PIPE_GT] = ACTIONS(2637), + [anon_sym_in] = ACTIONS(2637), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), + [anon_sym_SLASH_SLASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), + [anon_sym_LT_GT] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_STAR_STAR] = ACTIONS(2637), + [anon_sym_DASH_GT] = ACTIONS(2637), + [anon_sym_DOT] = ACTIONS(2637), + [anon_sym_do] = ACTIONS(2637), + [anon_sym_fn] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_do] = ACTIONS(2635), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), + [sym__before_unary_op] = ACTIONS(2635), + [sym__not_in] = ACTIONS(2635), + [sym__quoted_atom_start] = ACTIONS(2635), }, - [957] = { + [955] = { + [aux_sym__terminator_token1] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [aux_sym_identifier_token1] = ACTIONS(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), + [sym_alias] = ACTIONS(2657), + [sym_integer] = ACTIONS(2657), + [sym_float] = ACTIONS(2657), + [sym_char] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_nil] = ACTIONS(2657), + [sym_atom] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [sym_keyword] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), + [anon_sym_when] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), + [anon_sym_and] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_EQ_TILDE] = ACTIONS(2657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_PIPE_GT] = ACTIONS(2657), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_PIPE_GT] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), + [anon_sym_LT_GT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_STAR_STAR] = ACTIONS(2657), + [anon_sym_DASH_GT] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_end] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_LBRACK2] = ACTIONS(2655), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2655), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2655), + [sym__not_in] = ACTIONS(2655), + [sym__quoted_atom_start] = ACTIONS(2655), + }, + [956] = { [aux_sym__terminator_token1] = ACTIONS(2615), [anon_sym_SEMI] = ACTIONS(2617), [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), [aux_sym_identifier_token1] = ACTIONS(2617), [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), [sym_alias] = ACTIONS(2617), @@ -145594,6 +145268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2617), [anon_sym_DOT] = ACTIONS(2617), [anon_sym_do] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), [anon_sym_fn] = ACTIONS(2617), [anon_sym_LPAREN2] = ACTIONS(2615), [anon_sym_LBRACK2] = ACTIONS(2615), @@ -145605,7 +145280,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2615), [sym__quoted_atom_start] = ACTIONS(2615), }, + [957] = { + [aux_sym__terminator_token1] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2661), + [aux_sym_identifier_token1] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), + [sym_alias] = ACTIONS(2661), + [sym_integer] = ACTIONS(2661), + [sym_float] = ACTIONS(2661), + [sym_char] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_nil] = ACTIONS(2661), + [sym_atom] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_COMMA] = ACTIONS(2661), + [sym_keyword] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2661), + [anon_sym_PERCENT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2661), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_LT_DASH] = ACTIONS(2661), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2661), + [anon_sym_when] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_EQ_GT] = ACTIONS(2661), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_PIPE_PIPE] = ACTIONS(2661), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2661), + [anon_sym_or] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2661), + [anon_sym_and] = ACTIONS(2661), + [anon_sym_EQ_EQ] = ACTIONS(2661), + [anon_sym_BANG_EQ] = ACTIONS(2661), + [anon_sym_EQ_TILDE] = ACTIONS(2661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2661), + [anon_sym_PIPE_GT] = ACTIONS(2661), + [anon_sym_LT_LT_LT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2661), + [anon_sym_LT_LT_TILDE] = ACTIONS(2661), + [anon_sym_TILDE_GT_GT] = ACTIONS(2661), + [anon_sym_LT_TILDE] = ACTIONS(2661), + [anon_sym_TILDE_GT] = ACTIONS(2661), + [anon_sym_LT_TILDE_GT] = ACTIONS(2661), + [anon_sym_LT_PIPE_GT] = ACTIONS(2661), + [anon_sym_in] = ACTIONS(2661), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2661), + [anon_sym_LT_GT] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_STAR_STAR] = ACTIONS(2661), + [anon_sym_DASH_GT] = ACTIONS(2661), + [anon_sym_DOT] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_end] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_LBRACK2] = ACTIONS(2659), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2659), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2659), + [sym__not_in] = ACTIONS(2659), + [sym__quoted_atom_start] = ACTIONS(2659), + }, [958] = { + [aux_sym__terminator_token1] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2657), + [aux_sym_identifier_token1] = ACTIONS(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), + [sym_alias] = ACTIONS(2657), + [sym_integer] = ACTIONS(2657), + [sym_float] = ACTIONS(2657), + [sym_char] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_nil] = ACTIONS(2657), + [sym_atom] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [sym_keyword] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), + [anon_sym_when] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), + [anon_sym_and] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_EQ_TILDE] = ACTIONS(2657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_PIPE_GT] = ACTIONS(2657), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_PIPE_GT] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), + [anon_sym_LT_GT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_STAR_STAR] = ACTIONS(2657), + [anon_sym_DASH_GT] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_LBRACK2] = ACTIONS(2655), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2655), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2655), + [sym__not_in] = ACTIONS(2655), + [sym__quoted_atom_start] = ACTIONS(2655), + }, + [959] = { [aux_sym__terminator_token1] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2653), [anon_sym_LPAREN] = ACTIONS(2653), @@ -145696,189 +145553,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, - [959] = { - [aux_sym__terminator_token1] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_end] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), - }, [960] = { - [aux_sym__terminator_token1] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2645), - [aux_sym_identifier_token1] = ACTIONS(2645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), - [sym_alias] = ACTIONS(2645), - [sym_integer] = ACTIONS(2645), - [sym_float] = ACTIONS(2645), - [sym_char] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2645), - [anon_sym_false] = ACTIONS(2645), - [anon_sym_nil] = ACTIONS(2645), - [sym_atom] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_GT] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2645), - [anon_sym_SLASH] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_COMMA] = ACTIONS(2645), - [sym_keyword] = ACTIONS(2645), - [anon_sym_LT_LT] = ACTIONS(2645), - [anon_sym_PERCENT] = ACTIONS(2645), - [anon_sym_DOT_DOT] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_PLUS] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_CARET] = ACTIONS(2645), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), - [anon_sym_not] = ACTIONS(2645), - [anon_sym_AT] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2645), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), - [anon_sym_when] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_EQ_GT] = ACTIONS(2645), - [anon_sym_EQ] = ACTIONS(2645), - [anon_sym_PIPE_PIPE] = ACTIONS(2645), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), - [anon_sym_or] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), - [anon_sym_and] = ACTIONS(2645), - [anon_sym_EQ_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ] = ACTIONS(2645), - [anon_sym_EQ_TILDE] = ACTIONS(2645), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), - [anon_sym_LT_EQ] = ACTIONS(2645), - [anon_sym_GT_EQ] = ACTIONS(2645), - [anon_sym_PIPE_GT] = ACTIONS(2645), - [anon_sym_LT_LT_LT] = ACTIONS(2645), - [anon_sym_GT_GT_GT] = ACTIONS(2645), - [anon_sym_LT_LT_TILDE] = ACTIONS(2645), - [anon_sym_TILDE_GT_GT] = ACTIONS(2645), - [anon_sym_LT_TILDE] = ACTIONS(2645), - [anon_sym_TILDE_GT] = ACTIONS(2645), - [anon_sym_LT_TILDE_GT] = ACTIONS(2645), - [anon_sym_LT_PIPE_GT] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), - [anon_sym_SLASH_SLASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), - [anon_sym_LT_GT] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_STAR_STAR] = ACTIONS(2645), - [anon_sym_DASH_GT] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(2645), - [anon_sym_do] = ACTIONS(2645), - [anon_sym_end] = ACTIONS(2645), - [anon_sym_fn] = ACTIONS(2645), - [anon_sym_LPAREN2] = ACTIONS(2643), - [anon_sym_LBRACK2] = ACTIONS(2643), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2643), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2643), - [sym__not_in] = ACTIONS(2643), - [sym__quoted_atom_start] = ACTIONS(2643), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, [961] = { + [ts_builtin_sym_end] = ACTIONS(2619), [aux_sym__terminator_token1] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(2621), @@ -145957,7 +145724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2621), [anon_sym_DOT] = ACTIONS(2621), [anon_sym_do] = ACTIONS(2621), - [anon_sym_end] = ACTIONS(2621), [anon_sym_fn] = ACTIONS(2621), [anon_sym_LPAREN2] = ACTIONS(2619), [anon_sym_LBRACK2] = ACTIONS(2619), @@ -145970,279 +145736,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2619), }, [962] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [ts_builtin_sym_end] = ACTIONS(2651), + [aux_sym__terminator_token1] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [aux_sym_identifier_token1] = ACTIONS(2653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), + [sym_alias] = ACTIONS(2653), + [sym_integer] = ACTIONS(2653), + [sym_float] = ACTIONS(2653), + [sym_char] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_nil] = ACTIONS(2653), + [sym_atom] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [sym_keyword] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), + [anon_sym_when] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_EQ_GT] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_or] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), + [anon_sym_and] = ACTIONS(2653), + [anon_sym_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ] = ACTIONS(2653), + [anon_sym_EQ_TILDE] = ACTIONS(2653), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), + [anon_sym_LT_EQ] = ACTIONS(2653), + [anon_sym_GT_EQ] = ACTIONS(2653), + [anon_sym_PIPE_GT] = ACTIONS(2653), + [anon_sym_LT_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT_GT] = ACTIONS(2653), + [anon_sym_LT_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_PIPE_GT] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), + [anon_sym_LT_GT] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_STAR_STAR] = ACTIONS(2653), + [anon_sym_DASH_GT] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2651), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2651), + [sym__not_in] = ACTIONS(2651), + [sym__quoted_atom_start] = ACTIONS(2651), }, [963] = { - [aux_sym__terminator_token1] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_RPAREN] = ACTIONS(2661), - [aux_sym_identifier_token1] = ACTIONS(2661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), - [sym_alias] = ACTIONS(2661), - [sym_integer] = ACTIONS(2661), - [sym_float] = ACTIONS(2661), - [sym_char] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_nil] = ACTIONS(2661), - [sym_atom] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_GT] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [sym_keyword] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2661), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2661), - [anon_sym_when] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_EQ_GT] = ACTIONS(2661), - [anon_sym_EQ] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2661), - [anon_sym_and] = ACTIONS(2661), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_EQ_TILDE] = ACTIONS(2661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_PIPE_GT] = ACTIONS(2661), - [anon_sym_LT_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_LT_LT_TILDE] = ACTIONS(2661), - [anon_sym_TILDE_GT_GT] = ACTIONS(2661), - [anon_sym_LT_TILDE] = ACTIONS(2661), - [anon_sym_TILDE_GT] = ACTIONS(2661), - [anon_sym_LT_TILDE_GT] = ACTIONS(2661), - [anon_sym_LT_PIPE_GT] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2661), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2661), - [anon_sym_SLASH_SLASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2661), - [anon_sym_LT_GT] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_STAR_STAR] = ACTIONS(2661), - [anon_sym_DASH_GT] = ACTIONS(2661), - [anon_sym_DOT] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_fn] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_LBRACK2] = ACTIONS(2659), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2659), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2659), - [sym__not_in] = ACTIONS(2659), - [sym__quoted_atom_start] = ACTIONS(2659), - }, - [964] = { - [aux_sym__terminator_token1] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [aux_sym_identifier_token1] = ACTIONS(2657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), - [sym_alias] = ACTIONS(2657), - [sym_integer] = ACTIONS(2657), - [sym_float] = ACTIONS(2657), - [sym_char] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_atom] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_COMMA] = ACTIONS(2657), - [sym_keyword] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_AT] = ACTIONS(2657), - [anon_sym_LT_DASH] = ACTIONS(2657), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), - [anon_sym_when] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_EQ_GT] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2657), - [anon_sym_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_or] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [anon_sym_EQ_TILDE] = ACTIONS(2657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_PIPE_GT] = ACTIONS(2657), - [anon_sym_LT_LT_LT] = ACTIONS(2657), - [anon_sym_GT_GT_GT] = ACTIONS(2657), - [anon_sym_LT_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_PIPE_GT] = ACTIONS(2657), - [anon_sym_in] = ACTIONS(2657), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), - [anon_sym_SLASH_SLASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), - [anon_sym_LT_GT] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_STAR_STAR] = ACTIONS(2657), - [anon_sym_DASH_GT] = ACTIONS(2657), - [anon_sym_DOT] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_end] = ACTIONS(2657), - [anon_sym_fn] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2655), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2655), - [sym__not_in] = ACTIONS(2655), - [sym__quoted_atom_start] = ACTIONS(2655), - }, - [965] = { [ts_builtin_sym_end] = ACTIONS(2655), [aux_sym__terminator_token1] = ACTIONS(2655), [anon_sym_SEMI] = ACTIONS(2657), @@ -146333,7 +145917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2655), [sym__quoted_atom_start] = ACTIONS(2655), }, - [966] = { + [964] = { + [ts_builtin_sym_end] = ACTIONS(2639), [aux_sym__terminator_token1] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2641), [anon_sym_LPAREN] = ACTIONS(2641), @@ -146412,7 +145997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2641), [anon_sym_DOT] = ACTIONS(2641), [anon_sym_do] = ACTIONS(2641), - [anon_sym_end] = ACTIONS(2641), [anon_sym_fn] = ACTIONS(2641), [anon_sym_LPAREN2] = ACTIONS(2639), [anon_sym_LBRACK2] = ACTIONS(2639), @@ -146424,280 +146008,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2639), [sym__quoted_atom_start] = ACTIONS(2639), }, - [967] = { - [aux_sym__terminator_token1] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [aux_sym_identifier_token1] = ACTIONS(2637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), - [sym_alias] = ACTIONS(2637), - [sym_integer] = ACTIONS(2637), - [sym_float] = ACTIONS(2637), - [sym_char] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_nil] = ACTIONS(2637), - [sym_atom] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [sym_keyword] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), - [anon_sym_when] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), - [anon_sym_and] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_EQ_TILDE] = ACTIONS(2637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_PIPE_GT] = ACTIONS(2637), - [anon_sym_LT_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_LT_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_PIPE_GT] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), - [anon_sym_SLASH_SLASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), - [anon_sym_LT_GT] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_STAR_STAR] = ACTIONS(2637), - [anon_sym_DASH_GT] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_end] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2635), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2635), - [sym__not_in] = ACTIONS(2635), - [sym__quoted_atom_start] = ACTIONS(2635), - }, - [968] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_end] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), + [965] = { + [ts_builtin_sym_end] = ACTIONS(2643), + [aux_sym__terminator_token1] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [aux_sym_identifier_token1] = ACTIONS(2645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2645), + [sym_alias] = ACTIONS(2645), + [sym_integer] = ACTIONS(2645), + [sym_float] = ACTIONS(2645), + [sym_char] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_nil] = ACTIONS(2645), + [sym_atom] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_GT] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_SLASH] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_COMMA] = ACTIONS(2645), + [sym_keyword] = ACTIONS(2645), + [anon_sym_LT_LT] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PLUS] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_CARET] = ACTIONS(2645), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2645), + [anon_sym_not] = ACTIONS(2645), + [anon_sym_AT] = ACTIONS(2645), + [anon_sym_LT_DASH] = ACTIONS(2645), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2645), + [anon_sym_when] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_EQ_GT] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2645), + [anon_sym_or] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2645), + [anon_sym_and] = ACTIONS(2645), + [anon_sym_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ] = ACTIONS(2645), + [anon_sym_EQ_TILDE] = ACTIONS(2645), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2645), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2645), + [anon_sym_LT_EQ] = ACTIONS(2645), + [anon_sym_GT_EQ] = ACTIONS(2645), + [anon_sym_PIPE_GT] = ACTIONS(2645), + [anon_sym_LT_LT_LT] = ACTIONS(2645), + [anon_sym_GT_GT_GT] = ACTIONS(2645), + [anon_sym_LT_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE] = ACTIONS(2645), + [anon_sym_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_TILDE_GT] = ACTIONS(2645), + [anon_sym_LT_PIPE_GT] = ACTIONS(2645), + [anon_sym_in] = ACTIONS(2645), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2645), + [anon_sym_LT_GT] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_STAR_STAR] = ACTIONS(2645), + [anon_sym_DASH_GT] = ACTIONS(2645), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_do] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_LPAREN2] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2631), + [sym__newline_before_do] = ACTIONS(2643), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), + [sym__before_unary_op] = ACTIONS(2643), + [sym__not_in] = ACTIONS(2643), + [sym__quoted_atom_start] = ACTIONS(2643), }, - [969] = { - [aux_sym__terminator_token1] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_end] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), + [966] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [aux_sym__terminator_token1] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_do] = ACTIONS(2647), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), }, - [970] = { + [967] = { + [ts_builtin_sym_end] = ACTIONS(2659), [aux_sym__terminator_token1] = ACTIONS(2659), [anon_sym_SEMI] = ACTIONS(2661), [anon_sym_LPAREN] = ACTIONS(2661), @@ -146776,7 +146270,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2661), [anon_sym_DOT] = ACTIONS(2661), [anon_sym_do] = ACTIONS(2661), - [anon_sym_end] = ACTIONS(2661), [anon_sym_fn] = ACTIONS(2661), [anon_sym_LPAREN2] = ACTIONS(2659), [anon_sym_LBRACK2] = ACTIONS(2659), @@ -146788,280 +146281,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2659), [sym__quoted_atom_start] = ACTIONS(2659), }, - [971] = { - [aux_sym__terminator_token1] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_RPAREN] = ACTIONS(2637), - [aux_sym_identifier_token1] = ACTIONS(2637), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), - [sym_alias] = ACTIONS(2637), - [sym_integer] = ACTIONS(2637), - [sym_float] = ACTIONS(2637), - [sym_char] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2637), - [anon_sym_false] = ACTIONS(2637), - [anon_sym_nil] = ACTIONS(2637), - [sym_atom] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2637), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2637), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_GT] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_SLASH] = ACTIONS(2637), - [anon_sym_TILDE] = ACTIONS(2637), - [anon_sym_COMMA] = ACTIONS(2637), - [sym_keyword] = ACTIONS(2637), - [anon_sym_LT_LT] = ACTIONS(2637), - [anon_sym_PERCENT] = ACTIONS(2637), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_PLUS] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_CARET] = ACTIONS(2637), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2637), - [anon_sym_not] = ACTIONS(2637), - [anon_sym_AT] = ACTIONS(2637), - [anon_sym_LT_DASH] = ACTIONS(2637), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2637), - [anon_sym_when] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_EQ_GT] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2637), - [anon_sym_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2637), - [anon_sym_or] = ACTIONS(2637), - [anon_sym_AMP_AMP] = ACTIONS(2637), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2637), - [anon_sym_and] = ACTIONS(2637), - [anon_sym_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ] = ACTIONS(2637), - [anon_sym_EQ_TILDE] = ACTIONS(2637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2637), - [anon_sym_LT_EQ] = ACTIONS(2637), - [anon_sym_GT_EQ] = ACTIONS(2637), - [anon_sym_PIPE_GT] = ACTIONS(2637), - [anon_sym_LT_LT_LT] = ACTIONS(2637), - [anon_sym_GT_GT_GT] = ACTIONS(2637), - [anon_sym_LT_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE] = ACTIONS(2637), - [anon_sym_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_TILDE_GT] = ACTIONS(2637), - [anon_sym_LT_PIPE_GT] = ACTIONS(2637), - [anon_sym_in] = ACTIONS(2637), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2637), - [anon_sym_SLASH_SLASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH] = ACTIONS(2637), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2637), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2637), - [anon_sym_LT_GT] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_STAR_STAR] = ACTIONS(2637), - [anon_sym_DASH_GT] = ACTIONS(2637), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_do] = ACTIONS(2637), - [anon_sym_fn] = ACTIONS(2637), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_LBRACK2] = ACTIONS(2635), + [968] = { + [ts_builtin_sym_end] = ACTIONS(2619), + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2635), + [sym__newline_before_do] = ACTIONS(2619), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2635), - [sym__not_in] = ACTIONS(2635), - [sym__quoted_atom_start] = ACTIONS(2635), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), }, - [972] = { - [aux_sym__terminator_token1] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [aux_sym_identifier_token1] = ACTIONS(2633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), - [sym_alias] = ACTIONS(2633), - [sym_integer] = ACTIONS(2633), - [sym_float] = ACTIONS(2633), - [sym_char] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2633), - [anon_sym_false] = ACTIONS(2633), - [anon_sym_nil] = ACTIONS(2633), - [sym_atom] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2633), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_GT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SLASH] = ACTIONS(2633), - [anon_sym_TILDE] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [sym_keyword] = ACTIONS(2633), - [anon_sym_LT_LT] = ACTIONS(2633), - [anon_sym_PERCENT] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_CARET] = ACTIONS(2633), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), - [anon_sym_not] = ACTIONS(2633), - [anon_sym_AT] = ACTIONS(2633), - [anon_sym_LT_DASH] = ACTIONS(2633), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), - [anon_sym_when] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_EQ_GT] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), - [anon_sym_or] = ACTIONS(2633), - [anon_sym_AMP_AMP] = ACTIONS(2633), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), - [anon_sym_and] = ACTIONS(2633), - [anon_sym_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ] = ACTIONS(2633), - [anon_sym_EQ_TILDE] = ACTIONS(2633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), - [anon_sym_LT_EQ] = ACTIONS(2633), - [anon_sym_GT_EQ] = ACTIONS(2633), - [anon_sym_PIPE_GT] = ACTIONS(2633), - [anon_sym_LT_LT_LT] = ACTIONS(2633), - [anon_sym_GT_GT_GT] = ACTIONS(2633), - [anon_sym_LT_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE] = ACTIONS(2633), - [anon_sym_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_TILDE_GT] = ACTIONS(2633), - [anon_sym_LT_PIPE_GT] = ACTIONS(2633), - [anon_sym_in] = ACTIONS(2633), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), - [anon_sym_SLASH_SLASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2633), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), - [anon_sym_LT_GT] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_STAR_STAR] = ACTIONS(2633), - [anon_sym_DASH_GT] = ACTIONS(2633), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_fn] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_LBRACK2] = ACTIONS(2631), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2631), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2631), - [sym__not_in] = ACTIONS(2631), - [sym__quoted_atom_start] = ACTIONS(2631), - }, - [973] = { - [ts_builtin_sym_end] = ACTIONS(2651), - [aux_sym__terminator_token1] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [aux_sym_identifier_token1] = ACTIONS(2653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), - [sym_alias] = ACTIONS(2653), - [sym_integer] = ACTIONS(2653), - [sym_float] = ACTIONS(2653), - [sym_char] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2653), - [anon_sym_false] = ACTIONS(2653), - [anon_sym_nil] = ACTIONS(2653), - [sym_atom] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_GT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SLASH] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_COMMA] = ACTIONS(2653), - [sym_keyword] = ACTIONS(2653), - [anon_sym_LT_LT] = ACTIONS(2653), - [anon_sym_PERCENT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PLUS] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_CARET] = ACTIONS(2653), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), - [anon_sym_not] = ACTIONS(2653), - [anon_sym_AT] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2653), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), - [anon_sym_when] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_EQ_GT] = ACTIONS(2653), - [anon_sym_EQ] = ACTIONS(2653), - [anon_sym_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), - [anon_sym_or] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), - [anon_sym_and] = ACTIONS(2653), - [anon_sym_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ] = ACTIONS(2653), - [anon_sym_EQ_TILDE] = ACTIONS(2653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), - [anon_sym_LT_EQ] = ACTIONS(2653), - [anon_sym_GT_EQ] = ACTIONS(2653), - [anon_sym_PIPE_GT] = ACTIONS(2653), - [anon_sym_LT_LT_LT] = ACTIONS(2653), - [anon_sym_GT_GT_GT] = ACTIONS(2653), - [anon_sym_LT_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE] = ACTIONS(2653), - [anon_sym_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_TILDE_GT] = ACTIONS(2653), - [anon_sym_LT_PIPE_GT] = ACTIONS(2653), - [anon_sym_in] = ACTIONS(2653), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), - [anon_sym_SLASH_SLASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), - [anon_sym_LT_GT] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_STAR_STAR] = ACTIONS(2653), - [anon_sym_DASH_GT] = ACTIONS(2653), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_do] = ACTIONS(2653), - [anon_sym_fn] = ACTIONS(2653), - [anon_sym_LPAREN2] = ACTIONS(2651), - [anon_sym_LBRACK2] = ACTIONS(2651), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2651), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2651), - [sym__not_in] = ACTIONS(2651), - [sym__quoted_atom_start] = ACTIONS(2651), - }, - [974] = { + [969] = { [ts_builtin_sym_end] = ACTIONS(2615), [aux_sym__terminator_token1] = ACTIONS(2615), [anon_sym_SEMI] = ACTIONS(2617), @@ -147152,8 +146463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2615), [sym__quoted_atom_start] = ACTIONS(2615), }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(2619), + [970] = { [aux_sym__terminator_token1] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(2621), @@ -147232,6 +146542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2621), [anon_sym_DOT] = ACTIONS(2621), [anon_sym_do] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), [anon_sym_fn] = ACTIONS(2621), [anon_sym_LPAREN2] = ACTIONS(2619), [anon_sym_LBRACK2] = ACTIONS(2619), @@ -147243,102 +146554,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [976] = { - [aux_sym__terminator_token1] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_RPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), - }, - [977] = { - [ts_builtin_sym_end] = ACTIONS(2623), + [971] = { [aux_sym__terminator_token1] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2625), [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_RPAREN] = ACTIONS(2625), [aux_sym_identifier_token1] = ACTIONS(2625), [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), [sym_alias] = ACTIONS(2625), @@ -147425,99 +146645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2623), [sym__quoted_atom_start] = ACTIONS(2623), }, - [978] = { - [aux_sym__terminator_token1] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_RPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), - }, - [979] = { - [ts_builtin_sym_end] = ACTIONS(2619), + [972] = { [aux_sym__terminator_token1] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(2621), @@ -147596,6 +146724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2621), [anon_sym_DOT] = ACTIONS(2621), [anon_sym_do] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2621), [anon_sym_fn] = ACTIONS(2621), [anon_sym_LPAREN2] = ACTIONS(2619), [anon_sym_LBRACK2] = ACTIONS(2619), @@ -147607,7 +146736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [980] = { + [973] = { [ts_builtin_sym_end] = ACTIONS(2619), [aux_sym__terminator_token1] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2621), @@ -147698,7 +146827,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [981] = { + [974] = { + [aux_sym__terminator_token1] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_RPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), + }, + [975] = { [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(2645), @@ -147789,189 +147009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [982] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_RPAREN] = ACTIONS(2661), - [aux_sym_identifier_token1] = ACTIONS(2661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), - [sym_alias] = ACTIONS(2661), - [sym_integer] = ACTIONS(2661), - [sym_float] = ACTIONS(2661), - [sym_char] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_nil] = ACTIONS(2661), - [sym_atom] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_GT] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [sym_keyword] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2661), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2661), - [anon_sym_when] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_EQ_GT] = ACTIONS(2661), - [anon_sym_EQ] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2661), - [anon_sym_and] = ACTIONS(2661), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_EQ_TILDE] = ACTIONS(2661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_PIPE_GT] = ACTIONS(2661), - [anon_sym_LT_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_LT_LT_TILDE] = ACTIONS(2661), - [anon_sym_TILDE_GT_GT] = ACTIONS(2661), - [anon_sym_LT_TILDE] = ACTIONS(2661), - [anon_sym_TILDE_GT] = ACTIONS(2661), - [anon_sym_LT_TILDE_GT] = ACTIONS(2661), - [anon_sym_LT_PIPE_GT] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2661), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2661), - [anon_sym_SLASH_SLASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2661), - [anon_sym_LT_GT] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_STAR_STAR] = ACTIONS(2661), - [anon_sym_DASH_GT] = ACTIONS(2661), - [anon_sym_DOT] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_fn] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_LBRACK2] = ACTIONS(2659), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2659), - [sym__not_in] = ACTIONS(2659), - [sym__quoted_atom_start] = ACTIONS(2659), - }, - [983] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [984] = { + [976] = { [aux_sym__terminator_token1] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2649), [anon_sym_LPAREN] = ACTIONS(2649), @@ -148062,98 +147100,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2647), [sym__quoted_atom_start] = ACTIONS(2647), }, - [985] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [977] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, - [986] = { + [978] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [979] = { + [ts_builtin_sym_end] = ACTIONS(2615), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [980] = { [aux_sym__terminator_token1] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2621), [anon_sym_LPAREN] = ACTIONS(2621), @@ -148244,8 +147464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2619), [sym__quoted_atom_start] = ACTIONS(2619), }, - [987] = { - [ts_builtin_sym_end] = ACTIONS(2647), + [981] = { [aux_sym__terminator_token1] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2649), [anon_sym_LPAREN] = ACTIONS(2649), @@ -148324,6 +147543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2649), [anon_sym_DOT] = ACTIONS(2649), [anon_sym_do] = ACTIONS(2649), + [anon_sym_end] = ACTIONS(2649), [anon_sym_fn] = ACTIONS(2649), [anon_sym_LPAREN2] = ACTIONS(2647), [anon_sym_LBRACK2] = ACTIONS(2647), @@ -148335,8 +147555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2647), [sym__quoted_atom_start] = ACTIONS(2647), }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(2643), + [982] = { [aux_sym__terminator_token1] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(2645), @@ -148415,6 +147634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2645), [anon_sym_DOT] = ACTIONS(2645), [anon_sym_do] = ACTIONS(2645), + [anon_sym_end] = ACTIONS(2645), [anon_sym_fn] = ACTIONS(2645), [anon_sym_LPAREN2] = ACTIONS(2643), [anon_sym_LBRACK2] = ACTIONS(2643), @@ -148426,190 +147646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [989] = { - [aux_sym__terminator_token1] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_RPAREN] = ACTIONS(2657), - [aux_sym_identifier_token1] = ACTIONS(2657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), - [sym_alias] = ACTIONS(2657), - [sym_integer] = ACTIONS(2657), - [sym_float] = ACTIONS(2657), - [sym_char] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_atom] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_COMMA] = ACTIONS(2657), - [sym_keyword] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_AT] = ACTIONS(2657), - [anon_sym_LT_DASH] = ACTIONS(2657), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), - [anon_sym_when] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_EQ_GT] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2657), - [anon_sym_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_or] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [anon_sym_EQ_TILDE] = ACTIONS(2657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_PIPE_GT] = ACTIONS(2657), - [anon_sym_LT_LT_LT] = ACTIONS(2657), - [anon_sym_GT_GT_GT] = ACTIONS(2657), - [anon_sym_LT_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_PIPE_GT] = ACTIONS(2657), - [anon_sym_in] = ACTIONS(2657), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), - [anon_sym_SLASH_SLASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), - [anon_sym_LT_GT] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_STAR_STAR] = ACTIONS(2657), - [anon_sym_DASH_GT] = ACTIONS(2657), - [anon_sym_DOT] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_fn] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2655), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2655), - [sym__not_in] = ACTIONS(2655), - [sym__quoted_atom_start] = ACTIONS(2655), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(2639), + [983] = { [aux_sym__terminator_token1] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2641), [anon_sym_LPAREN] = ACTIONS(2641), @@ -148688,6 +147725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2641), [anon_sym_DOT] = ACTIONS(2641), [anon_sym_do] = ACTIONS(2641), + [anon_sym_end] = ACTIONS(2641), [anon_sym_fn] = ACTIONS(2641), [anon_sym_LPAREN2] = ACTIONS(2639), [anon_sym_LBRACK2] = ACTIONS(2639), @@ -148699,11 +147737,830 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2639), [sym__quoted_atom_start] = ACTIONS(2639), }, + [984] = { + [aux_sym__terminator_token1] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [aux_sym_identifier_token1] = ACTIONS(2653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2653), + [sym_alias] = ACTIONS(2653), + [sym_integer] = ACTIONS(2653), + [sym_float] = ACTIONS(2653), + [sym_char] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_nil] = ACTIONS(2653), + [sym_atom] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_GT] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [sym_keyword] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PLUS] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2653), + [anon_sym_not] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(2653), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2653), + [anon_sym_when] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_EQ_GT] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2653), + [anon_sym_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_or] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2653), + [anon_sym_and] = ACTIONS(2653), + [anon_sym_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ] = ACTIONS(2653), + [anon_sym_EQ_TILDE] = ACTIONS(2653), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2653), + [anon_sym_LT_EQ] = ACTIONS(2653), + [anon_sym_GT_EQ] = ACTIONS(2653), + [anon_sym_PIPE_GT] = ACTIONS(2653), + [anon_sym_LT_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT_GT] = ACTIONS(2653), + [anon_sym_LT_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE] = ACTIONS(2653), + [anon_sym_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_TILDE_GT] = ACTIONS(2653), + [anon_sym_LT_PIPE_GT] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2653), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2653), + [anon_sym_LT_GT] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_STAR_STAR] = ACTIONS(2653), + [anon_sym_DASH_GT] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(2653), + [anon_sym_do] = ACTIONS(2653), + [anon_sym_end] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_LPAREN2] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2651), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2651), + [sym__not_in] = ACTIONS(2651), + [sym__quoted_atom_start] = ACTIONS(2651), + }, + [985] = { + [ts_builtin_sym_end] = ACTIONS(2631), + [aux_sym__terminator_token1] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [aux_sym_identifier_token1] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), + [sym_alias] = ACTIONS(2633), + [sym_integer] = ACTIONS(2633), + [sym_float] = ACTIONS(2633), + [sym_char] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_nil] = ACTIONS(2633), + [sym_atom] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [sym_keyword] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), + [anon_sym_when] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_EQ_GT] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), + [anon_sym_and] = ACTIONS(2633), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_EQ_TILDE] = ACTIONS(2633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_PIPE_GT] = ACTIONS(2633), + [anon_sym_LT_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_LT_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_PIPE_GT] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2633), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), + [anon_sym_LT_GT] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_STAR_STAR] = ACTIONS(2633), + [anon_sym_DASH_GT] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2631), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2631), + [sym__not_in] = ACTIONS(2631), + [sym__quoted_atom_start] = ACTIONS(2631), + }, + [986] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [987] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [988] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [989] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [990] = { + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [anon_sym_RPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [991] = { + [aux_sym__terminator_token1] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_LPAREN] = ACTIONS(2621), + [anon_sym_RPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, [992] = { - [ts_builtin_sym_end] = ACTIONS(2635), + [aux_sym__terminator_token1] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2633), + [aux_sym_identifier_token1] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2633), + [sym_alias] = ACTIONS(2633), + [sym_integer] = ACTIONS(2633), + [sym_float] = ACTIONS(2633), + [sym_char] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_nil] = ACTIONS(2633), + [sym_atom] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [sym_keyword] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_DOT_DOT] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2633), + [anon_sym_not] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2633), + [anon_sym_when] = ACTIONS(2633), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_EQ_GT] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2633), + [anon_sym_and] = ACTIONS(2633), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_EQ_TILDE] = ACTIONS(2633), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_PIPE_GT] = ACTIONS(2633), + [anon_sym_LT_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_LT_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE] = ACTIONS(2633), + [anon_sym_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_TILDE_GT] = ACTIONS(2633), + [anon_sym_LT_PIPE_GT] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2633), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2633), + [anon_sym_LT_GT] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_STAR_STAR] = ACTIONS(2633), + [anon_sym_DASH_GT] = ACTIONS(2633), + [anon_sym_DOT] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_LPAREN2] = ACTIONS(2631), + [anon_sym_LBRACK2] = ACTIONS(2631), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2631), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2631), + [sym__not_in] = ACTIONS(2631), + [sym__quoted_atom_start] = ACTIONS(2631), + }, + [993] = { [aux_sym__terminator_token1] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2637), [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_RPAREN] = ACTIONS(2637), [aux_sym_identifier_token1] = ACTIONS(2637), [anon_sym_DOT_DOT_DOT] = ACTIONS(2637), [sym_alias] = ACTIONS(2637), @@ -148790,371 +148647,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2635), [sym__quoted_atom_start] = ACTIONS(2635), }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, [994] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_end] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, [995] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_RPAREN] = ACTIONS(2661), + [aux_sym_identifier_token1] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), + [sym_alias] = ACTIONS(2661), + [sym_integer] = ACTIONS(2661), + [sym_float] = ACTIONS(2661), + [sym_char] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_nil] = ACTIONS(2661), + [sym_atom] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_RBRACK] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_COMMA] = ACTIONS(2661), + [sym_keyword] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2661), + [anon_sym_PERCENT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2661), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_LT_DASH] = ACTIONS(2661), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2661), + [anon_sym_when] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_EQ_GT] = ACTIONS(2661), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_PIPE_PIPE] = ACTIONS(2661), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2661), + [anon_sym_or] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2661), + [anon_sym_and] = ACTIONS(2661), + [anon_sym_EQ_EQ] = ACTIONS(2661), + [anon_sym_BANG_EQ] = ACTIONS(2661), + [anon_sym_EQ_TILDE] = ACTIONS(2661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2661), + [anon_sym_PIPE_GT] = ACTIONS(2661), + [anon_sym_LT_LT_LT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2661), + [anon_sym_LT_LT_TILDE] = ACTIONS(2661), + [anon_sym_TILDE_GT_GT] = ACTIONS(2661), + [anon_sym_LT_TILDE] = ACTIONS(2661), + [anon_sym_TILDE_GT] = ACTIONS(2661), + [anon_sym_LT_TILDE_GT] = ACTIONS(2661), + [anon_sym_LT_PIPE_GT] = ACTIONS(2661), + [anon_sym_in] = ACTIONS(2661), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2661), + [anon_sym_LT_GT] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_STAR_STAR] = ACTIONS(2661), + [anon_sym_DASH_GT] = ACTIONS(2661), + [anon_sym_DOT] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_LBRACK2] = ACTIONS(2659), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2659), + [sym__not_in] = ACTIONS(2659), + [sym__quoted_atom_start] = ACTIONS(2659), }, [996] = { - [aux_sym__terminator_token1] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [ts_builtin_sym_end] = ACTIONS(2615), + [aux_sym__terminator_token1] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, [997] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2621), + [aux_sym_identifier_token1] = ACTIONS(2621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), + [sym_alias] = ACTIONS(2621), + [sym_integer] = ACTIONS(2621), + [sym_float] = ACTIONS(2621), + [sym_char] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_nil] = ACTIONS(2621), + [sym_atom] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2621), + [anon_sym_LT] = ACTIONS(2621), + [anon_sym_GT] = ACTIONS(2621), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_SLASH] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_COMMA] = ACTIONS(2621), + [sym_keyword] = ACTIONS(2621), + [anon_sym_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT] = ACTIONS(2621), + [anon_sym_PERCENT] = ACTIONS(2621), + [anon_sym_DOT_DOT] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [998] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2637), [aux_sym_identifier_token1] = ACTIONS(2637), @@ -149244,7 +149100,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2635), [sym__quoted_atom_start] = ACTIONS(2635), }, - [998] = { + [999] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2641), + [aux_sym_identifier_token1] = ACTIONS(2641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [sym_alias] = ACTIONS(2641), + [sym_integer] = ACTIONS(2641), + [sym_float] = ACTIONS(2641), + [sym_char] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2641), + [anon_sym_false] = ACTIONS(2641), + [anon_sym_nil] = ACTIONS(2641), + [sym_atom] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [sym_keyword] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PLUS] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), + [anon_sym_not] = ACTIONS(2641), + [anon_sym_AT] = ACTIONS(2641), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), + [anon_sym_when] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), + [anon_sym_and] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_EQ_TILDE] = ACTIONS(2641), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_PIPE_GT] = ACTIONS(2641), + [anon_sym_LT_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_LT_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE] = ACTIONS(2641), + [anon_sym_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_TILDE_GT] = ACTIONS(2641), + [anon_sym_LT_PIPE_GT] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2641), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), + [anon_sym_SLASH_SLASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), + [anon_sym_LT_GT] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_STAR_STAR] = ACTIONS(2641), + [anon_sym_DASH_GT] = ACTIONS(2641), + [anon_sym_DOT] = ACTIONS(2641), + [anon_sym_do] = ACTIONS(2641), + [anon_sym_fn] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_LBRACK2] = ACTIONS(2639), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2639), + [sym__not_in] = ACTIONS(2639), + [sym__quoted_atom_start] = ACTIONS(2639), + }, + [1000] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2645), [aux_sym_identifier_token1] = ACTIONS(2645), @@ -149334,97 +149280,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2643), [sym__quoted_atom_start] = ACTIONS(2643), }, - [999] = { + [1001] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2629), - [aux_sym_identifier_token1] = ACTIONS(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), - [sym_alias] = ACTIONS(2629), - [sym_integer] = ACTIONS(2629), - [sym_float] = ACTIONS(2629), - [sym_char] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2629), - [anon_sym_false] = ACTIONS(2629), - [anon_sym_nil] = ACTIONS(2629), - [sym_atom] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2629), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_GT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SLASH] = ACTIONS(2629), - [anon_sym_TILDE] = ACTIONS(2629), - [anon_sym_COMMA] = ACTIONS(2629), - [sym_keyword] = ACTIONS(2629), - [anon_sym_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT] = ACTIONS(2629), - [anon_sym_PERCENT] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2629), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), - [anon_sym_not] = ACTIONS(2629), - [anon_sym_AT] = ACTIONS(2629), - [anon_sym_LT_DASH] = ACTIONS(2629), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), - [anon_sym_when] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_EQ_GT] = ACTIONS(2629), - [anon_sym_EQ] = ACTIONS(2629), - [anon_sym_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), - [anon_sym_or] = ACTIONS(2629), - [anon_sym_AMP_AMP] = ACTIONS(2629), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), - [anon_sym_and] = ACTIONS(2629), - [anon_sym_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ] = ACTIONS(2629), - [anon_sym_EQ_TILDE] = ACTIONS(2629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), - [anon_sym_LT_EQ] = ACTIONS(2629), - [anon_sym_GT_EQ] = ACTIONS(2629), - [anon_sym_PIPE_GT] = ACTIONS(2629), - [anon_sym_LT_LT_LT] = ACTIONS(2629), - [anon_sym_GT_GT_GT] = ACTIONS(2629), - [anon_sym_LT_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE] = ACTIONS(2629), - [anon_sym_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_TILDE_GT] = ACTIONS(2629), - [anon_sym_LT_PIPE_GT] = ACTIONS(2629), - [anon_sym_in] = ACTIONS(2629), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), - [anon_sym_SLASH_SLASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2629), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), - [anon_sym_LT_GT] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_STAR_STAR] = ACTIONS(2629), - [anon_sym_DASH_GT] = ACTIONS(2629), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_LBRACK2] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2649), + [aux_sym_identifier_token1] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [sym_alias] = ACTIONS(2649), + [sym_integer] = ACTIONS(2649), + [sym_float] = ACTIONS(2649), + [sym_char] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_nil] = ACTIONS(2649), + [sym_atom] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [sym_keyword] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), + [anon_sym_not] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), + [anon_sym_when] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_EQ_GT] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), + [anon_sym_and] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_EQ_TILDE] = ACTIONS(2649), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_PIPE_GT] = ACTIONS(2649), + [anon_sym_LT_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_LT_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE] = ACTIONS(2649), + [anon_sym_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_TILDE_GT] = ACTIONS(2649), + [anon_sym_LT_PIPE_GT] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), + [anon_sym_LT_GT] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_STAR_STAR] = ACTIONS(2649), + [anon_sym_DASH_GT] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_do] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_LPAREN2] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2647), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2627), + [sym__newline_before_do] = ACTIONS(2647), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2627), - [sym__not_in] = ACTIONS(2627), - [sym__quoted_atom_start] = ACTIONS(2627), + [sym__before_unary_op] = ACTIONS(2647), + [sym__not_in] = ACTIONS(2647), + [sym__quoted_atom_start] = ACTIONS(2647), }, - [1000] = { + [1002] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2621), [aux_sym_identifier_token1] = ACTIONS(2621), @@ -149455,340 +149401,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(2621), [anon_sym_DOT_DOT] = ACTIONS(2621), [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [1001] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [1002] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(2659), - [aux_sym__terminator_token1] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [aux_sym_identifier_token1] = ACTIONS(2661), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), - [sym_alias] = ACTIONS(2661), - [sym_integer] = ACTIONS(2661), - [sym_float] = ACTIONS(2661), - [sym_char] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2661), - [anon_sym_false] = ACTIONS(2661), - [anon_sym_nil] = ACTIONS(2661), - [sym_atom] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_GT] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [sym_keyword] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PLUS] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), - [anon_sym_not] = ACTIONS(2661), - [anon_sym_AT] = ACTIONS(2661), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2661), - [anon_sym_when] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_EQ_GT] = ACTIONS(2661), - [anon_sym_EQ] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2661), - [anon_sym_and] = ACTIONS(2661), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_EQ_TILDE] = ACTIONS(2661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_PIPE_GT] = ACTIONS(2661), - [anon_sym_LT_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_LT_LT_TILDE] = ACTIONS(2661), - [anon_sym_TILDE_GT_GT] = ACTIONS(2661), - [anon_sym_LT_TILDE] = ACTIONS(2661), - [anon_sym_TILDE_GT] = ACTIONS(2661), - [anon_sym_LT_TILDE_GT] = ACTIONS(2661), - [anon_sym_LT_PIPE_GT] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2661), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2661), - [anon_sym_SLASH_SLASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2661), - [anon_sym_LT_GT] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_STAR_STAR] = ACTIONS(2661), - [anon_sym_DASH_GT] = ACTIONS(2661), - [anon_sym_DOT] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2661), - [anon_sym_fn] = ACTIONS(2661), - [anon_sym_LPAREN2] = ACTIONS(2659), - [anon_sym_LBRACK2] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2621), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), + [anon_sym_not] = ACTIONS(2621), + [anon_sym_AT] = ACTIONS(2621), + [anon_sym_LT_DASH] = ACTIONS(2621), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), + [anon_sym_when] = ACTIONS(2621), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_EQ_GT] = ACTIONS(2621), + [anon_sym_EQ] = ACTIONS(2621), + [anon_sym_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), + [anon_sym_or] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), + [anon_sym_and] = ACTIONS(2621), + [anon_sym_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ] = ACTIONS(2621), + [anon_sym_EQ_TILDE] = ACTIONS(2621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), + [anon_sym_LT_EQ] = ACTIONS(2621), + [anon_sym_GT_EQ] = ACTIONS(2621), + [anon_sym_PIPE_GT] = ACTIONS(2621), + [anon_sym_LT_LT_LT] = ACTIONS(2621), + [anon_sym_GT_GT_GT] = ACTIONS(2621), + [anon_sym_LT_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE] = ACTIONS(2621), + [anon_sym_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_TILDE_GT] = ACTIONS(2621), + [anon_sym_LT_PIPE_GT] = ACTIONS(2621), + [anon_sym_in] = ACTIONS(2621), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), + [anon_sym_LT_GT] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_STAR_STAR] = ACTIONS(2621), + [anon_sym_DASH_GT] = ACTIONS(2621), + [anon_sym_DOT] = ACTIONS(2621), + [anon_sym_do] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_LPAREN2] = ACTIONS(2619), + [anon_sym_LBRACK2] = ACTIONS(2619), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2619), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2659), - [sym__not_in] = ACTIONS(2659), - [sym__quoted_atom_start] = ACTIONS(2659), + [sym__before_unary_op] = ACTIONS(2619), + [sym__not_in] = ACTIONS(2619), + [sym__quoted_atom_start] = ACTIONS(2619), + }, + [1003] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, [1004] = { - [aux_sym__terminator_token1] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), + [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_RPAREN] = ACTIONS(2661), [aux_sym_identifier_token1] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), [sym_alias] = ACTIONS(2661), @@ -149813,6 +149577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(2661), [sym_keyword] = ACTIONS(2661), [anon_sym_LT_LT] = ACTIONS(2661), + [anon_sym_GT_GT] = ACTIONS(2661), [anon_sym_PERCENT] = ACTIONS(2661), [anon_sym_DOT_DOT] = ACTIONS(2661), [anon_sym_AMP] = ACTIONS(2661), @@ -149868,6 +149633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(2659), [anon_sym_LBRACK2] = ACTIONS(2659), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2659), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(2659), @@ -149876,93 +149642,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1005] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2649), - [aux_sym_identifier_token1] = ACTIONS(2649), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), - [sym_alias] = ACTIONS(2649), - [sym_integer] = ACTIONS(2649), - [sym_float] = ACTIONS(2649), - [sym_char] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2649), - [anon_sym_false] = ACTIONS(2649), - [anon_sym_nil] = ACTIONS(2649), - [sym_atom] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_GT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SLASH] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_COMMA] = ACTIONS(2649), - [sym_keyword] = ACTIONS(2649), - [anon_sym_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT] = ACTIONS(2649), - [anon_sym_PERCENT] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_CARET] = ACTIONS(2649), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2649), - [anon_sym_not] = ACTIONS(2649), - [anon_sym_AT] = ACTIONS(2649), - [anon_sym_LT_DASH] = ACTIONS(2649), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2649), - [anon_sym_when] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_EQ_GT] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2649), - [anon_sym_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2649), - [anon_sym_or] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2649), - [anon_sym_and] = ACTIONS(2649), - [anon_sym_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ] = ACTIONS(2649), - [anon_sym_EQ_TILDE] = ACTIONS(2649), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2649), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2649), - [anon_sym_LT_EQ] = ACTIONS(2649), - [anon_sym_GT_EQ] = ACTIONS(2649), - [anon_sym_PIPE_GT] = ACTIONS(2649), - [anon_sym_LT_LT_LT] = ACTIONS(2649), - [anon_sym_GT_GT_GT] = ACTIONS(2649), - [anon_sym_LT_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE] = ACTIONS(2649), - [anon_sym_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_TILDE_GT] = ACTIONS(2649), - [anon_sym_LT_PIPE_GT] = ACTIONS(2649), - [anon_sym_in] = ACTIONS(2649), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2649), - [anon_sym_SLASH_SLASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2649), - [anon_sym_LT_GT] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_STAR_STAR] = ACTIONS(2649), - [anon_sym_DASH_GT] = ACTIONS(2649), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_do] = ACTIONS(2649), - [anon_sym_fn] = ACTIONS(2649), - [anon_sym_LPAREN2] = ACTIONS(2647), - [anon_sym_LBRACK2] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2629), + [aux_sym_identifier_token1] = ACTIONS(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [sym_alias] = ACTIONS(2629), + [sym_integer] = ACTIONS(2629), + [sym_float] = ACTIONS(2629), + [sym_char] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_nil] = ACTIONS(2629), + [sym_atom] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2629), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2629), + [anon_sym_PIPE] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_COMMA] = ACTIONS(2629), + [sym_keyword] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_DOT_DOT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_PLUS] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2629), + [anon_sym_not] = ACTIONS(2629), + [anon_sym_AT] = ACTIONS(2629), + [anon_sym_LT_DASH] = ACTIONS(2629), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2629), + [anon_sym_when] = ACTIONS(2629), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_or] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2629), + [anon_sym_and] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_EQ_TILDE] = ACTIONS(2629), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2629), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_PIPE_GT] = ACTIONS(2629), + [anon_sym_LT_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_LT_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE] = ACTIONS(2629), + [anon_sym_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_TILDE_GT] = ACTIONS(2629), + [anon_sym_LT_PIPE_GT] = ACTIONS(2629), + [anon_sym_in] = ACTIONS(2629), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2629), + [anon_sym_LT_GT] = ACTIONS(2629), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_STAR_STAR] = ACTIONS(2629), + [anon_sym_DASH_GT] = ACTIONS(2629), + [anon_sym_DOT] = ACTIONS(2629), + [anon_sym_do] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_LPAREN2] = ACTIONS(2627), + [anon_sym_LBRACK2] = ACTIONS(2627), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2647), + [sym__newline_before_do] = ACTIONS(2627), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2647), - [sym__not_in] = ACTIONS(2647), - [sym__quoted_atom_start] = ACTIONS(2647), + [sym__before_unary_op] = ACTIONS(2627), + [sym__not_in] = ACTIONS(2627), + [sym__quoted_atom_start] = ACTIONS(2627), }, [1006] = { [aux_sym__terminator_token1] = ACTIONS(3), @@ -150145,8 +149911,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2619), }, [1008] = { - [aux_sym__terminator_token1] = ACTIONS(3), + [aux_sym__terminator_token1] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_RPAREN] = ACTIONS(2661), [aux_sym_identifier_token1] = ACTIONS(2661), [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), [sym_alias] = ACTIONS(2661), @@ -150171,7 +149939,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(2661), [sym_keyword] = ACTIONS(2661), [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT] = ACTIONS(2661), [anon_sym_PERCENT] = ACTIONS(2661), [anon_sym_DOT_DOT] = ACTIONS(2661), [anon_sym_AMP] = ACTIONS(2661), @@ -150227,7 +149994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN2] = ACTIONS(2659), [anon_sym_LBRACK2] = ACTIONS(2659), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2659), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(2659), @@ -150236,95 +150002,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1009] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2625), - [aux_sym_identifier_token1] = ACTIONS(2625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), - [sym_alias] = ACTIONS(2625), - [sym_integer] = ACTIONS(2625), - [sym_float] = ACTIONS(2625), - [sym_char] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2625), - [anon_sym_false] = ACTIONS(2625), - [anon_sym_nil] = ACTIONS(2625), - [sym_atom] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2625), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2625), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_GT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SLASH] = ACTIONS(2625), - [anon_sym_TILDE] = ACTIONS(2625), - [anon_sym_COMMA] = ACTIONS(2625), - [sym_keyword] = ACTIONS(2625), - [anon_sym_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT] = ACTIONS(2625), - [anon_sym_PERCENT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_CARET] = ACTIONS(2625), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2625), - [anon_sym_not] = ACTIONS(2625), - [anon_sym_AT] = ACTIONS(2625), - [anon_sym_LT_DASH] = ACTIONS(2625), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2625), - [anon_sym_when] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_EQ_GT] = ACTIONS(2625), - [anon_sym_EQ] = ACTIONS(2625), - [anon_sym_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2625), - [anon_sym_or] = ACTIONS(2625), - [anon_sym_AMP_AMP] = ACTIONS(2625), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2625), - [anon_sym_and] = ACTIONS(2625), - [anon_sym_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ] = ACTIONS(2625), - [anon_sym_EQ_TILDE] = ACTIONS(2625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2625), - [anon_sym_LT_EQ] = ACTIONS(2625), - [anon_sym_GT_EQ] = ACTIONS(2625), - [anon_sym_PIPE_GT] = ACTIONS(2625), - [anon_sym_LT_LT_LT] = ACTIONS(2625), - [anon_sym_GT_GT_GT] = ACTIONS(2625), - [anon_sym_LT_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE] = ACTIONS(2625), - [anon_sym_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_TILDE_GT] = ACTIONS(2625), - [anon_sym_LT_PIPE_GT] = ACTIONS(2625), - [anon_sym_in] = ACTIONS(2625), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2625), - [anon_sym_SLASH_SLASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2625), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2625), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2625), - [anon_sym_LT_GT] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_STAR_STAR] = ACTIONS(2625), - [anon_sym_DASH_GT] = ACTIONS(2625), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_LBRACK2] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2623), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2623), - [sym__not_in] = ACTIONS(2623), - [sym__quoted_atom_start] = ACTIONS(2623), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, [1010] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2615), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(2659), [aux_sym__terminator_token1] = ACTIONS(2659), [anon_sym_SEMI] = ACTIONS(2661), [anon_sym_LPAREN] = ACTIONS(2661), @@ -150403,7 +150260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(2661), [anon_sym_DOT] = ACTIONS(2661), [anon_sym_do] = ACTIONS(2661), - [anon_sym_end] = ACTIONS(2661), [anon_sym_fn] = ACTIONS(2661), [anon_sym_LPAREN2] = ACTIONS(2659), [anon_sym_LBRACK2] = ACTIONS(2659), @@ -150414,187 +150270,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2659), [sym__quoted_atom_start] = ACTIONS(2659), }, - [1011] = { + [1012] = { [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2641), - [aux_sym_identifier_token1] = ACTIONS(2641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), - [sym_alias] = ACTIONS(2641), - [sym_integer] = ACTIONS(2641), - [sym_float] = ACTIONS(2641), - [sym_char] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2641), - [anon_sym_false] = ACTIONS(2641), - [anon_sym_nil] = ACTIONS(2641), - [sym_atom] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2641), - [sym_keyword] = ACTIONS(2641), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2641), - [anon_sym_not] = ACTIONS(2641), - [anon_sym_AT] = ACTIONS(2641), - [anon_sym_LT_DASH] = ACTIONS(2641), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2641), - [anon_sym_when] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_EQ_GT] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2641), - [anon_sym_or] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2641), - [anon_sym_and] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ] = ACTIONS(2641), - [anon_sym_EQ_TILDE] = ACTIONS(2641), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2641), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2641), - [anon_sym_GT_EQ] = ACTIONS(2641), - [anon_sym_PIPE_GT] = ACTIONS(2641), - [anon_sym_LT_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT_GT] = ACTIONS(2641), - [anon_sym_LT_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE] = ACTIONS(2641), - [anon_sym_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_TILDE_GT] = ACTIONS(2641), - [anon_sym_LT_PIPE_GT] = ACTIONS(2641), - [anon_sym_in] = ACTIONS(2641), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2641), - [anon_sym_SLASH_SLASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2641), - [anon_sym_LT_GT] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_STAR_STAR] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2641), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_LBRACK2] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2617), + [aux_sym_identifier_token1] = ACTIONS(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), + [sym_alias] = ACTIONS(2617), + [sym_integer] = ACTIONS(2617), + [sym_float] = ACTIONS(2617), + [sym_char] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_nil] = ACTIONS(2617), + [sym_atom] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2617), + [anon_sym_LT] = ACTIONS(2617), + [anon_sym_GT] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_SLASH] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_COMMA] = ACTIONS(2617), + [sym_keyword] = ACTIONS(2617), + [anon_sym_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT] = ACTIONS(2617), + [anon_sym_PERCENT] = ACTIONS(2617), + [anon_sym_DOT_DOT] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_PLUS] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_CARET] = ACTIONS(2617), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), + [anon_sym_not] = ACTIONS(2617), + [anon_sym_AT] = ACTIONS(2617), + [anon_sym_LT_DASH] = ACTIONS(2617), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), + [anon_sym_when] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_EQ_GT] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(2617), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_or] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), + [anon_sym_and] = ACTIONS(2617), + [anon_sym_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ] = ACTIONS(2617), + [anon_sym_EQ_TILDE] = ACTIONS(2617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_PIPE_GT] = ACTIONS(2617), + [anon_sym_LT_LT_LT] = ACTIONS(2617), + [anon_sym_GT_GT_GT] = ACTIONS(2617), + [anon_sym_LT_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE] = ACTIONS(2617), + [anon_sym_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_TILDE_GT] = ACTIONS(2617), + [anon_sym_LT_PIPE_GT] = ACTIONS(2617), + [anon_sym_in] = ACTIONS(2617), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), + [anon_sym_LT_GT] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_STAR_STAR] = ACTIONS(2617), + [anon_sym_DASH_GT] = ACTIONS(2617), + [anon_sym_DOT] = ACTIONS(2617), + [anon_sym_do] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_LPAREN2] = ACTIONS(2615), + [anon_sym_LBRACK2] = ACTIONS(2615), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2639), + [sym__newline_before_do] = ACTIONS(2615), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2639), - [sym__not_in] = ACTIONS(2639), - [sym__quoted_atom_start] = ACTIONS(2639), + [sym__before_unary_op] = ACTIONS(2615), + [sym__not_in] = ACTIONS(2615), + [sym__quoted_atom_start] = ACTIONS(2615), }, - [1012] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2657), - [aux_sym_identifier_token1] = ACTIONS(2657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), - [sym_alias] = ACTIONS(2657), - [sym_integer] = ACTIONS(2657), - [sym_float] = ACTIONS(2657), - [sym_char] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2657), - [anon_sym_false] = ACTIONS(2657), - [anon_sym_nil] = ACTIONS(2657), - [sym_atom] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_GT] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_SLASH] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_COMMA] = ACTIONS(2657), - [sym_keyword] = ACTIONS(2657), - [anon_sym_LT_LT] = ACTIONS(2657), - [anon_sym_GT_GT] = ACTIONS(2657), - [anon_sym_PERCENT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PLUS] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_CARET] = ACTIONS(2657), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), - [anon_sym_not] = ACTIONS(2657), - [anon_sym_AT] = ACTIONS(2657), - [anon_sym_LT_DASH] = ACTIONS(2657), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), - [anon_sym_when] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_EQ_GT] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2657), - [anon_sym_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), - [anon_sym_or] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ] = ACTIONS(2657), - [anon_sym_EQ_TILDE] = ACTIONS(2657), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), - [anon_sym_LT_EQ] = ACTIONS(2657), - [anon_sym_GT_EQ] = ACTIONS(2657), - [anon_sym_PIPE_GT] = ACTIONS(2657), - [anon_sym_LT_LT_LT] = ACTIONS(2657), - [anon_sym_GT_GT_GT] = ACTIONS(2657), - [anon_sym_LT_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE] = ACTIONS(2657), - [anon_sym_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_TILDE_GT] = ACTIONS(2657), - [anon_sym_LT_PIPE_GT] = ACTIONS(2657), - [anon_sym_in] = ACTIONS(2657), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), - [anon_sym_SLASH_SLASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), - [anon_sym_LT_GT] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_STAR_STAR] = ACTIONS(2657), - [anon_sym_DASH_GT] = ACTIONS(2657), - [anon_sym_DOT] = ACTIONS(2657), - [anon_sym_do] = ACTIONS(2657), - [anon_sym_fn] = ACTIONS(2657), - [anon_sym_LPAREN2] = ACTIONS(2655), - [anon_sym_LBRACK2] = ACTIONS(2655), + [1013] = { + [aux_sym__terminator_token1] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2661), + [aux_sym_identifier_token1] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2661), + [sym_alias] = ACTIONS(2661), + [sym_integer] = ACTIONS(2661), + [sym_float] = ACTIONS(2661), + [sym_char] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_nil] = ACTIONS(2661), + [sym_atom] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_COMMA] = ACTIONS(2661), + [sym_keyword] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2661), + [anon_sym_PERCENT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2661), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_LT_DASH] = ACTIONS(2661), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2661), + [anon_sym_when] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_EQ_GT] = ACTIONS(2661), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_PIPE_PIPE] = ACTIONS(2661), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2661), + [anon_sym_or] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2661), + [anon_sym_and] = ACTIONS(2661), + [anon_sym_EQ_EQ] = ACTIONS(2661), + [anon_sym_BANG_EQ] = ACTIONS(2661), + [anon_sym_EQ_TILDE] = ACTIONS(2661), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2661), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2661), + [anon_sym_PIPE_GT] = ACTIONS(2661), + [anon_sym_LT_LT_LT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2661), + [anon_sym_LT_LT_TILDE] = ACTIONS(2661), + [anon_sym_TILDE_GT_GT] = ACTIONS(2661), + [anon_sym_LT_TILDE] = ACTIONS(2661), + [anon_sym_TILDE_GT] = ACTIONS(2661), + [anon_sym_LT_TILDE_GT] = ACTIONS(2661), + [anon_sym_LT_PIPE_GT] = ACTIONS(2661), + [anon_sym_in] = ACTIONS(2661), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2661), + [anon_sym_LT_GT] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_STAR_STAR] = ACTIONS(2661), + [anon_sym_DASH_GT] = ACTIONS(2661), + [anon_sym_DOT] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_end] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_LPAREN2] = ACTIONS(2659), + [anon_sym_LBRACK2] = ACTIONS(2659), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2655), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2655), - [sym__not_in] = ACTIONS(2655), - [sym__quoted_atom_start] = ACTIONS(2655), + [sym__before_unary_op] = ACTIONS(2659), + [sym__not_in] = ACTIONS(2659), + [sym__quoted_atom_start] = ACTIONS(2659), }, - [1013] = { + [1014] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2633), [aux_sym_identifier_token1] = ACTIONS(2633), @@ -150684,7 +150540,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2631), [sym__quoted_atom_start] = ACTIONS(2631), }, - [1014] = { + [1015] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2657), + [aux_sym_identifier_token1] = ACTIONS(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2657), + [sym_alias] = ACTIONS(2657), + [sym_integer] = ACTIONS(2657), + [sym_float] = ACTIONS(2657), + [sym_char] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_nil] = ACTIONS(2657), + [sym_atom] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_COMMA] = ACTIONS(2657), + [sym_keyword] = ACTIONS(2657), + [anon_sym_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT] = ACTIONS(2657), + [anon_sym_PERCENT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PLUS] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_CARET] = ACTIONS(2657), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2657), + [anon_sym_not] = ACTIONS(2657), + [anon_sym_AT] = ACTIONS(2657), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), + [anon_sym_when] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), + [anon_sym_and] = ACTIONS(2657), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_EQ_TILDE] = ACTIONS(2657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_PIPE_GT] = ACTIONS(2657), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_PIPE_GT] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2657), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), + [anon_sym_LT_GT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_STAR_STAR] = ACTIONS(2657), + [anon_sym_DASH_GT] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_do] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_LPAREN2] = ACTIONS(2655), + [anon_sym_LBRACK2] = ACTIONS(2655), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2655), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2655), + [sym__not_in] = ACTIONS(2655), + [sym__quoted_atom_start] = ACTIONS(2655), + }, + [1016] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2653), [aux_sym_identifier_token1] = ACTIONS(2653), @@ -150774,186 +150720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2651), [sym__quoted_atom_start] = ACTIONS(2651), }, - [1015] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2621), - [aux_sym_identifier_token1] = ACTIONS(2621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2621), - [sym_alias] = ACTIONS(2621), - [sym_integer] = ACTIONS(2621), - [sym_float] = ACTIONS(2621), - [sym_char] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2621), - [anon_sym_false] = ACTIONS(2621), - [anon_sym_nil] = ACTIONS(2621), - [sym_atom] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2621), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2621), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_GT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SLASH] = ACTIONS(2621), - [anon_sym_TILDE] = ACTIONS(2621), - [anon_sym_COMMA] = ACTIONS(2621), - [sym_keyword] = ACTIONS(2621), - [anon_sym_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT] = ACTIONS(2621), - [anon_sym_PERCENT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_CARET] = ACTIONS(2621), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2621), - [anon_sym_not] = ACTIONS(2621), - [anon_sym_AT] = ACTIONS(2621), - [anon_sym_LT_DASH] = ACTIONS(2621), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2621), - [anon_sym_when] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_EQ_GT] = ACTIONS(2621), - [anon_sym_EQ] = ACTIONS(2621), - [anon_sym_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2621), - [anon_sym_or] = ACTIONS(2621), - [anon_sym_AMP_AMP] = ACTIONS(2621), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2621), - [anon_sym_and] = ACTIONS(2621), - [anon_sym_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ] = ACTIONS(2621), - [anon_sym_EQ_TILDE] = ACTIONS(2621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2621), - [anon_sym_LT_EQ] = ACTIONS(2621), - [anon_sym_GT_EQ] = ACTIONS(2621), - [anon_sym_PIPE_GT] = ACTIONS(2621), - [anon_sym_LT_LT_LT] = ACTIONS(2621), - [anon_sym_GT_GT_GT] = ACTIONS(2621), - [anon_sym_LT_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE] = ACTIONS(2621), - [anon_sym_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_TILDE_GT] = ACTIONS(2621), - [anon_sym_LT_PIPE_GT] = ACTIONS(2621), - [anon_sym_in] = ACTIONS(2621), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2621), - [anon_sym_SLASH_SLASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2621), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2621), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2621), - [anon_sym_LT_GT] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_STAR_STAR] = ACTIONS(2621), - [anon_sym_DASH_GT] = ACTIONS(2621), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_fn] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_LBRACK2] = ACTIONS(2619), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2619), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [1016] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2617), - [aux_sym_identifier_token1] = ACTIONS(2617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2617), - [sym_alias] = ACTIONS(2617), - [sym_integer] = ACTIONS(2617), - [sym_float] = ACTIONS(2617), - [sym_char] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2617), - [anon_sym_false] = ACTIONS(2617), - [anon_sym_nil] = ACTIONS(2617), - [sym_atom] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2617), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2617), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_GT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SLASH] = ACTIONS(2617), - [anon_sym_TILDE] = ACTIONS(2617), - [anon_sym_COMMA] = ACTIONS(2617), - [sym_keyword] = ACTIONS(2617), - [anon_sym_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT] = ACTIONS(2617), - [anon_sym_PERCENT] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_CARET] = ACTIONS(2617), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2617), - [anon_sym_not] = ACTIONS(2617), - [anon_sym_AT] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2617), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2617), - [anon_sym_when] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_EQ_GT] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(2617), - [anon_sym_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2617), - [anon_sym_or] = ACTIONS(2617), - [anon_sym_AMP_AMP] = ACTIONS(2617), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2617), - [anon_sym_and] = ACTIONS(2617), - [anon_sym_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ] = ACTIONS(2617), - [anon_sym_EQ_TILDE] = ACTIONS(2617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2617), - [anon_sym_LT_EQ] = ACTIONS(2617), - [anon_sym_GT_EQ] = ACTIONS(2617), - [anon_sym_PIPE_GT] = ACTIONS(2617), - [anon_sym_LT_LT_LT] = ACTIONS(2617), - [anon_sym_GT_GT_GT] = ACTIONS(2617), - [anon_sym_LT_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE] = ACTIONS(2617), - [anon_sym_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_TILDE_GT] = ACTIONS(2617), - [anon_sym_LT_PIPE_GT] = ACTIONS(2617), - [anon_sym_in] = ACTIONS(2617), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2617), - [anon_sym_SLASH_SLASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2617), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2617), - [anon_sym_LT_GT] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_STAR_STAR] = ACTIONS(2617), - [anon_sym_DASH_GT] = ACTIONS(2617), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_fn] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_LBRACK2] = ACTIONS(2615), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2615), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, [1017] = { [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2661), @@ -151044,97 +150810,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2659), }, [1018] = { - [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym__terminator_repeat1] = STATE(1019), [aux_sym__terminator_token1] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [sym_keyword] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_after] = ACTIONS(2666), - [anon_sym_catch] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [anon_sym_rescue] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_LPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [sym_keyword] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_after] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_end] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_rescue] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), }, [1019] = { - [aux_sym__terminator_repeat1] = STATE(1018), - [aux_sym__terminator_token1] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym__terminator_token1] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_LPAREN] = ACTIONS(2674), [aux_sym_identifier_token1] = ACTIONS(2674), [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), @@ -151220,96 +150986,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2676), }, [1020] = { - [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_repeat1] = STATE(1021), [aux_sym__terminator_token1] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_after] = ACTIONS(2666), - [anon_sym_catch] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [anon_sym_rescue] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_after] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_end] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_rescue] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), }, [1021] = { - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym__terminator_token1] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym__terminator_token1] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_LPAREN] = ACTIONS(2674), [aux_sym_identifier_token1] = ACTIONS(2674), [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), @@ -151394,91 +151160,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2676), }, [1022] = { - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym__terminator_token1] = ACTIONS(2681), + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym__terminator_token1] = ACTIONS(2678), [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2674), - [aux_sym_identifier_token1] = ACTIONS(2674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), - [sym_alias] = ACTIONS(2674), - [sym_integer] = ACTIONS(2674), - [sym_float] = ACTIONS(2674), - [sym_char] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_nil] = ACTIONS(2674), - [sym_atom] = ACTIONS(2674), - [anon_sym_DQUOTE] = ACTIONS(2674), - [anon_sym_SQUOTE] = ACTIONS(2674), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_GT] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_PERCENT] = ACTIONS(2674), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2674), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2674), - [anon_sym_not] = ACTIONS(2674), - [anon_sym_AT] = ACTIONS(2674), - [anon_sym_LT_DASH] = ACTIONS(2674), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2674), - [anon_sym_when] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2674), - [anon_sym_and] = ACTIONS(2674), - [anon_sym_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2674), - [anon_sym_EQ_TILDE] = ACTIONS(2674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_PIPE_GT] = ACTIONS(2674), - [anon_sym_LT_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT_GT] = ACTIONS(2674), - [anon_sym_LT_LT_TILDE] = ACTIONS(2674), - [anon_sym_TILDE_GT_GT] = ACTIONS(2674), - [anon_sym_LT_TILDE] = ACTIONS(2674), - [anon_sym_TILDE_GT] = ACTIONS(2674), - [anon_sym_LT_TILDE_GT] = ACTIONS(2674), - [anon_sym_LT_PIPE_GT] = ACTIONS(2674), - [anon_sym_in] = ACTIONS(2674), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2674), - [anon_sym_LT_GT] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_STAR_STAR] = ACTIONS(2674), - [anon_sym_DASH_GT] = ACTIONS(2674), - [anon_sym_after] = ACTIONS(2674), - [anon_sym_catch] = ACTIONS(2674), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_end] = ACTIONS(2674), - [anon_sym_fn] = ACTIONS(2674), - [anon_sym_rescue] = ACTIONS(2674), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2676), - [sym__not_in] = ACTIONS(2676), - [sym__quoted_atom_start] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_after] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_end] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_rescue] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), }, [1023] = { [aux_sym__terminator_token1] = ACTIONS(2687), @@ -151741,6 +151507,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__terminator_repeat1] = STATE(1027), [aux_sym__terminator_token1] = ACTIONS(2691), [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [sym_keyword] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), + }, + [1027] = { + [aux_sym__terminator_repeat1] = STATE(1027), + [aux_sym__terminator_token1] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_LPAREN] = ACTIONS(2674), [anon_sym_RPAREN] = ACTIONS(2674), [aux_sym_identifier_token1] = ACTIONS(2674), @@ -151821,179 +151671,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2676), [sym__quoted_atom_start] = ACTIONS(2676), }, - [1027] = { - [aux_sym__terminator_repeat1] = STATE(1027), - [aux_sym__terminator_token1] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [sym_keyword] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), - }, [1028] = { [aux_sym__terminator_repeat1] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(2676), [aux_sym__terminator_token1] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), - }, - [1029] = { - [aux_sym__terminator_repeat1] = STATE(1034), - [aux_sym__terminator_token1] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2674), [aux_sym_identifier_token1] = ACTIONS(2674), [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), [sym_alias] = ACTIONS(2674), @@ -152071,177 +151754,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2676), [sym__quoted_atom_start] = ACTIONS(2676), }, + [1029] = { + [aux_sym__terminator_repeat1] = STATE(1033), + [aux_sym__terminator_token1] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_end] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), + }, [1030] = { - [aux_sym__terminator_repeat1] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2668), + [aux_sym__terminator_repeat1] = STATE(1032), [aux_sym__terminator_token1] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), }, [1031] = { - [aux_sym__terminator_repeat1] = STATE(1034), - [aux_sym__terminator_token1] = ACTIONS(2701), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_RPAREN] = ACTIONS(2674), - [aux_sym_identifier_token1] = ACTIONS(2674), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), - [sym_alias] = ACTIONS(2674), - [sym_integer] = ACTIONS(2674), - [sym_float] = ACTIONS(2674), - [sym_char] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_nil] = ACTIONS(2674), - [sym_atom] = ACTIONS(2674), - [anon_sym_DQUOTE] = ACTIONS(2674), - [anon_sym_SQUOTE] = ACTIONS(2674), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2674), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_GT] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_LT_LT] = ACTIONS(2674), - [anon_sym_PERCENT] = ACTIONS(2674), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_CARET] = ACTIONS(2674), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2674), - [anon_sym_not] = ACTIONS(2674), - [anon_sym_AT] = ACTIONS(2674), - [anon_sym_LT_DASH] = ACTIONS(2674), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2674), - [anon_sym_when] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2674), - [anon_sym_and] = ACTIONS(2674), - [anon_sym_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ] = ACTIONS(2674), - [anon_sym_EQ_TILDE] = ACTIONS(2674), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2674), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2674), - [anon_sym_LT_EQ] = ACTIONS(2674), - [anon_sym_GT_EQ] = ACTIONS(2674), - [anon_sym_PIPE_GT] = ACTIONS(2674), - [anon_sym_LT_LT_LT] = ACTIONS(2674), - [anon_sym_GT_GT_GT] = ACTIONS(2674), - [anon_sym_LT_LT_TILDE] = ACTIONS(2674), - [anon_sym_TILDE_GT_GT] = ACTIONS(2674), - [anon_sym_LT_TILDE] = ACTIONS(2674), - [anon_sym_TILDE_GT] = ACTIONS(2674), - [anon_sym_LT_TILDE_GT] = ACTIONS(2674), - [anon_sym_LT_PIPE_GT] = ACTIONS(2674), - [anon_sym_in] = ACTIONS(2674), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2674), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2674), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2674), - [anon_sym_LT_GT] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_STAR_STAR] = ACTIONS(2674), - [anon_sym_DASH_GT] = ACTIONS(2674), - [anon_sym_fn] = ACTIONS(2674), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2676), - [sym__not_in] = ACTIONS(2676), - [sym__quoted_atom_start] = ACTIONS(2676), + [aux_sym__terminator_repeat1] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(2669), + [aux_sym__terminator_token1] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), }, [1032] = { - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2712), + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_RPAREN] = ACTIONS(2674), [aux_sym_identifier_token1] = ACTIONS(2674), [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), [sym_alias] = ACTIONS(2674), @@ -152311,7 +152078,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2674), [anon_sym_STAR_STAR] = ACTIONS(2674), [anon_sym_DASH_GT] = ACTIONS(2674), - [anon_sym_end] = ACTIONS(2674), [anon_sym_fn] = ACTIONS(2674), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), @@ -152321,10 +152087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2676), }, [1033] = { - [aux_sym__terminator_repeat1] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2676), - [aux_sym__terminator_token1] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2716), + [aux_sym__terminator_repeat1] = STATE(1033), + [aux_sym__terminator_token1] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_LPAREN] = ACTIONS(2674), [aux_sym_identifier_token1] = ACTIONS(2674), [anon_sym_DOT_DOT_DOT] = ACTIONS(2674), @@ -152395,6 +152160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(2674), [anon_sym_STAR_STAR] = ACTIONS(2674), [anon_sym_DASH_GT] = ACTIONS(2674), + [anon_sym_end] = ACTIONS(2674), [anon_sym_fn] = ACTIONS(2674), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), @@ -152404,87 +152170,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2676), }, [1034] = { - [aux_sym__terminator_repeat1] = STATE(1034), - [aux_sym__terminator_token1] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [aux_sym_identifier_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2666), - [sym_alias] = ACTIONS(2666), - [sym_integer] = ACTIONS(2666), - [sym_float] = ACTIONS(2666), - [sym_char] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_nil] = ACTIONS(2666), - [sym_atom] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2666), - [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2666), - [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_GT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_LT_LT] = ACTIONS(2666), - [anon_sym_PERCENT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2666), - [anon_sym_LT_DASH] = ACTIONS(2666), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2666), - [anon_sym_when] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_EQ] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_EQ_TILDE] = ACTIONS(2666), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2666), - [anon_sym_LT_EQ] = ACTIONS(2666), - [anon_sym_GT_EQ] = ACTIONS(2666), - [anon_sym_PIPE_GT] = ACTIONS(2666), - [anon_sym_LT_LT_LT] = ACTIONS(2666), - [anon_sym_GT_GT_GT] = ACTIONS(2666), - [anon_sym_LT_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE] = ACTIONS(2666), - [anon_sym_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_TILDE_GT] = ACTIONS(2666), - [anon_sym_LT_PIPE_GT] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2666), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2666), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2666), - [anon_sym_LT_GT] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_STAR_STAR] = ACTIONS(2666), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2668), - [sym__not_in] = ACTIONS(2668), - [sym__quoted_atom_start] = ACTIONS(2668), + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_RPAREN] = ACTIONS(2667), + [aux_sym_identifier_token1] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2667), + [sym_alias] = ACTIONS(2667), + [sym_integer] = ACTIONS(2667), + [sym_float] = ACTIONS(2667), + [sym_char] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_nil] = ACTIONS(2667), + [sym_atom] = ACTIONS(2667), + [anon_sym_DQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2667), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2667), + [anon_sym_not] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2667), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2667), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_EQ_TILDE] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PIPE_GT] = ACTIONS(2667), + [anon_sym_LT_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_LT_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE] = ACTIONS(2667), + [anon_sym_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_TILDE_GT] = ACTIONS(2667), + [anon_sym_LT_PIPE_GT] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2667), + [anon_sym_LT_GT] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_STAR_STAR] = ACTIONS(2667), + [anon_sym_DASH_GT] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2669), + [sym__not_in] = ACTIONS(2669), + [sym__quoted_atom_start] = ACTIONS(2669), }, [1035] = { [aux_sym__terminator_token1] = ACTIONS(2687), @@ -152569,8 +152335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2687), }, [1036] = { - [aux_sym__terminator_token1] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2689), + [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2689), [anon_sym_RPAREN] = ACTIONS(2689), [aux_sym_identifier_token1] = ACTIONS(2689), @@ -152594,6 +152359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2689), [anon_sym_SLASH] = ACTIONS(2689), [anon_sym_TILDE] = ACTIONS(2689), + [sym_keyword] = ACTIONS(2689), [anon_sym_LT_LT] = ACTIONS(2689), [anon_sym_PERCENT] = ACTIONS(2689), [anon_sym_DOT_DOT] = ACTIONS(2689), @@ -152651,7 +152417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2687), }, [1037] = { - [aux_sym__terminator_token1] = ACTIONS(3), + [aux_sym__terminator_token1] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2689), [anon_sym_LPAREN] = ACTIONS(2689), [anon_sym_RPAREN] = ACTIONS(2689), [aux_sym_identifier_token1] = ACTIONS(2689), @@ -152675,7 +152442,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(2689), [anon_sym_SLASH] = ACTIONS(2689), [anon_sym_TILDE] = ACTIONS(2689), - [sym_keyword] = ACTIONS(2689), [anon_sym_LT_LT] = ACTIONS(2689), [anon_sym_PERCENT] = ACTIONS(2689), [anon_sym_DOT_DOT] = ACTIONS(2689), @@ -152733,9 +152499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2687), }, [1038] = { + [ts_builtin_sym_end] = ACTIONS(2687), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_RPAREN] = ACTIONS(2689), [aux_sym_identifier_token1] = ACTIONS(2689), [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), [sym_alias] = ACTIONS(2689), @@ -152814,9 +152580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2687), }, [1039] = { - [ts_builtin_sym_end] = ACTIONS(2687), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2689), [aux_sym_identifier_token1] = ACTIONS(2689), [anon_sym_DOT_DOT_DOT] = ACTIONS(2689), [sym_alias] = ACTIONS(2689), @@ -153055,22 +152821,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(2723), }, [1042] = { - [sym_identifier] = STATE(974), - [sym__quoted_i_double] = STATE(973), - [sym__quoted_i_single] = STATE(965), - [sym_tuple] = STATE(3169), - [sym_operator_identifier] = STATE(974), + [sym_identifier] = STATE(923), + [sym__quoted_i_double] = STATE(922), + [sym__quoted_i_single] = STATE(920), + [sym_tuple] = STATE(1689), + [sym_operator_identifier] = STATE(923), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2727), [anon_sym_true] = ACTIONS(2729), [anon_sym_false] = ACTIONS(2729), [anon_sym_nil] = ACTIONS(2729), [anon_sym_DQUOTE] = ACTIONS(2731), [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(81), [anon_sym_LT] = ACTIONS(2735), [anon_sym_GT] = ACTIONS(2735), [anon_sym_PIPE] = ACTIONS(2735), @@ -153133,22 +152899,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2747), }, [1043] = { - [sym_identifier] = STATE(957), - [sym__quoted_i_double] = STATE(958), - [sym__quoted_i_single] = STATE(989), - [sym_tuple] = STATE(1469), - [sym_operator_identifier] = STATE(957), + [sym_identifier] = STATE(981), + [sym__quoted_i_double] = STATE(982), + [sym__quoted_i_single] = STATE(983), + [sym_tuple] = STATE(2086), + [sym_operator_identifier] = STATE(981), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2749), [anon_sym_true] = ACTIONS(2751), [anon_sym_false] = ACTIONS(2751), [anon_sym_nil] = ACTIONS(2751), [anon_sym_DQUOTE] = ACTIONS(2753), [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(934), [anon_sym_LT] = ACTIONS(2757), [anon_sym_GT] = ACTIONS(2757), [anon_sym_PIPE] = ACTIONS(2757), @@ -153211,22 +152977,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2769), }, [1044] = { - [sym_identifier] = STATE(957), - [sym__quoted_i_double] = STATE(958), - [sym__quoted_i_single] = STATE(989), + [sym_identifier] = STATE(923), + [sym__quoted_i_double] = STATE(922), + [sym__quoted_i_single] = STATE(920), + [sym_tuple] = STATE(1394), + [sym_operator_identifier] = STATE(923), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2725), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2771), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_nil] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2735), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2735), + [anon_sym_when] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(2735), + [anon_sym_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_or] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2735), + [anon_sym_and] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_EQ_TILDE] = ACTIONS(2735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2735), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_PIPE_GT] = ACTIONS(2735), + [anon_sym_LT_LT_LT] = ACTIONS(2735), + [anon_sym_GT_GT_GT] = ACTIONS(2735), + [anon_sym_LT_LT_TILDE] = ACTIONS(2735), + [anon_sym_TILDE_GT_GT] = ACTIONS(2735), + [anon_sym_LT_TILDE] = ACTIONS(2735), + [anon_sym_TILDE_GT] = ACTIONS(2735), + [anon_sym_LT_TILDE_GT] = ACTIONS(2735), + [anon_sym_LT_PIPE_GT] = ACTIONS(2735), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2735), + [anon_sym_LT_GT] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_STAR_STAR] = ACTIONS(2735), + [anon_sym_DASH_GT] = ACTIONS(2735), + [anon_sym_after] = ACTIONS(2729), + [anon_sym_catch] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_end] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_rescue] = ACTIONS(2729), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2747), + }, + [1045] = { + [sym_identifier] = STATE(923), + [sym__quoted_i_double] = STATE(922), + [sym__quoted_i_single] = STATE(920), + [sym_tuple] = STATE(1260), + [sym_operator_identifier] = STATE(923), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2725), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2773), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_nil] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2735), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2735), + [anon_sym_when] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(2735), + [anon_sym_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_or] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2735), + [anon_sym_and] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_EQ_TILDE] = ACTIONS(2735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2735), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_PIPE_GT] = ACTIONS(2735), + [anon_sym_LT_LT_LT] = ACTIONS(2735), + [anon_sym_GT_GT_GT] = ACTIONS(2735), + [anon_sym_LT_LT_TILDE] = ACTIONS(2735), + [anon_sym_TILDE_GT_GT] = ACTIONS(2735), + [anon_sym_LT_TILDE] = ACTIONS(2735), + [anon_sym_TILDE_GT] = ACTIONS(2735), + [anon_sym_LT_TILDE_GT] = ACTIONS(2735), + [anon_sym_LT_PIPE_GT] = ACTIONS(2735), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2735), + [anon_sym_LT_GT] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_STAR_STAR] = ACTIONS(2735), + [anon_sym_DASH_GT] = ACTIONS(2735), + [anon_sym_after] = ACTIONS(2729), + [anon_sym_catch] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_end] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_rescue] = ACTIONS(2729), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2747), + }, + [1046] = { + [sym_identifier] = STATE(923), + [sym__quoted_i_double] = STATE(922), + [sym__quoted_i_single] = STATE(920), [sym_tuple] = STATE(2086), - [sym_operator_identifier] = STATE(957), + [sym_operator_identifier] = STATE(923), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [aux_sym_identifier_token1] = ACTIONS(191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(191), + [sym_alias] = ACTIONS(2749), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_nil] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2739), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_AT] = ACTIONS(2743), + [anon_sym_LT_DASH] = ACTIONS(2735), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2735), + [anon_sym_when] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(2735), + [anon_sym_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_or] = ACTIONS(2745), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2735), + [anon_sym_and] = ACTIONS(2745), + [anon_sym_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_EQ_TILDE] = ACTIONS(2735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2735), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_PIPE_GT] = ACTIONS(2735), + [anon_sym_LT_LT_LT] = ACTIONS(2735), + [anon_sym_GT_GT_GT] = ACTIONS(2735), + [anon_sym_LT_LT_TILDE] = ACTIONS(2735), + [anon_sym_TILDE_GT_GT] = ACTIONS(2735), + [anon_sym_LT_TILDE] = ACTIONS(2735), + [anon_sym_TILDE_GT] = ACTIONS(2735), + [anon_sym_LT_TILDE_GT] = ACTIONS(2735), + [anon_sym_LT_PIPE_GT] = ACTIONS(2735), + [anon_sym_in] = ACTIONS(2745), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2735), + [anon_sym_LT_GT] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_STAR_STAR] = ACTIONS(2735), + [anon_sym_DASH_GT] = ACTIONS(2735), + [anon_sym_after] = ACTIONS(2729), + [anon_sym_catch] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_end] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_rescue] = ACTIONS(2729), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2747), + }, + [1047] = { + [sym_identifier] = STATE(981), + [sym__quoted_i_double] = STATE(982), + [sym__quoted_i_single] = STATE(983), + [sym_tuple] = STATE(1394), + [sym_operator_identifier] = STATE(981), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2725), + [aux_sym_identifier_token1] = ACTIONS(450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(450), [sym_alias] = ACTIONS(2771), [anon_sym_true] = ACTIONS(2751), [anon_sym_false] = ACTIONS(2751), [anon_sym_nil] = ACTIONS(2751), [anon_sym_DQUOTE] = ACTIONS(2753), [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(253), [anon_sym_LT] = ACTIONS(2757), [anon_sym_GT] = ACTIONS(2757), [anon_sym_PIPE] = ACTIONS(2757), @@ -153288,95 +153288,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2769), }, - [1045] = { - [sym_identifier] = STATE(1016), - [sym__quoted_i_double] = STATE(1014), - [sym__quoted_i_single] = STATE(1012), - [sym_tuple] = STATE(4473), - [sym_operator_identifier] = STATE(1016), + [1048] = { + [sym_identifier] = STATE(940), + [sym__quoted_i_double] = STATE(943), + [sym__quoted_i_single] = STATE(930), + [sym_tuple] = STATE(3192), + [sym_operator_identifier] = STATE(940), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2775), - [anon_sym_false] = ACTIONS(2775), - [anon_sym_nil] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_CARET] = ACTIONS(2785), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_LT_DASH] = ACTIONS(2781), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2781), - [anon_sym_when] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_PIPE_PIPE] = ACTIONS(2781), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2781), - [anon_sym_or] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2781), - [anon_sym_and] = ACTIONS(2791), - [anon_sym_EQ_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_EQ_TILDE] = ACTIONS(2781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2781), - [anon_sym_LT_EQ] = ACTIONS(2781), - [anon_sym_GT_EQ] = ACTIONS(2781), - [anon_sym_PIPE_GT] = ACTIONS(2781), - [anon_sym_LT_LT_LT] = ACTIONS(2781), - [anon_sym_GT_GT_GT] = ACTIONS(2781), - [anon_sym_LT_LT_TILDE] = ACTIONS(2781), - [anon_sym_TILDE_GT_GT] = ACTIONS(2781), - [anon_sym_LT_TILDE] = ACTIONS(2781), - [anon_sym_TILDE_GT] = ACTIONS(2781), - [anon_sym_LT_TILDE_GT] = ACTIONS(2781), - [anon_sym_LT_PIPE_GT] = ACTIONS(2781), - [anon_sym_in] = ACTIONS(2791), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2781), - [anon_sym_LT_GT] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_STAR_STAR] = ACTIONS(2781), - [anon_sym_DASH_GT] = ACTIONS(2781), - [anon_sym_after] = ACTIONS(2775), - [anon_sym_catch] = ACTIONS(2775), - [anon_sym_do] = ACTIONS(2775), - [anon_sym_else] = ACTIONS(2775), - [anon_sym_end] = ACTIONS(2775), - [anon_sym_fn] = ACTIONS(2775), - [anon_sym_rescue] = ACTIONS(2775), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2793), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2775), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [anon_sym_nil] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2787), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_LT_DASH] = ACTIONS(2783), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2783), + [anon_sym_when] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2783), + [anon_sym_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_or] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2783), + [anon_sym_and] = ACTIONS(2793), + [anon_sym_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [anon_sym_EQ_TILDE] = ACTIONS(2783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), + [anon_sym_LT_EQ] = ACTIONS(2783), + [anon_sym_GT_EQ] = ACTIONS(2783), + [anon_sym_PIPE_GT] = ACTIONS(2783), + [anon_sym_LT_LT_LT] = ACTIONS(2783), + [anon_sym_GT_GT_GT] = ACTIONS(2783), + [anon_sym_LT_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_PIPE_GT] = ACTIONS(2783), + [anon_sym_in] = ACTIONS(2793), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2783), + [anon_sym_LT_GT] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_DASH_GT] = ACTIONS(2783), + [anon_sym_after] = ACTIONS(2777), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_end] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2777), + [anon_sym_rescue] = ACTIONS(2777), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2795), }, - [1046] = { - [sym_identifier] = STATE(910), - [sym__quoted_i_double] = STATE(924), - [sym__quoted_i_single] = STATE(925), - [sym_tuple] = STATE(1778), - [sym_operator_identifier] = STATE(910), + [1049] = { + [sym_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(975), + [sym__quoted_i_single] = STATE(974), + [sym_tuple] = STATE(1689), + [sym_operator_identifier] = STATE(976), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2795), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2727), [anon_sym_true] = ACTIONS(2797), [anon_sym_false] = ACTIONS(2797), [anon_sym_nil] = ACTIONS(2797), @@ -153444,101 +153444,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2815), }, - [1047] = { - [sym_identifier] = STATE(1016), - [sym__quoted_i_double] = STATE(1014), - [sym__quoted_i_single] = STATE(1012), - [sym_tuple] = STATE(3897), - [sym_operator_identifier] = STATE(1016), + [1050] = { + [sym_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(975), + [sym__quoted_i_single] = STATE(974), + [sym_tuple] = STATE(1394), + [sym_operator_identifier] = STATE(976), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [sym_alias] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2775), - [anon_sym_false] = ACTIONS(2775), - [anon_sym_nil] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_GT] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_SLASH] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_CARET] = ACTIONS(2785), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2785), - [anon_sym_not] = ACTIONS(2787), - [anon_sym_AT] = ACTIONS(2789), - [anon_sym_LT_DASH] = ACTIONS(2781), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2781), - [anon_sym_when] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_EQ] = ACTIONS(2781), - [anon_sym_PIPE_PIPE] = ACTIONS(2781), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2781), - [anon_sym_or] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2781), - [anon_sym_and] = ACTIONS(2791), - [anon_sym_EQ_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ] = ACTIONS(2781), - [anon_sym_EQ_TILDE] = ACTIONS(2781), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2781), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2781), - [anon_sym_LT_EQ] = ACTIONS(2781), - [anon_sym_GT_EQ] = ACTIONS(2781), - [anon_sym_PIPE_GT] = ACTIONS(2781), - [anon_sym_LT_LT_LT] = ACTIONS(2781), - [anon_sym_GT_GT_GT] = ACTIONS(2781), - [anon_sym_LT_LT_TILDE] = ACTIONS(2781), - [anon_sym_TILDE_GT_GT] = ACTIONS(2781), - [anon_sym_LT_TILDE] = ACTIONS(2781), - [anon_sym_TILDE_GT] = ACTIONS(2781), - [anon_sym_LT_TILDE_GT] = ACTIONS(2781), - [anon_sym_LT_PIPE_GT] = ACTIONS(2781), - [anon_sym_in] = ACTIONS(2791), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2781), - [anon_sym_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2781), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2781), - [anon_sym_LT_GT] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_STAR_STAR] = ACTIONS(2781), - [anon_sym_DASH_GT] = ACTIONS(2781), - [anon_sym_after] = ACTIONS(2775), - [anon_sym_catch] = ACTIONS(2775), - [anon_sym_do] = ACTIONS(2775), - [anon_sym_else] = ACTIONS(2775), - [anon_sym_end] = ACTIONS(2775), - [anon_sym_fn] = ACTIONS(2775), - [anon_sym_rescue] = ACTIONS(2775), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2793), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2771), + [anon_sym_true] = ACTIONS(2797), + [anon_sym_false] = ACTIONS(2797), + [anon_sym_nil] = ACTIONS(2797), + [anon_sym_DQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [anon_sym_PIPE] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_CARET] = ACTIONS(2807), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2807), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2803), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2803), + [anon_sym_when] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_EQ] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_or] = ACTIONS(2813), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2803), + [anon_sym_and] = ACTIONS(2813), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_EQ_TILDE] = ACTIONS(2803), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_PIPE_GT] = ACTIONS(2803), + [anon_sym_LT_LT_LT] = ACTIONS(2803), + [anon_sym_GT_GT_GT] = ACTIONS(2803), + [anon_sym_LT_LT_TILDE] = ACTIONS(2803), + [anon_sym_TILDE_GT_GT] = ACTIONS(2803), + [anon_sym_LT_TILDE] = ACTIONS(2803), + [anon_sym_TILDE_GT] = ACTIONS(2803), + [anon_sym_LT_TILDE_GT] = ACTIONS(2803), + [anon_sym_LT_PIPE_GT] = ACTIONS(2803), + [anon_sym_in] = ACTIONS(2813), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2803), + [anon_sym_LT_GT] = ACTIONS(2803), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_STAR_STAR] = ACTIONS(2803), + [anon_sym_DASH_GT] = ACTIONS(2803), + [anon_sym_after] = ACTIONS(2797), + [anon_sym_catch] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2797), + [anon_sym_end] = ACTIONS(2797), + [anon_sym_fn] = ACTIONS(2797), + [anon_sym_rescue] = ACTIONS(2797), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2815), }, - [1048] = { - [sym_identifier] = STATE(934), - [sym__quoted_i_double] = STATE(937), - [sym__quoted_i_single] = STATE(938), + [1051] = { + [sym_identifier] = STATE(940), + [sym__quoted_i_double] = STATE(943), + [sym__quoted_i_single] = STATE(930), [sym_tuple] = STATE(3041), - [sym_operator_identifier] = STATE(934), + [sym_operator_identifier] = STATE(940), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2817), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [anon_sym_nil] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2787), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_LT_DASH] = ACTIONS(2783), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2783), + [anon_sym_when] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2783), + [anon_sym_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_or] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2783), + [anon_sym_and] = ACTIONS(2793), + [anon_sym_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [anon_sym_EQ_TILDE] = ACTIONS(2783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), + [anon_sym_LT_EQ] = ACTIONS(2783), + [anon_sym_GT_EQ] = ACTIONS(2783), + [anon_sym_PIPE_GT] = ACTIONS(2783), + [anon_sym_LT_LT_LT] = ACTIONS(2783), + [anon_sym_GT_GT_GT] = ACTIONS(2783), + [anon_sym_LT_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_PIPE_GT] = ACTIONS(2783), + [anon_sym_in] = ACTIONS(2793), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2783), + [anon_sym_LT_GT] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_DASH_GT] = ACTIONS(2783), + [anon_sym_after] = ACTIONS(2777), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_end] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2777), + [anon_sym_rescue] = ACTIONS(2777), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2795), + }, + [1052] = { + [sym_identifier] = STATE(1001), + [sym__quoted_i_double] = STATE(1000), + [sym__quoted_i_single] = STATE(999), + [sym_tuple] = STATE(4423), + [sym_operator_identifier] = STATE(1001), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2725), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2819), [anon_sym_true] = ACTIONS(2821), [anon_sym_false] = ACTIONS(2821), [anon_sym_nil] = ACTIONS(2821), [anon_sym_DQUOTE] = ACTIONS(2823), [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(1109), [anon_sym_LT] = ACTIONS(2827), [anon_sym_GT] = ACTIONS(2827), [anon_sym_PIPE] = ACTIONS(2827), @@ -153600,23 +153678,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2839), }, - [1049] = { - [sym_identifier] = STATE(934), - [sym__quoted_i_double] = STATE(937), - [sym__quoted_i_single] = STATE(938), - [sym_tuple] = STATE(2179), - [sym_operator_identifier] = STATE(934), + [1053] = { + [sym_identifier] = STATE(1001), + [sym__quoted_i_double] = STATE(1000), + [sym__quoted_i_single] = STATE(999), + [sym_tuple] = STATE(3943), + [sym_operator_identifier] = STATE(1001), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [aux_sym_identifier_token1] = ACTIONS(594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(594), [sym_alias] = ACTIONS(2841), [anon_sym_true] = ACTIONS(2821), [anon_sym_false] = ACTIONS(2821), [anon_sym_nil] = ACTIONS(2821), [anon_sym_DQUOTE] = ACTIONS(2823), [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(610), [anon_sym_LT] = ACTIONS(2827), [anon_sym_GT] = ACTIONS(2827), [anon_sym_PIPE] = ACTIONS(2827), @@ -153678,257 +153756,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2839), }, - [1050] = { - [sym_identifier] = STATE(934), - [sym__quoted_i_double] = STATE(937), - [sym__quoted_i_single] = STATE(938), - [sym_tuple] = STATE(4410), - [sym_operator_identifier] = STATE(934), + [1054] = { + [sym_identifier] = STATE(940), + [sym__quoted_i_double] = STATE(943), + [sym__quoted_i_single] = STATE(930), + [sym_tuple] = STATE(2233), + [sym_operator_identifier] = STATE(940), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), [aux_sym_identifier_token1] = ACTIONS(361), [anon_sym_DOT_DOT_DOT] = ACTIONS(361), [sym_alias] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_nil] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2831), - [anon_sym_not] = ACTIONS(2833), - [anon_sym_AT] = ACTIONS(2835), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2827), - [anon_sym_when] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2827), - [anon_sym_and] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_EQ_TILDE] = ACTIONS(2827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_PIPE_GT] = ACTIONS(2827), - [anon_sym_LT_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_LT_LT_TILDE] = ACTIONS(2827), - [anon_sym_TILDE_GT_GT] = ACTIONS(2827), - [anon_sym_LT_TILDE] = ACTIONS(2827), - [anon_sym_TILDE_GT] = ACTIONS(2827), - [anon_sym_LT_TILDE_GT] = ACTIONS(2827), - [anon_sym_LT_PIPE_GT] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2827), - [anon_sym_LT_GT] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_STAR_STAR] = ACTIONS(2827), - [anon_sym_DASH_GT] = ACTIONS(2827), - [anon_sym_after] = ACTIONS(2821), - [anon_sym_catch] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_else] = ACTIONS(2821), - [anon_sym_end] = ACTIONS(2821), - [anon_sym_fn] = ACTIONS(2821), - [anon_sym_rescue] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [anon_sym_nil] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2787), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_LT_DASH] = ACTIONS(2783), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2783), + [anon_sym_when] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2783), + [anon_sym_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_or] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2783), + [anon_sym_and] = ACTIONS(2793), + [anon_sym_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [anon_sym_EQ_TILDE] = ACTIONS(2783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), + [anon_sym_LT_EQ] = ACTIONS(2783), + [anon_sym_GT_EQ] = ACTIONS(2783), + [anon_sym_PIPE_GT] = ACTIONS(2783), + [anon_sym_LT_LT_LT] = ACTIONS(2783), + [anon_sym_GT_GT_GT] = ACTIONS(2783), + [anon_sym_LT_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_PIPE_GT] = ACTIONS(2783), + [anon_sym_in] = ACTIONS(2793), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2783), + [anon_sym_LT_GT] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_DASH_GT] = ACTIONS(2783), + [anon_sym_after] = ACTIONS(2777), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_end] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2777), + [anon_sym_rescue] = ACTIONS(2777), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2795), }, - [1051] = { - [sym_identifier] = STATE(949), - [sym__quoted_i_double] = STATE(948), + [1055] = { + [sym_identifier] = STATE(966), + [sym__quoted_i_double] = STATE(965), [sym__quoted_i_single] = STATE(964), - [sym_tuple] = STATE(2086), - [sym_operator_identifier] = STATE(949), + [sym_tuple] = STATE(4390), + [sym_operator_identifier] = STATE(966), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2771), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_nil] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2855), - [anon_sym_not] = ACTIONS(2857), - [anon_sym_AT] = ACTIONS(2859), - [anon_sym_LT_DASH] = ACTIONS(2851), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2851), - [anon_sym_when] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2851), - [anon_sym_and] = ACTIONS(2861), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_EQ_TILDE] = ACTIONS(2851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_PIPE_GT] = ACTIONS(2851), - [anon_sym_LT_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT_GT] = ACTIONS(2851), - [anon_sym_LT_LT_TILDE] = ACTIONS(2851), - [anon_sym_TILDE_GT_GT] = ACTIONS(2851), - [anon_sym_LT_TILDE] = ACTIONS(2851), - [anon_sym_TILDE_GT] = ACTIONS(2851), - [anon_sym_LT_TILDE_GT] = ACTIONS(2851), - [anon_sym_LT_PIPE_GT] = ACTIONS(2851), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2851), - [anon_sym_LT_GT] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_STAR_STAR] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_after] = ACTIONS(2845), - [anon_sym_catch] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_end] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_rescue] = ACTIONS(2845), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2863), + [aux_sym_identifier_token1] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(488), + [sym_alias] = ACTIONS(2845), + [anon_sym_true] = ACTIONS(2847), + [anon_sym_false] = ACTIONS(2847), + [anon_sym_nil] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_CARET] = ACTIONS(2857), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2859), + [anon_sym_AT] = ACTIONS(2861), + [anon_sym_LT_DASH] = ACTIONS(2853), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2853), + [anon_sym_when] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_or] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2853), + [anon_sym_and] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_EQ_TILDE] = ACTIONS(2853), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_PIPE_GT] = ACTIONS(2853), + [anon_sym_LT_LT_LT] = ACTIONS(2853), + [anon_sym_GT_GT_GT] = ACTIONS(2853), + [anon_sym_LT_LT_TILDE] = ACTIONS(2853), + [anon_sym_TILDE_GT_GT] = ACTIONS(2853), + [anon_sym_LT_TILDE] = ACTIONS(2853), + [anon_sym_TILDE_GT] = ACTIONS(2853), + [anon_sym_LT_TILDE_GT] = ACTIONS(2853), + [anon_sym_LT_PIPE_GT] = ACTIONS(2853), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2853), + [anon_sym_LT_GT] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_STAR_STAR] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), + [anon_sym_after] = ACTIONS(2847), + [anon_sym_catch] = ACTIONS(2847), + [anon_sym_do] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2847), + [anon_sym_end] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_rescue] = ACTIONS(2847), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2865), }, - [1052] = { - [sym_identifier] = STATE(957), - [sym__quoted_i_double] = STATE(958), - [sym__quoted_i_single] = STATE(989), - [sym_tuple] = STATE(1262), - [sym_operator_identifier] = STATE(957), + [1056] = { + [sym_identifier] = STATE(940), + [sym__quoted_i_double] = STATE(943), + [sym__quoted_i_single] = STATE(930), + [sym_tuple] = STATE(4205), + [sym_operator_identifier] = STATE(940), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2865), - [anon_sym_true] = ACTIONS(2751), - [anon_sym_false] = ACTIONS(2751), - [anon_sym_nil] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2763), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2757), - [anon_sym_when] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_EQ] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2757), - [anon_sym_and] = ACTIONS(2767), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_EQ_TILDE] = ACTIONS(2757), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_PIPE_GT] = ACTIONS(2757), - [anon_sym_LT_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_LT_LT_TILDE] = ACTIONS(2757), - [anon_sym_TILDE_GT_GT] = ACTIONS(2757), - [anon_sym_LT_TILDE] = ACTIONS(2757), - [anon_sym_TILDE_GT] = ACTIONS(2757), - [anon_sym_LT_TILDE_GT] = ACTIONS(2757), - [anon_sym_LT_PIPE_GT] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2767), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2757), - [anon_sym_LT_GT] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_STAR_STAR] = ACTIONS(2757), - [anon_sym_DASH_GT] = ACTIONS(2757), - [anon_sym_after] = ACTIONS(2751), - [anon_sym_catch] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_end] = ACTIONS(2751), - [anon_sym_fn] = ACTIONS(2751), - [anon_sym_rescue] = ACTIONS(2751), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2769), + [aux_sym_identifier_token1] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(361), + [sym_alias] = ACTIONS(2867), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [anon_sym_nil] = ACTIONS(2777), + [anon_sym_DQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_CARET] = ACTIONS(2787), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2787), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2791), + [anon_sym_LT_DASH] = ACTIONS(2783), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2783), + [anon_sym_when] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2783), + [anon_sym_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_or] = ACTIONS(2793), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2783), + [anon_sym_and] = ACTIONS(2793), + [anon_sym_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [anon_sym_EQ_TILDE] = ACTIONS(2783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2783), + [anon_sym_LT_EQ] = ACTIONS(2783), + [anon_sym_GT_EQ] = ACTIONS(2783), + [anon_sym_PIPE_GT] = ACTIONS(2783), + [anon_sym_LT_LT_LT] = ACTIONS(2783), + [anon_sym_GT_GT_GT] = ACTIONS(2783), + [anon_sym_LT_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE] = ACTIONS(2783), + [anon_sym_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_TILDE_GT] = ACTIONS(2783), + [anon_sym_LT_PIPE_GT] = ACTIONS(2783), + [anon_sym_in] = ACTIONS(2793), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2783), + [anon_sym_LT_GT] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_STAR_STAR] = ACTIONS(2783), + [anon_sym_DASH_GT] = ACTIONS(2783), + [anon_sym_after] = ACTIONS(2777), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_end] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2777), + [anon_sym_rescue] = ACTIONS(2777), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2795), }, - [1053] = { - [sym_identifier] = STATE(910), - [sym__quoted_i_double] = STATE(924), - [sym__quoted_i_single] = STATE(925), - [sym_tuple] = STATE(2086), - [sym_operator_identifier] = STATE(910), + [1057] = { + [sym_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(975), + [sym__quoted_i_single] = STATE(974), + [sym_tuple] = STATE(1260), + [sym_operator_identifier] = STATE(976), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2771), + [aux_sym_identifier_token1] = ACTIONS(431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_alias] = ACTIONS(2773), [anon_sym_true] = ACTIONS(2797), [anon_sym_false] = ACTIONS(2797), [anon_sym_nil] = ACTIONS(2797), [anon_sym_DQUOTE] = ACTIONS(2799), [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(207), [anon_sym_LT] = ACTIONS(2803), [anon_sym_GT] = ACTIONS(2803), [anon_sym_PIPE] = ACTIONS(2803), @@ -153990,179 +154068,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2815), }, - [1054] = { - [sym_identifier] = STATE(957), - [sym__quoted_i_double] = STATE(958), - [sym__quoted_i_single] = STATE(989), - [sym_tuple] = STATE(1778), - [sym_operator_identifier] = STATE(957), + [1058] = { + [sym_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(975), + [sym__quoted_i_single] = STATE(974), + [sym_tuple] = STATE(2086), + [sym_operator_identifier] = STATE(976), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), [aux_sym_identifier_token1] = ACTIONS(431), [anon_sym_DOT_DOT_DOT] = ACTIONS(431), - [sym_alias] = ACTIONS(2795), - [anon_sym_true] = ACTIONS(2751), - [anon_sym_false] = ACTIONS(2751), - [anon_sym_nil] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_LBRACE] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2761), - [anon_sym_not] = ACTIONS(2763), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2757), - [anon_sym_when] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_EQ] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2767), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2757), - [anon_sym_and] = ACTIONS(2767), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_EQ_TILDE] = ACTIONS(2757), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_PIPE_GT] = ACTIONS(2757), - [anon_sym_LT_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_LT_LT_TILDE] = ACTIONS(2757), - [anon_sym_TILDE_GT_GT] = ACTIONS(2757), - [anon_sym_LT_TILDE] = ACTIONS(2757), - [anon_sym_TILDE_GT] = ACTIONS(2757), - [anon_sym_LT_TILDE_GT] = ACTIONS(2757), - [anon_sym_LT_PIPE_GT] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2767), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2757), - [anon_sym_LT_GT] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_STAR_STAR] = ACTIONS(2757), - [anon_sym_DASH_GT] = ACTIONS(2757), - [anon_sym_after] = ACTIONS(2751), - [anon_sym_catch] = ACTIONS(2751), - [anon_sym_do] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_end] = ACTIONS(2751), - [anon_sym_fn] = ACTIONS(2751), - [anon_sym_rescue] = ACTIONS(2751), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2769), - }, - [1055] = { - [sym_identifier] = STATE(949), - [sym__quoted_i_double] = STATE(948), - [sym__quoted_i_single] = STATE(964), - [sym_tuple] = STATE(1469), - [sym_operator_identifier] = STATE(949), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_alias] = ACTIONS(2749), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_nil] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_GT] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_SLASH] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2855), - [anon_sym_not] = ACTIONS(2857), - [anon_sym_AT] = ACTIONS(2859), - [anon_sym_LT_DASH] = ACTIONS(2851), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2851), - [anon_sym_when] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_EQ] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2851), - [anon_sym_and] = ACTIONS(2861), - [anon_sym_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ] = ACTIONS(2851), - [anon_sym_EQ_TILDE] = ACTIONS(2851), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2851), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2851), - [anon_sym_LT_EQ] = ACTIONS(2851), - [anon_sym_GT_EQ] = ACTIONS(2851), - [anon_sym_PIPE_GT] = ACTIONS(2851), - [anon_sym_LT_LT_LT] = ACTIONS(2851), - [anon_sym_GT_GT_GT] = ACTIONS(2851), - [anon_sym_LT_LT_TILDE] = ACTIONS(2851), - [anon_sym_TILDE_GT_GT] = ACTIONS(2851), - [anon_sym_LT_TILDE] = ACTIONS(2851), - [anon_sym_TILDE_GT] = ACTIONS(2851), - [anon_sym_LT_TILDE_GT] = ACTIONS(2851), - [anon_sym_LT_PIPE_GT] = ACTIONS(2851), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2851), - [anon_sym_LT_GT] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_STAR_STAR] = ACTIONS(2851), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_after] = ACTIONS(2845), - [anon_sym_catch] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_end] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_rescue] = ACTIONS(2845), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2863), - }, - [1056] = { - [sym_identifier] = STATE(910), - [sym__quoted_i_double] = STATE(924), - [sym__quoted_i_single] = STATE(925), - [sym_tuple] = STATE(1469), - [sym_operator_identifier] = STATE(910), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), [sym_alias] = ACTIONS(2749), [anon_sym_true] = ACTIONS(2797), [anon_sym_false] = ACTIONS(2797), [anon_sym_nil] = ACTIONS(2797), [anon_sym_DQUOTE] = ACTIONS(2799), [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(934), [anon_sym_LT] = ACTIONS(2803), [anon_sym_GT] = ACTIONS(2803), [anon_sym_PIPE] = ACTIONS(2803), @@ -154224,250 +154146,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2815), }, - [1057] = { - [sym_identifier] = STATE(934), - [sym__quoted_i_double] = STATE(937), - [sym__quoted_i_single] = STATE(938), - [sym_tuple] = STATE(3338), - [sym_operator_identifier] = STATE(934), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(361), - [sym_alias] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_nil] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_GT] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_SLASH] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_CARET] = ACTIONS(2831), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2831), - [anon_sym_not] = ACTIONS(2833), - [anon_sym_AT] = ACTIONS(2835), - [anon_sym_LT_DASH] = ACTIONS(2827), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2827), - [anon_sym_when] = ACTIONS(2837), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2837), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2827), - [anon_sym_and] = ACTIONS(2837), - [anon_sym_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ] = ACTIONS(2827), - [anon_sym_EQ_TILDE] = ACTIONS(2827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2827), - [anon_sym_LT_EQ] = ACTIONS(2827), - [anon_sym_GT_EQ] = ACTIONS(2827), - [anon_sym_PIPE_GT] = ACTIONS(2827), - [anon_sym_LT_LT_LT] = ACTIONS(2827), - [anon_sym_GT_GT_GT] = ACTIONS(2827), - [anon_sym_LT_LT_TILDE] = ACTIONS(2827), - [anon_sym_TILDE_GT_GT] = ACTIONS(2827), - [anon_sym_LT_TILDE] = ACTIONS(2827), - [anon_sym_TILDE_GT] = ACTIONS(2827), - [anon_sym_LT_TILDE_GT] = ACTIONS(2827), - [anon_sym_LT_PIPE_GT] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2837), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2827), - [anon_sym_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2827), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2827), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2827), - [anon_sym_LT_GT] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_STAR_STAR] = ACTIONS(2827), - [anon_sym_DASH_GT] = ACTIONS(2827), - [anon_sym_after] = ACTIONS(2821), - [anon_sym_catch] = ACTIONS(2821), - [anon_sym_do] = ACTIONS(2821), - [anon_sym_else] = ACTIONS(2821), - [anon_sym_end] = ACTIONS(2821), - [anon_sym_fn] = ACTIONS(2821), - [anon_sym_rescue] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2839), - }, - [1058] = { - [sym_identifier] = STATE(974), - [sym__quoted_i_double] = STATE(973), - [sym__quoted_i_single] = STATE(965), - [sym_tuple] = STATE(4366), - [sym_operator_identifier] = STATE(974), + [1059] = { + [sym_identifier] = STATE(966), + [sym__quoted_i_double] = STATE(965), + [sym__quoted_i_single] = STATE(964), + [sym_tuple] = STATE(3470), + [sym_operator_identifier] = STATE(966), [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(2725), [aux_sym_identifier_token1] = ACTIONS(488), [anon_sym_DOT_DOT_DOT] = ACTIONS(488), [sym_alias] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2729), - [anon_sym_false] = ACTIONS(2729), - [anon_sym_nil] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(31), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_GT] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_SLASH] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2739), - [anon_sym_not] = ACTIONS(2741), - [anon_sym_AT] = ACTIONS(2743), - [anon_sym_LT_DASH] = ACTIONS(2735), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2735), - [anon_sym_when] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(2735), - [anon_sym_PIPE_PIPE] = ACTIONS(2735), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2735), - [anon_sym_or] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2735), - [anon_sym_and] = ACTIONS(2745), - [anon_sym_EQ_EQ] = ACTIONS(2735), - [anon_sym_BANG_EQ] = ACTIONS(2735), - [anon_sym_EQ_TILDE] = ACTIONS(2735), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2735), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2735), - [anon_sym_LT_EQ] = ACTIONS(2735), - [anon_sym_GT_EQ] = ACTIONS(2735), - [anon_sym_PIPE_GT] = ACTIONS(2735), - [anon_sym_LT_LT_LT] = ACTIONS(2735), - [anon_sym_GT_GT_GT] = ACTIONS(2735), - [anon_sym_LT_LT_TILDE] = ACTIONS(2735), - [anon_sym_TILDE_GT_GT] = ACTIONS(2735), - [anon_sym_LT_TILDE] = ACTIONS(2735), - [anon_sym_TILDE_GT] = ACTIONS(2735), - [anon_sym_LT_TILDE_GT] = ACTIONS(2735), - [anon_sym_LT_PIPE_GT] = ACTIONS(2735), - [anon_sym_in] = ACTIONS(2745), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2735), - [anon_sym_LT_GT] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_STAR_STAR] = ACTIONS(2735), - [anon_sym_DASH_GT] = ACTIONS(2735), - [anon_sym_after] = ACTIONS(2729), - [anon_sym_catch] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_else] = ACTIONS(2729), - [anon_sym_end] = ACTIONS(2729), - [anon_sym_fn] = ACTIONS(2729), - [anon_sym_rescue] = ACTIONS(2729), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2747), - }, - [1059] = { - [sym_identifier] = STATE(910), - [sym__quoted_i_double] = STATE(924), - [sym__quoted_i_single] = STATE(925), - [sym_tuple] = STATE(1262), - [sym_operator_identifier] = STATE(910), - [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(2725), - [aux_sym_identifier_token1] = ACTIONS(191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(191), - [sym_alias] = ACTIONS(2865), - [anon_sym_true] = ACTIONS(2797), - [anon_sym_false] = ACTIONS(2797), - [anon_sym_nil] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(2803), - [anon_sym_GT] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2803), - [anon_sym_SLASH] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_CARET] = ACTIONS(2807), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2807), - [anon_sym_not] = ACTIONS(2809), - [anon_sym_AT] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2803), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2803), - [anon_sym_when] = ACTIONS(2813), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_EQ] = ACTIONS(2803), - [anon_sym_PIPE_PIPE] = ACTIONS(2803), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2803), - [anon_sym_or] = ACTIONS(2813), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2803), - [anon_sym_and] = ACTIONS(2813), - [anon_sym_EQ_EQ] = ACTIONS(2803), - [anon_sym_BANG_EQ] = ACTIONS(2803), - [anon_sym_EQ_TILDE] = ACTIONS(2803), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2803), - [anon_sym_LT_EQ] = ACTIONS(2803), - [anon_sym_GT_EQ] = ACTIONS(2803), - [anon_sym_PIPE_GT] = ACTIONS(2803), - [anon_sym_LT_LT_LT] = ACTIONS(2803), - [anon_sym_GT_GT_GT] = ACTIONS(2803), - [anon_sym_LT_LT_TILDE] = ACTIONS(2803), - [anon_sym_TILDE_GT_GT] = ACTIONS(2803), - [anon_sym_LT_TILDE] = ACTIONS(2803), - [anon_sym_TILDE_GT] = ACTIONS(2803), - [anon_sym_LT_TILDE_GT] = ACTIONS(2803), - [anon_sym_LT_PIPE_GT] = ACTIONS(2803), - [anon_sym_in] = ACTIONS(2813), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2803), - [anon_sym_LT_GT] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_STAR_STAR] = ACTIONS(2803), - [anon_sym_DASH_GT] = ACTIONS(2803), - [anon_sym_after] = ACTIONS(2797), - [anon_sym_catch] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_else] = ACTIONS(2797), - [anon_sym_end] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2797), - [anon_sym_rescue] = ACTIONS(2797), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2815), + [anon_sym_true] = ACTIONS(2847), + [anon_sym_false] = ACTIONS(2847), + [anon_sym_nil] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_LBRACE] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2853), + [anon_sym_SLASH] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2855), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_CARET] = ACTIONS(2857), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2859), + [anon_sym_AT] = ACTIONS(2861), + [anon_sym_LT_DASH] = ACTIONS(2853), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2853), + [anon_sym_when] = ACTIONS(2863), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_EQ] = ACTIONS(2853), + [anon_sym_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2853), + [anon_sym_or] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2853), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2853), + [anon_sym_and] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ] = ACTIONS(2853), + [anon_sym_EQ_TILDE] = ACTIONS(2853), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2853), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2853), + [anon_sym_GT_EQ] = ACTIONS(2853), + [anon_sym_PIPE_GT] = ACTIONS(2853), + [anon_sym_LT_LT_LT] = ACTIONS(2853), + [anon_sym_GT_GT_GT] = ACTIONS(2853), + [anon_sym_LT_LT_TILDE] = ACTIONS(2853), + [anon_sym_TILDE_GT_GT] = ACTIONS(2853), + [anon_sym_LT_TILDE] = ACTIONS(2853), + [anon_sym_TILDE_GT] = ACTIONS(2853), + [anon_sym_LT_TILDE_GT] = ACTIONS(2853), + [anon_sym_LT_PIPE_GT] = ACTIONS(2853), + [anon_sym_in] = ACTIONS(2863), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2853), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2853), + [anon_sym_LT_GT] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_STAR_STAR] = ACTIONS(2853), + [anon_sym_DASH_GT] = ACTIONS(2853), + [anon_sym_after] = ACTIONS(2847), + [anon_sym_catch] = ACTIONS(2847), + [anon_sym_do] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2847), + [anon_sym_end] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_rescue] = ACTIONS(2847), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2865), }, [1060] = { - [sym__terminator] = STATE(141), - [sym_after_block] = STATE(4702), - [sym_rescue_block] = STATE(4702), - [sym_catch_block] = STATE(4702), - [sym_else_block] = STATE(4702), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4618), - [aux_sym_do_block_repeat1] = STATE(4702), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(174), + [sym_after_block] = STATE(4700), + [sym_rescue_block] = STATE(4700), + [sym_catch_block] = STATE(4700), + [sym_else_block] = STATE(4700), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4685), + [aux_sym_do_block_repeat1] = STATE(4700), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2873), [anon_sym_LT] = ACTIONS(2875), @@ -154521,7 +154287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(315), + [anon_sym_end] = ACTIONS(1022), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154530,15 +154296,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1061] = { - [sym__terminator] = STATE(167), - [sym_after_block] = STATE(4724), - [sym_rescue_block] = STATE(4724), - [sym_catch_block] = STATE(4724), - [sym_else_block] = STATE(4724), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4641), - [aux_sym_do_block_repeat1] = STATE(4724), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(150), + [sym_after_block] = STATE(4725), + [sym_rescue_block] = STATE(4725), + [sym_catch_block] = STATE(4725), + [sym_else_block] = STATE(4725), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4665), + [aux_sym_do_block_repeat1] = STATE(4725), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2922), [anon_sym_LT] = ACTIONS(2875), @@ -154592,7 +154358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(347), + [anon_sym_end] = ACTIONS(976), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154601,15 +154367,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1062] = { - [sym__terminator] = STATE(146), - [sym_after_block] = STATE(4738), - [sym_rescue_block] = STATE(4738), - [sym_catch_block] = STATE(4738), - [sym_else_block] = STATE(4738), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4662), - [aux_sym_do_block_repeat1] = STATE(4738), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(173), + [sym_after_block] = STATE(4697), + [sym_rescue_block] = STATE(4697), + [sym_catch_block] = STATE(4697), + [sym_else_block] = STATE(4697), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4647), + [aux_sym_do_block_repeat1] = STATE(4697), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2924), [anon_sym_LT] = ACTIONS(2875), @@ -154663,7 +154429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(968), + [anon_sym_end] = ACTIONS(331), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154672,15 +154438,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1063] = { - [sym__terminator] = STATE(149), - [sym_after_block] = STATE(4700), - [sym_rescue_block] = STATE(4700), - [sym_catch_block] = STATE(4700), - [sym_else_block] = STATE(4700), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4627), - [aux_sym_do_block_repeat1] = STATE(4700), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(168), + [sym_after_block] = STATE(4703), + [sym_rescue_block] = STATE(4703), + [sym_catch_block] = STATE(4703), + [sym_else_block] = STATE(4703), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4642), + [aux_sym_do_block_repeat1] = STATE(4703), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2926), [anon_sym_LT] = ACTIONS(2875), @@ -154734,7 +154500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(327), + [anon_sym_end] = ACTIONS(1024), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154743,15 +154509,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1064] = { - [sym__terminator] = STATE(172), - [sym_after_block] = STATE(4694), - [sym_rescue_block] = STATE(4694), - [sym_catch_block] = STATE(4694), - [sym_else_block] = STATE(4694), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4622), - [aux_sym_do_block_repeat1] = STATE(4694), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(163), + [sym_after_block] = STATE(4699), + [sym_rescue_block] = STATE(4699), + [sym_catch_block] = STATE(4699), + [sym_else_block] = STATE(4699), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4649), + [aux_sym_do_block_repeat1] = STATE(4699), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2928), [anon_sym_LT] = ACTIONS(2875), @@ -154805,7 +154571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(351), + [anon_sym_end] = ACTIONS(307), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154814,15 +154580,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1065] = { - [sym__terminator] = STATE(156), - [sym_after_block] = STATE(4730), - [sym_rescue_block] = STATE(4730), - [sym_catch_block] = STATE(4730), - [sym_else_block] = STATE(4730), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4642), - [aux_sym_do_block_repeat1] = STATE(4730), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(158), + [sym_after_block] = STATE(4713), + [sym_rescue_block] = STATE(4713), + [sym_catch_block] = STATE(4713), + [sym_else_block] = STATE(4713), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4635), + [aux_sym_do_block_repeat1] = STATE(4713), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2930), [anon_sym_LT] = ACTIONS(2875), @@ -154876,7 +154642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(1002), + [anon_sym_end] = ACTIONS(323), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154885,15 +154651,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1066] = { - [sym__terminator] = STATE(143), - [sym_after_block] = STATE(4737), - [sym_rescue_block] = STATE(4737), - [sym_catch_block] = STATE(4737), - [sym_else_block] = STATE(4737), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4643), - [aux_sym_do_block_repeat1] = STATE(4737), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(154), + [sym_after_block] = STATE(4717), + [sym_rescue_block] = STATE(4717), + [sym_catch_block] = STATE(4717), + [sym_else_block] = STATE(4717), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4639), + [aux_sym_do_block_repeat1] = STATE(4717), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2932), [anon_sym_LT] = ACTIONS(2875), @@ -154947,7 +154713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(982), + [anon_sym_end] = ACTIONS(994), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -154956,15 +154722,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1067] = { - [sym__terminator] = STATE(160), - [sym_after_block] = STATE(4698), - [sym_rescue_block] = STATE(4698), - [sym_catch_block] = STATE(4698), - [sym_else_block] = STATE(4698), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4682), - [aux_sym_do_block_repeat1] = STATE(4698), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(143), + [sym_after_block] = STATE(4714), + [sym_rescue_block] = STATE(4714), + [sym_catch_block] = STATE(4714), + [sym_else_block] = STATE(4714), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4627), + [aux_sym_do_block_repeat1] = STATE(4714), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2934), [anon_sym_LT] = ACTIONS(2875), @@ -155018,7 +154784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(960), + [anon_sym_end] = ACTIONS(982), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155027,15 +154793,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1068] = { - [sym__terminator] = STATE(154), - [sym_after_block] = STATE(4707), - [sym_rescue_block] = STATE(4707), - [sym_catch_block] = STATE(4707), - [sym_else_block] = STATE(4707), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4675), - [aux_sym_do_block_repeat1] = STATE(4707), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(144), + [sym_after_block] = STATE(4727), + [sym_rescue_block] = STATE(4727), + [sym_catch_block] = STATE(4727), + [sym_else_block] = STATE(4727), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4687), + [aux_sym_do_block_repeat1] = STATE(4727), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2936), [anon_sym_LT] = ACTIONS(2875), @@ -155089,7 +154855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(994), + [anon_sym_end] = ACTIONS(343), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155099,14 +154865,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1069] = { [sym__terminator] = STATE(148), - [sym_after_block] = STATE(4727), - [sym_rescue_block] = STATE(4727), - [sym_catch_block] = STATE(4727), - [sym_else_block] = STATE(4727), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4646), - [aux_sym_do_block_repeat1] = STATE(4727), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym_after_block] = STATE(4729), + [sym_rescue_block] = STATE(4729), + [sym_catch_block] = STATE(4729), + [sym_else_block] = STATE(4729), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4668), + [aux_sym_do_block_repeat1] = STATE(4729), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2938), [anon_sym_LT] = ACTIONS(2875), @@ -155169,15 +154935,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1070] = { - [sym__terminator] = STATE(174), - [sym_after_block] = STATE(4699), - [sym_rescue_block] = STATE(4699), - [sym_catch_block] = STATE(4699), - [sym_else_block] = STATE(4699), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4626), - [aux_sym_do_block_repeat1] = STATE(4699), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(145), + [sym_after_block] = STATE(4712), + [sym_rescue_block] = STATE(4712), + [sym_catch_block] = STATE(4712), + [sym_else_block] = STATE(4712), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4672), + [aux_sym_do_block_repeat1] = STATE(4712), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2940), [anon_sym_LT] = ACTIONS(2875), @@ -155231,7 +154997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(1022), + [anon_sym_end] = ACTIONS(335), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155240,15 +155006,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1071] = { - [sym__terminator] = STATE(168), - [sym_after_block] = STATE(4708), - [sym_rescue_block] = STATE(4708), - [sym_catch_block] = STATE(4708), - [sym_else_block] = STATE(4708), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4671), - [aux_sym_do_block_repeat1] = STATE(4708), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(152), + [sym_after_block] = STATE(4709), + [sym_rescue_block] = STATE(4709), + [sym_catch_block] = STATE(4709), + [sym_else_block] = STATE(4709), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4632), + [aux_sym_do_block_repeat1] = STATE(4709), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2942), [anon_sym_LT] = ACTIONS(2875), @@ -155302,7 +155068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(1024), + [anon_sym_end] = ACTIONS(311), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155311,15 +155077,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1072] = { - [sym__terminator] = STATE(164), - [sym_after_block] = STATE(4747), - [sym_rescue_block] = STATE(4747), - [sym_catch_block] = STATE(4747), - [sym_else_block] = STATE(4747), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4656), - [aux_sym_do_block_repeat1] = STATE(4747), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(140), + [sym_after_block] = STATE(4702), + [sym_rescue_block] = STATE(4702), + [sym_catch_block] = STATE(4702), + [sym_else_block] = STATE(4702), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4686), + [aux_sym_do_block_repeat1] = STATE(4702), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2944), [anon_sym_LT] = ACTIONS(2875), @@ -155373,7 +155139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(1004), + [anon_sym_end] = ACTIONS(1016), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155382,15 +155148,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1073] = { - [sym__terminator] = STATE(140), - [sym_after_block] = STATE(4703), - [sym_rescue_block] = STATE(4703), - [sym_catch_block] = STATE(4703), - [sym_else_block] = STATE(4703), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4674), - [aux_sym_do_block_repeat1] = STATE(4703), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(149), + [sym_after_block] = STATE(4690), + [sym_rescue_block] = STATE(4690), + [sym_catch_block] = STATE(4690), + [sym_else_block] = STATE(4690), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4675), + [aux_sym_do_block_repeat1] = STATE(4690), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2946), [anon_sym_LT] = ACTIONS(2875), @@ -155444,7 +155210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(1016), + [anon_sym_end] = ACTIONS(327), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155453,15 +155219,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1074] = { - [sym__terminator] = STATE(170), - [sym_after_block] = STATE(4711), - [sym_rescue_block] = STATE(4711), - [sym_catch_block] = STATE(4711), - [sym_else_block] = STATE(4711), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4635), - [aux_sym_do_block_repeat1] = STATE(4711), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(164), + [sym_after_block] = STATE(4694), + [sym_rescue_block] = STATE(4694), + [sym_catch_block] = STATE(4694), + [sym_else_block] = STATE(4694), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4678), + [aux_sym_do_block_repeat1] = STATE(4694), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2948), [anon_sym_LT] = ACTIONS(2875), @@ -155515,7 +155281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(1012), + [anon_sym_end] = ACTIONS(1004), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155524,15 +155290,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1075] = { - [sym__terminator] = STATE(145), - [sym_after_block] = STATE(4712), - [sym_rescue_block] = STATE(4712), - [sym_catch_block] = STATE(4712), - [sym_else_block] = STATE(4712), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4669), - [aux_sym_do_block_repeat1] = STATE(4712), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(141), + [sym_after_block] = STATE(4736), + [sym_rescue_block] = STATE(4736), + [sym_catch_block] = STATE(4736), + [sym_else_block] = STATE(4736), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4648), + [aux_sym_do_block_repeat1] = STATE(4736), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2950), [anon_sym_LT] = ACTIONS(2875), @@ -155586,7 +155352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(335), + [anon_sym_end] = ACTIONS(315), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155595,15 +155361,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1076] = { - [sym__terminator] = STATE(144), - [sym_after_block] = STATE(4744), - [sym_rescue_block] = STATE(4744), - [sym_catch_block] = STATE(4744), - [sym_else_block] = STATE(4744), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4652), - [aux_sym_do_block_repeat1] = STATE(4744), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(170), + [sym_after_block] = STATE(4691), + [sym_rescue_block] = STATE(4691), + [sym_catch_block] = STATE(4691), + [sym_else_block] = STATE(4691), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4633), + [aux_sym_do_block_repeat1] = STATE(4691), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2952), [anon_sym_LT] = ACTIONS(2875), @@ -155657,7 +155423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(343), + [anon_sym_end] = ACTIONS(1012), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155666,15 +155432,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1077] = { - [sym__terminator] = STATE(163), - [sym_after_block] = STATE(4736), - [sym_rescue_block] = STATE(4736), - [sym_catch_block] = STATE(4736), - [sym_else_block] = STATE(4736), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4649), - [aux_sym_do_block_repeat1] = STATE(4736), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(167), + [sym_after_block] = STATE(4750), + [sym_rescue_block] = STATE(4750), + [sym_catch_block] = STATE(4750), + [sym_else_block] = STATE(4750), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4629), + [aux_sym_do_block_repeat1] = STATE(4750), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2954), [anon_sym_LT] = ACTIONS(2875), @@ -155728,7 +155494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(307), + [anon_sym_end] = ACTIONS(347), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155737,15 +155503,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1078] = { - [sym__terminator] = STATE(152), - [sym_after_block] = STATE(4743), - [sym_rescue_block] = STATE(4743), - [sym_catch_block] = STATE(4743), - [sym_else_block] = STATE(4743), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4684), - [aux_sym_do_block_repeat1] = STATE(4743), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(160), + [sym_after_block] = STATE(4739), + [sym_rescue_block] = STATE(4739), + [sym_catch_block] = STATE(4739), + [sym_else_block] = STATE(4739), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4644), + [aux_sym_do_block_repeat1] = STATE(4739), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2956), [anon_sym_LT] = ACTIONS(2875), @@ -155799,7 +155565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(311), + [anon_sym_end] = ACTIONS(960), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155808,15 +155574,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1079] = { - [sym__terminator] = STATE(169), - [sym_after_block] = STATE(4723), - [sym_rescue_block] = STATE(4723), - [sym_catch_block] = STATE(4723), - [sym_else_block] = STATE(4723), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4645), - [aux_sym_do_block_repeat1] = STATE(4723), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(146), + [sym_after_block] = STATE(4738), + [sym_rescue_block] = STATE(4738), + [sym_catch_block] = STATE(4738), + [sym_else_block] = STATE(4738), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4652), + [aux_sym_do_block_repeat1] = STATE(4738), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2958), [anon_sym_LT] = ACTIONS(2875), @@ -155870,7 +155636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(319), + [anon_sym_end] = ACTIONS(968), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155879,15 +155645,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1080] = { - [sym__terminator] = STATE(158), - [sym_after_block] = STATE(4732), - [sym_rescue_block] = STATE(4732), - [sym_catch_block] = STATE(4732), - [sym_else_block] = STATE(4732), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4680), - [aux_sym_do_block_repeat1] = STATE(4732), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(172), + [sym_after_block] = STATE(4704), + [sym_rescue_block] = STATE(4704), + [sym_catch_block] = STATE(4704), + [sym_else_block] = STATE(4704), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4683), + [aux_sym_do_block_repeat1] = STATE(4704), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2960), [anon_sym_LT] = ACTIONS(2875), @@ -155941,7 +155707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(323), + [anon_sym_end] = ACTIONS(351), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -155950,15 +155716,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1081] = { - [sym__terminator] = STATE(150), - [sym_after_block] = STATE(4714), - [sym_rescue_block] = STATE(4714), - [sym_catch_block] = STATE(4714), - [sym_else_block] = STATE(4714), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4630), - [aux_sym_do_block_repeat1] = STATE(4714), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(169), + [sym_after_block] = STATE(4707), + [sym_rescue_block] = STATE(4707), + [sym_catch_block] = STATE(4707), + [sym_else_block] = STATE(4707), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4616), + [aux_sym_do_block_repeat1] = STATE(4707), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2962), [anon_sym_LT] = ACTIONS(2875), @@ -156012,7 +155778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(976), + [anon_sym_end] = ACTIONS(319), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -156021,15 +155787,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1082] = { - [sym__terminator] = STATE(162), - [sym_after_block] = STATE(4719), - [sym_rescue_block] = STATE(4719), - [sym_catch_block] = STATE(4719), - [sym_else_block] = STATE(4719), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4639), - [aux_sym_do_block_repeat1] = STATE(4719), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(156), + [sym_after_block] = STATE(4731), + [sym_rescue_block] = STATE(4731), + [sym_catch_block] = STATE(4731), + [sym_else_block] = STATE(4731), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4663), + [aux_sym_do_block_repeat1] = STATE(4731), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2964), [anon_sym_LT] = ACTIONS(2875), @@ -156083,7 +155849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(339), + [anon_sym_end] = ACTIONS(1002), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -156092,15 +155858,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1083] = { - [sym__terminator] = STATE(173), - [sym_after_block] = STATE(4720), - [sym_rescue_block] = STATE(4720), - [sym_catch_block] = STATE(4720), - [sym_else_block] = STATE(4720), - [aux_sym__terminator_repeat1] = STATE(1021), - [aux_sym_block_repeat2] = STATE(4666), - [aux_sym_do_block_repeat1] = STATE(4720), - [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6139), + [sym__terminator] = STATE(162), + [sym_after_block] = STATE(4719), + [sym_rescue_block] = STATE(4719), + [sym_catch_block] = STATE(4719), + [sym_else_block] = STATE(4719), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym_block_repeat2] = STATE(4667), + [aux_sym_do_block_repeat1] = STATE(4719), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(6121), [aux_sym__terminator_token1] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2966), [anon_sym_LT] = ACTIONS(2875), @@ -156154,7 +155920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_after] = ACTIONS(103), [anon_sym_catch] = ACTIONS(105), [anon_sym_else] = ACTIONS(107), - [anon_sym_end] = ACTIONS(331), + [anon_sym_end] = ACTIONS(339), [anon_sym_rescue] = ACTIONS(113), [anon_sym_LBRACK2] = ACTIONS(2918), [sym_comment] = ACTIONS(5), @@ -156163,10 +155929,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2920), }, [1084] = { - [sym__call_arguments_with_parentheses] = STATE(1091), + [sym_do_block] = STATE(1111), [aux_sym__terminator_token1] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_RPAREN] = ACTIONS(2970), [anon_sym_LT] = ACTIONS(2970), [anon_sym_GT] = ACTIONS(2970), @@ -156230,77 +155996,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2968), }, [1085] = { - [sym_do_block] = STATE(1534), - [aux_sym__terminator_token1] = ACTIONS(2974), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_RPAREN] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_DOT_DOT] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2976), - [anon_sym_when] = ACTIONS(2976), - [anon_sym_COLON_COLON] = ACTIONS(2976), - [anon_sym_EQ_GT] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2976), - [anon_sym_and] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_EQ_TILDE] = ACTIONS(2976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_PIPE_GT] = ACTIONS(2976), - [anon_sym_LT_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_LT_LT_TILDE] = ACTIONS(2976), - [anon_sym_TILDE_GT_GT] = ACTIONS(2976), - [anon_sym_LT_TILDE] = ACTIONS(2976), - [anon_sym_TILDE_GT] = ACTIONS(2976), - [anon_sym_LT_TILDE_GT] = ACTIONS(2976), - [anon_sym_LT_PIPE_GT] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(2976), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2976), - [anon_sym_LT_GT] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_STAR_STAR] = ACTIONS(2976), - [anon_sym_DASH_GT] = ACTIONS(2976), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_after] = ACTIONS(2976), - [anon_sym_catch] = ACTIONS(2976), + [sym_do_block] = STATE(1465), + [aux_sym__terminator_token1] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_DOT_DOT] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2974), + [anon_sym_when] = ACTIONS(2974), + [anon_sym_COLON_COLON] = ACTIONS(2974), + [anon_sym_EQ_GT] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2974), + [anon_sym_and] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_EQ_TILDE] = ACTIONS(2974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_PIPE_GT] = ACTIONS(2974), + [anon_sym_LT_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_LT_LT_TILDE] = ACTIONS(2974), + [anon_sym_TILDE_GT_GT] = ACTIONS(2974), + [anon_sym_LT_TILDE] = ACTIONS(2974), + [anon_sym_TILDE_GT] = ACTIONS(2974), + [anon_sym_LT_TILDE_GT] = ACTIONS(2974), + [anon_sym_LT_PIPE_GT] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2974), + [anon_sym_SLASH_SLASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2974), + [anon_sym_LT_GT] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_STAR_STAR] = ACTIONS(2974), + [anon_sym_DASH_GT] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_after] = ACTIONS(2974), + [anon_sym_catch] = ACTIONS(2974), [anon_sym_do] = ACTIONS(233), - [anon_sym_else] = ACTIONS(2976), - [anon_sym_end] = ACTIONS(2976), - [anon_sym_rescue] = ACTIONS(2976), - [anon_sym_LBRACK2] = ACTIONS(2974), + [anon_sym_else] = ACTIONS(2974), + [anon_sym_end] = ACTIONS(2974), + [anon_sym_rescue] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2972), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2978), + [sym__newline_before_do] = ACTIONS(2976), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2974), + [sym__not_in] = ACTIONS(2972), }, [1086] = { - [sym__call_arguments_with_parentheses] = STATE(1125), + [sym_do_block] = STATE(1461), [aux_sym__terminator_token1] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_RPAREN] = ACTIONS(2970), [anon_sym_LT] = ACTIONS(2970), [anon_sym_GT] = ACTIONS(2970), @@ -156352,89 +156118,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2970), [anon_sym_after] = ACTIONS(2970), [anon_sym_catch] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(233), [anon_sym_else] = ACTIONS(2970), [anon_sym_end] = ACTIONS(2970), [anon_sym_rescue] = ACTIONS(2970), [anon_sym_LBRACK2] = ACTIONS(2968), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2968), + [sym__newline_before_do] = ACTIONS(2978), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2968), }, [1087] = { - [sym__call_arguments_with_parentheses] = STATE(1122), - [aux_sym__terminator_token1] = ACTIONS(2968), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2972), - [anon_sym_RPAREN] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_DOT_DOT] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2970), - [anon_sym_when] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_EQ_GT] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2970), - [anon_sym_and] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_EQ_TILDE] = ACTIONS(2970), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_PIPE_GT] = ACTIONS(2970), - [anon_sym_LT_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_LT_LT_TILDE] = ACTIONS(2970), - [anon_sym_TILDE_GT_GT] = ACTIONS(2970), - [anon_sym_LT_TILDE] = ACTIONS(2970), - [anon_sym_TILDE_GT] = ACTIONS(2970), - [anon_sym_LT_TILDE_GT] = ACTIONS(2970), - [anon_sym_LT_PIPE_GT] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2970), - [anon_sym_SLASH_SLASH] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2970), - [anon_sym_LT_GT] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_STAR_STAR] = ACTIONS(2970), - [anon_sym_DASH_GT] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_after] = ACTIONS(2970), - [anon_sym_catch] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_end] = ACTIONS(2970), - [anon_sym_rescue] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2968), + [sym__call_arguments_with_parentheses] = STATE(1138), + [aux_sym__terminator_token1] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SLASH] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_DOT_DOT] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2982), + [anon_sym_when] = ACTIONS(2982), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2982), + [anon_sym_and] = ACTIONS(2982), + [anon_sym_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2982), + [anon_sym_EQ_TILDE] = ACTIONS(2982), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(2982), + [anon_sym_GT_EQ] = ACTIONS(2982), + [anon_sym_PIPE_GT] = ACTIONS(2982), + [anon_sym_LT_LT_LT] = ACTIONS(2982), + [anon_sym_GT_GT_GT] = ACTIONS(2982), + [anon_sym_LT_LT_TILDE] = ACTIONS(2982), + [anon_sym_TILDE_GT_GT] = ACTIONS(2982), + [anon_sym_LT_TILDE] = ACTIONS(2982), + [anon_sym_TILDE_GT] = ACTIONS(2982), + [anon_sym_LT_TILDE_GT] = ACTIONS(2982), + [anon_sym_LT_PIPE_GT] = ACTIONS(2982), + [anon_sym_in] = ACTIONS(2982), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2982), + [anon_sym_SLASH_SLASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2982), + [anon_sym_LT_GT] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_STAR_STAR] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(2982), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_after] = ACTIONS(2982), + [anon_sym_catch] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_else] = ACTIONS(2982), + [anon_sym_end] = ACTIONS(2982), + [anon_sym_rescue] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2980), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2968), + [sym__newline_before_do] = ACTIONS(2980), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2968), + [sym__not_in] = ACTIONS(2980), }, [1088] = { - [sym_do_block] = STATE(1094), + [sym__call_arguments_with_parentheses] = STATE(1122), [aux_sym__terminator_token1] = ACTIONS(2980), [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), [anon_sym_RPAREN] = ACTIONS(2982), [anon_sym_LT] = ACTIONS(2982), [anon_sym_GT] = ACTIONS(2982), @@ -156498,10 +156264,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__not_in] = ACTIONS(2980), }, [1089] = { - [sym_do_block] = STATE(1533), + [sym_do_block] = STATE(1106), + [aux_sym__terminator_token1] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_LT] = ACTIONS(2974), + [anon_sym_GT] = ACTIONS(2974), + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_SLASH] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(2974), + [anon_sym_DOT_DOT] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_LT_DASH] = ACTIONS(2974), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2974), + [anon_sym_when] = ACTIONS(2974), + [anon_sym_COLON_COLON] = ACTIONS(2974), + [anon_sym_EQ_GT] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2974), + [anon_sym_or] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2974), + [anon_sym_and] = ACTIONS(2974), + [anon_sym_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ] = ACTIONS(2974), + [anon_sym_EQ_TILDE] = ACTIONS(2974), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2974), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2974), + [anon_sym_LT_EQ] = ACTIONS(2974), + [anon_sym_GT_EQ] = ACTIONS(2974), + [anon_sym_PIPE_GT] = ACTIONS(2974), + [anon_sym_LT_LT_LT] = ACTIONS(2974), + [anon_sym_GT_GT_GT] = ACTIONS(2974), + [anon_sym_LT_LT_TILDE] = ACTIONS(2974), + [anon_sym_TILDE_GT_GT] = ACTIONS(2974), + [anon_sym_LT_TILDE] = ACTIONS(2974), + [anon_sym_TILDE_GT] = ACTIONS(2974), + [anon_sym_LT_TILDE_GT] = ACTIONS(2974), + [anon_sym_LT_PIPE_GT] = ACTIONS(2974), + [anon_sym_in] = ACTIONS(2974), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2974), + [anon_sym_SLASH_SLASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(2974), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2974), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2974), + [anon_sym_LT_GT] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_STAR_STAR] = ACTIONS(2974), + [anon_sym_DASH_GT] = ACTIONS(2974), + [anon_sym_DOT] = ACTIONS(2974), + [anon_sym_after] = ACTIONS(2974), + [anon_sym_catch] = ACTIONS(2974), + [anon_sym_do] = ACTIONS(2974), + [anon_sym_else] = ACTIONS(2974), + [anon_sym_end] = ACTIONS(2974), + [anon_sym_rescue] = ACTIONS(2974), + [anon_sym_LBRACK2] = ACTIONS(2972), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2972), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2972), + }, + [1090] = { + [sym__call_arguments_with_parentheses] = STATE(1133), [aux_sym__terminator_token1] = ACTIONS(2980), [anon_sym_SEMI] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2984), [anon_sym_RPAREN] = ACTIONS(2982), [anon_sym_LT] = ACTIONS(2982), [anon_sym_GT] = ACTIONS(2982), @@ -156553,101 +156386,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2982), [anon_sym_after] = ACTIONS(2982), [anon_sym_catch] = ACTIONS(2982), - [anon_sym_do] = ACTIONS(233), + [anon_sym_do] = ACTIONS(2982), [anon_sym_else] = ACTIONS(2982), [anon_sym_end] = ACTIONS(2982), [anon_sym_rescue] = ACTIONS(2982), [anon_sym_LBRACK2] = ACTIONS(2980), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2984), + [sym__newline_before_do] = ACTIONS(2980), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__not_in] = ACTIONS(2980), }, - [1090] = { - [sym_do_block] = STATE(1135), - [aux_sym__terminator_token1] = ACTIONS(2974), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_RPAREN] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_DOT_DOT] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2976), - [anon_sym_when] = ACTIONS(2976), - [anon_sym_COLON_COLON] = ACTIONS(2976), - [anon_sym_EQ_GT] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2976), - [anon_sym_and] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_EQ_TILDE] = ACTIONS(2976), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_PIPE_GT] = ACTIONS(2976), - [anon_sym_LT_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_LT_LT_TILDE] = ACTIONS(2976), - [anon_sym_TILDE_GT_GT] = ACTIONS(2976), - [anon_sym_LT_TILDE] = ACTIONS(2976), - [anon_sym_TILDE_GT] = ACTIONS(2976), - [anon_sym_LT_TILDE_GT] = ACTIONS(2976), - [anon_sym_LT_PIPE_GT] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_CARET_CARET_CARET] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(2976), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2976), - [anon_sym_LT_GT] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_STAR_STAR] = ACTIONS(2976), - [anon_sym_DASH_GT] = ACTIONS(2976), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_after] = ACTIONS(2976), - [anon_sym_catch] = ACTIONS(2976), - [anon_sym_do] = ACTIONS(2976), - [anon_sym_else] = ACTIONS(2976), - [anon_sym_end] = ACTIONS(2976), - [anon_sym_rescue] = ACTIONS(2976), - [anon_sym_LBRACK2] = ACTIONS(2974), - [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(2974), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2974), - }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 4, ACTIONS(5), 1, sym_comment, - STATE(1268), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, + ACTIONS(2631), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2988), 56, + ACTIONS(2633), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -156704,21 +156469,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75] = 5, + [73] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(2990), 1, + sym__newline_before_do, + STATE(1675), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2986), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2988), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [152] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(2992), 1, + anon_sym_SEMI, + STATE(324), 1, + sym__terminator, + STATE(1022), 1, + aux_sym__terminator_repeat1, + STATE(4759), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(666), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [281] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, + anon_sym_SEMI, + STATE(317), 1, + sym__terminator, + STATE(1022), 1, + aux_sym__terminator_repeat1, + STATE(4772), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(670), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [410] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(2996), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 56, + ACTIONS(2998), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -156774,18 +156804,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [150] = 4, + [483] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 4, + ACTIONS(3000), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 57, + ACTIONS(3002), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3004), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3006), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3008), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3010), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [702] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3016), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3018), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3020), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3022), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [921] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1346), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2974), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [996] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1345), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2968), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2970), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -156835,6 +157351,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1071] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2655), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2657), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, @@ -156843,20 +157427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [223] = 4, + [1144] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(2651), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3002), 57, + ACTIONS(2653), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -156912,94 +157496,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [296] = 32, + [1217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3024), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2877), 1, + anon_sym_LBRACK2, + ACTIONS(3026), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2881), 1, + anon_sym_SLASH, anon_sym_COMMA, - ACTIONS(2889), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2892), 1, anon_sym_COLON_COLON, - ACTIONS(2894), 1, anon_sym_EQ_GT, - ACTIONS(2896), 1, anon_sym_EQ, - ACTIONS(2906), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2914), 1, anon_sym_DASH_GT, - ACTIONS(2916), 1, anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3004), 1, - anon_sym_SEMI, - STATE(299), 1, - sym__terminator, - STATE(1021), 1, - aux_sym__terminator_repeat1, - STATE(4768), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1290] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1326), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(2980), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2898), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1467), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -157009,20 +157619,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [425] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1367] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1302), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 4, + ACTIONS(2980), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 57, + ACTIONS(2982), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157070,7 +157700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -157078,25 +157707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [498] = 7, + [1444] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3010), 1, - sym__newline_before_do, - STATE(1684), 1, - sym_do_block, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1301), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2974), 3, + ACTIONS(2980), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2976), 55, + ACTIONS(2982), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157147,24 +157774,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [577] = 5, + [1521] = 32, ACTIONS(5), 1, sym_comment, - STATE(1266), 1, - sym_do_block, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3030), 1, + anon_sym_SEMI, + STATE(309), 1, + sym__terminator, + STATE(1022), 1, + aux_sym__terminator_repeat1, + STATE(4758), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 4, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1499), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3032), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 56, + ACTIONS(3034), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157220,23 +157944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [652] = 7, + [1723] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3016), 1, - sym__newline_before_do, - STATE(1685), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2980), 3, + ACTIONS(3036), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2982), 55, + ACTIONS(3038), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -157286,13 +158005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [731] = 32, + [1796] = 32, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, @@ -157325,15 +158046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2920), 1, sym__not_in, - ACTIONS(3018), 1, + ACTIONS(3040), 1, anon_sym_SEMI, - STATE(334), 1, + STATE(333), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4766), 1, + STATE(4778), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -157360,7 +158081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(678), 5, + ACTIONS(674), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -157389,7 +158110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [860] = 32, + [1925] = 32, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, @@ -157422,15 +158143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2920), 1, sym__not_in, - ACTIONS(3020), 1, + ACTIONS(3042), 1, anon_sym_SEMI, - STATE(317), 1, + STATE(282), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4774), 1, + STATE(4753), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -157457,7 +158178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(670), 5, + ACTIONS(1497), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -157486,76 +158207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [989] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 57, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [1062] = 32, + [2054] = 32, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, @@ -157588,15 +158240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2920), 1, sym__not_in, - ACTIONS(3026), 1, + ACTIONS(3044), 1, anon_sym_SEMI, STATE(303), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4765), 1, + STATE(4751), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -157652,7 +158304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [1191] = 32, + [2183] = 32, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, @@ -157685,15 +158337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2920), 1, sym__not_in, - ACTIONS(3028), 1, + ACTIONS(3046), 1, anon_sym_SEMI, - STATE(295), 1, + STATE(299), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4771), 1, + STATE(4779), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -157720,7 +158372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1497), 5, + ACTIONS(1467), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -157749,21 +158401,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [1320] = 5, + [2312] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(3048), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 56, + ACTIONS(3050), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157819,7 +158470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1395] = 32, + [2385] = 32, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, @@ -157852,15 +158503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2920), 1, sym__not_in, - ACTIONS(3036), 1, + ACTIONS(3052), 1, anon_sym_SEMI, - STATE(324), 1, + STATE(334), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4761), 1, + STATE(4766), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -157887,7 +158538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(666), 5, + ACTIONS(678), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -157916,20 +158567,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [1524] = 4, + [2514] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, + ACTIONS(2627), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3040), 57, + ACTIONS(2629), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2587] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2623), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2625), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157985,18 +158705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1597] = 4, + [2660] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3042), 4, + ACTIONS(3054), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 57, + ACTIONS(3056), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -158054,23 +158774,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [1670] = 7, + [2733] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1277), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2986), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2988), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2808] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(233), 1, anon_sym_do, - ACTIONS(3046), 1, + ACTIONS(3062), 1, sym__newline_before_do, - STATE(1787), 1, + STATE(1571), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 3, + ACTIONS(3058), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 55, + ACTIONS(3060), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158119,29 +158909,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2887] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(3064), 1, + sym__newline_before_do, + STATE(1720), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2968), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2970), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [1749] = 5, + [2966] = 7, ACTIONS(5), 1, sym_comment, - STATE(1208), 1, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3066), 1, + sym__newline_before_do, + STATE(1680), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2974), 4, - sym__newline_before_do, + ACTIONS(2986), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2976), 56, + ACTIONS(2988), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158189,101 +159053,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [1824] = 32, + [3045] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3068), 1, + sym__newline_before_do, + STATE(1679), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2986), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2877), 1, + anon_sym_LBRACK2, + ACTIONS(2988), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2881), 1, + anon_sym_SLASH, anon_sym_COMMA, - ACTIONS(2889), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(2892), 1, anon_sym_COLON_COLON, - ACTIONS(2894), 1, anon_sym_EQ_GT, - ACTIONS(2896), 1, anon_sym_EQ, - ACTIONS(2906), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2914), 1, anon_sym_DASH_GT, - ACTIONS(2916), 1, anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3048), 1, - anon_sym_SEMI, - STATE(333), 1, - sym__terminator, - STATE(1021), 1, - aux_sym__terminator_repeat1, - STATE(4762), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3124] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(3070), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3072), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2898), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(674), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -158293,23 +159183,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [1953] = 7, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3197] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(233), 1, anon_sym_do, - ACTIONS(3054), 1, + ACTIONS(3078), 1, sym__newline_before_do, - STATE(1786), 1, + STATE(1676), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 3, + ACTIONS(3074), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 55, + ACTIONS(3076), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158365,94 +159273,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2032] = 32, + [3276] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, - aux_sym__terminator_token1, - ACTIONS(2877), 1, - anon_sym_PIPE, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2889), 1, - anon_sym_when, - ACTIONS(2892), 1, - anon_sym_COLON_COLON, - ACTIONS(2894), 1, - anon_sym_EQ_GT, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3056), 1, - anon_sym_SEMI, - STATE(309), 1, - sym__terminator, - STATE(1021), 1, - aux_sym__terminator_repeat1, - STATE(4778), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(2635), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2637), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2898), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1499), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -158462,20 +159324,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [2161] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3349] = 5, ACTIONS(5), 1, sym_comment, + STATE(1276), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 4, + ACTIONS(3074), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 57, + ACTIONS(3076), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158531,22 +159412,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2234] = 5, + [3424] = 5, ACTIONS(5), 1, sym_comment, - STATE(1181), 1, + STATE(1267), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2980), 4, + ACTIONS(3058), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2982), 56, + ACTIONS(3060), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158594,6 +159474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -158601,24 +159482,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2309] = 7, + [3499] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(271), 1, anon_sym_do, - ACTIONS(3062), 1, + ACTIONS(3080), 1, sym__newline_before_do, - STATE(1784), 1, + STATE(1718), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 3, + ACTIONS(2972), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 55, + ACTIONS(2974), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158666,30 +159548,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2388] = 7, + [3578] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - ACTIONS(3064), 1, - sym__newline_before_do, - STATE(1782), 1, + STATE(1269), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 3, + ACTIONS(2986), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 55, + ACTIONS(2988), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158742,27 +159620,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2467] = 7, + [3653] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - ACTIONS(3066), 1, - sym__newline_before_do, - STATE(1780), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 3, + ACTIONS(3082), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 55, + ACTIONS(3084), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158814,23 +159689,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2546] = 4, + [3726] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3068), 4, + ACTIONS(3086), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3070), 57, + ACTIONS(3088), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158886,20 +159763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2619] = 4, + [3801] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 5, + ACTIONS(3092), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 56, + ACTIONS(3094), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158955,20 +159832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2692] = 4, + [3874] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 4, + ACTIONS(3096), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 57, + ACTIONS(3098), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -159024,10 +159902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2765] = 5, + [3949] = 5, ACTIONS(5), 1, sym_comment, - STATE(1269), 1, + STATE(1270), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -159094,20 +159972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2840] = 5, + [4024] = 4, ACTIONS(5), 1, sym_comment, - STATE(1274), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, + ACTIONS(3102), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 56, + ACTIONS(3104), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -159164,20 +160040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2915] = 4, + [4096] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 57, + ACTIONS(3108), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -159233,20 +160108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2988] = 5, + [4168] = 4, ACTIONS(5), 1, sym_comment, - STATE(1275), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, + ACTIONS(3110), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 56, + ACTIONS(3112), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -159303,20 +160176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3063] = 4, + [4240] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 4, + ACTIONS(3114), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 57, + ACTIONS(3116), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -159372,20 +160244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3136] = 4, + [4312] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3084), 4, + ACTIONS(3114), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3086), 57, + ACTIONS(3116), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -159441,20 +160312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3209] = 4, + [4384] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3088), 4, + ACTIONS(2980), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3090), 57, + ACTIONS(2982), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -159510,19 +160380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3282] = 4, + [4456] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 5, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2629), 56, + ACTIONS(3120), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -159579,25 +160448,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3355] = 4, + [4528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4600] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4744] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 5, + ACTIONS(3134), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 56, + ACTIONS(3136), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -159648,25 +160720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3428] = 4, + [4816] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 5, + ACTIONS(3138), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 56, + ACTIONS(3140), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -159717,25 +160788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3501] = 4, + [4888] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 5, + ACTIONS(3142), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 56, + ACTIONS(3144), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -159786,99 +160856,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3574] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1195), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2968), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2970), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [3651] = 6, + [4960] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1188), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3146), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3148), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -159921,6 +160916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -159928,20 +160924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3728] = 4, + [5032] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 4, + ACTIONS(3150), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3096), 57, + ACTIONS(3152), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -159997,25 +160992,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3801] = 4, + [5104] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 4, + ACTIONS(3154), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 57, + ACTIONS(3156), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160066,28 +161060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3874] = 6, + [5176] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1187), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3158), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3160), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160130,6 +161120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -160137,19 +161128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3951] = 4, + [5248] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 5, + ACTIONS(3150), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 56, + ACTIONS(3152), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160206,18 +161196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4024] = 4, + [5320] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 4, + ACTIONS(3162), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 56, + ACTIONS(3164), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -160274,24 +161264,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4096] = 4, + [5392] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3150), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 56, + ACTIONS(3152), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160342,24 +161332,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4168] = 4, + [5464] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3102), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 56, + ACTIONS(3104), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160410,92 +161400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4240] = 4, + [5536] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3114), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3116), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3170), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [4312] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 56, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160546,24 +161469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4384] = 4, + [5610] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 4, + ACTIONS(3086), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 56, + ACTIONS(3088), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160614,24 +161537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4456] = 4, + [5682] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, + ACTIONS(2655), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3128), 56, + ACTIONS(2657), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160674,7 +161598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -160682,24 +161605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4528] = 4, + [5754] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 4, + ACTIONS(2651), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3132), 56, + ACTIONS(2653), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160742,7 +161666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -160750,24 +161673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4600] = 4, + [5826] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(2627), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3136), 56, + ACTIONS(2629), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160810,7 +161734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -160818,24 +161741,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4672] = 4, + [5898] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 4, + ACTIONS(2623), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3140), 56, + ACTIONS(2625), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160878,7 +161802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -160886,24 +161809,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4744] = 4, + [5970] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 4, + ACTIONS(3172), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 56, + ACTIONS(3174), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -160954,24 +161877,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4816] = 4, + [6042] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 4, + ACTIONS(3176), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 56, + ACTIONS(3178), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161022,24 +161945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4888] = 4, + [6114] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, + ACTIONS(3180), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 56, + ACTIONS(3182), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161090,24 +162013,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4960] = 4, + [6186] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, + ACTIONS(3184), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 56, + ACTIONS(3186), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161158,24 +162081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5032] = 4, + [6258] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, + ACTIONS(3188), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 56, + ACTIONS(3190), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161226,24 +162149,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5104] = 4, + [6330] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3192), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 56, + ACTIONS(3194), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161294,18 +162217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5176] = 4, + [6402] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 4, + ACTIONS(3196), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 56, + ACTIONS(3198), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161362,18 +162285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5248] = 4, + [6474] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 4, + ACTIONS(3200), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 56, + ACTIONS(3202), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161430,27 +162353,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5320] = 6, + [6546] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 4, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3160), 54, + ACTIONS(2637), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -161500,18 +162421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5396] = 4, + [6618] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 4, + ACTIONS(3096), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3167), 56, + ACTIONS(3098), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161568,24 +162489,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5468] = 4, + [6690] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 4, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3167), 56, + ACTIONS(2633), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161636,24 +162557,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5540] = 4, + [6762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(2623), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 56, + ACTIONS(2625), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161704,24 +162625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5612] = 4, + [6834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 56, + ACTIONS(2629), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -161772,18 +162693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5684] = 4, + [6906] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 4, + ACTIONS(3096), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3179), 56, + ACTIONS(3098), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161840,18 +162761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5756] = 4, + [6978] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3204), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 56, + ACTIONS(3206), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161908,18 +162829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5828] = 4, + [7050] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 4, + ACTIONS(3208), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 56, + ACTIONS(3210), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161976,18 +162897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5900] = 4, + [7122] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 4, + ACTIONS(3086), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 56, + ACTIONS(3088), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -162044,24 +162965,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [5972] = 4, + [7194] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 4, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3195), 56, + ACTIONS(2653), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162112,18 +163033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6044] = 4, + [7266] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(2631), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3199), 56, + ACTIONS(2633), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -162172,7 +163094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162180,18 +163101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6116] = 4, + [7338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(2635), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3199), 56, + ACTIONS(2637), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -162240,7 +163162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162248,25 +163169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6188] = 4, + [7410] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3084), 4, + ACTIONS(2655), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3086), 56, + ACTIONS(2657), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162309,6 +163229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162316,20 +163237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6260] = 4, + [7482] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3068), 4, + ACTIONS(3212), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3070), 56, + ACTIONS(3214), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -162377,6 +163297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162384,24 +163305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6332] = 4, + [7554] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + ACTIONS(3216), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 56, + ACTIONS(3218), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162452,24 +163373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6404] = 4, + [7626] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 4, + ACTIONS(3220), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 56, + ACTIONS(3222), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162520,18 +163441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6476] = 4, + [7698] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 4, + ACTIONS(3224), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 56, + ACTIONS(3226), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -162588,18 +163509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6548] = 4, + [7770] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + ACTIONS(3228), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 56, + ACTIONS(3230), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -162656,24 +163577,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6620] = 4, + [7842] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, + ACTIONS(3086), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 56, + ACTIONS(3088), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162716,7 +163639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162724,24 +163646,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6692] = 4, + [7916] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + ACTIONS(3096), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 56, + ACTIONS(3098), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162784,7 +163708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -162792,18 +163715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6764] = 4, + [7990] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + ACTIONS(3232), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 56, + ACTIONS(3234), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -162860,24 +163783,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6836] = 4, + [8062] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(3236), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 56, + ACTIONS(3238), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -162928,18 +163851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6908] = 4, + [8134] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + ACTIONS(3240), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 56, + ACTIONS(3242), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -162996,18 +163919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [6980] = 4, + [8206] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3244), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 56, + ACTIONS(3246), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -163064,25 +163987,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7052] = 4, + [8278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3248), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 56, + ACTIONS(3250), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -163125,6 +164047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -163132,27 +164055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7124] = 6, + [8350] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + ACTIONS(3252), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 54, + ACTIONS(3254), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -163202,26 +164123,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7200] = 5, + [8422] = 4, ACTIONS(5), 1, sym_comment, - STATE(1470), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 4, + ACTIONS(3256), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 55, + ACTIONS(3258), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -163264,6 +164183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -163271,18 +164191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7274] = 4, + [8494] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, + ACTIONS(3260), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 56, + ACTIONS(3262), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -163339,18 +164259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7346] = 4, + [8566] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, + ACTIONS(3264), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 56, + ACTIONS(3266), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -163407,24 +164327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7418] = 4, + [8638] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(3268), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 56, + ACTIONS(3270), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -163475,185 +164395,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7490] = 5, + [8710] = 27, ACTIONS(5), 1, sym_comment, - STATE(1472), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2986), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2988), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3278), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3282), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3290), 1, anon_sym_when, + ACTIONS(3292), 1, anon_sym_COLON_COLON, + ACTIONS(3294), 1, anon_sym_EQ_GT, + ACTIONS(3296), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3306), 1, anon_sym_in, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3312), 1, anon_sym_STAR_STAR, + ACTIONS(3314), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7564] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1473), 1, - sym_do_block, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + STATE(1298), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, + ACTIONS(3272), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2988), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3280), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3286), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3288), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3298), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3300), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3274), 8, + anon_sym_SEMI, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [7638] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 56, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -163663,44 +164486,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [7710] = 5, + [8828] = 4, ACTIONS(5), 1, sym_comment, - STATE(1475), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, + ACTIONS(3320), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 55, + ACTIONS(3322), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -163743,6 +164546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -163750,24 +164554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7784] = 4, + [8900] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3324), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 56, + ACTIONS(3326), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -163818,18 +164622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7856] = 4, + [8972] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(3328), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 56, + ACTIONS(3330), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -163886,20 +164690,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7928] = 5, + [9044] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(3332), 1, + sym__newline_before_do, + STATE(2097), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, - sym__newline_before_do, + ACTIONS(2986), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 55, + ACTIONS(2988), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -163951,30 +164758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8002] = 5, + [9122] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(3334), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 55, + ACTIONS(3336), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -164017,6 +164821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -164024,20 +164829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8076] = 5, + [9194] = 7, ACTIONS(5), 1, sym_comment, - STATE(1476), 1, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(3338), 1, + sym__newline_before_do, + STATE(2096), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, - sym__newline_before_do, + ACTIONS(3074), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 55, + ACTIONS(3076), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164089,24 +164897,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8150] = 4, + [9272] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(3340), 1, + sym__newline_before_do, + STATE(2093), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 4, - sym__newline_before_do, + ACTIONS(2986), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 56, + ACTIONS(2988), 54, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -164157,22 +164968,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8222] = 4, + [9350] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3342), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 56, + ACTIONS(3344), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164229,24 +165039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8294] = 4, + [9422] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(3346), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 56, + ACTIONS(3348), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -164297,18 +165107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8366] = 4, + [9494] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(3350), 1, + sym__newline_before_do, + STATE(2092), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3251), 4, - sym__newline_before_do, + ACTIONS(2986), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 56, + ACTIONS(2988), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164357,26 +165172,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8438] = 4, + [9572] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(271), 1, + anon_sym_do, + ACTIONS(3352), 1, + sym__newline_before_do, + STATE(1795), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3255), 4, - sym__newline_before_do, + ACTIONS(3058), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3257), 56, + ACTIONS(3060), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164425,28 +165243,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8510] = 4, + [9650] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3354), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -164501,25 +165318,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8582] = 4, + [9724] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 4, + ACTIONS(3356), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 56, + ACTIONS(3358), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -164562,6 +165378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -164569,18 +165386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8654] = 4, + [9796] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3263), 4, + ACTIONS(3360), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3265), 56, + ACTIONS(3362), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164637,95 +165454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8726] = 7, + [9868] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3267), 1, - sym__newline_before_do, - STATE(2097), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2988), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8804] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3269), 1, + ACTIONS(3004), 4, sym__newline_before_do, - STATE(2096), 1, - sym_do_block, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3050), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 54, + ACTIONS(3006), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -164776,26 +165518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8882] = 7, + [9940] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3271), 1, - sym__newline_before_do, - STATE(2093), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 3, + ACTIONS(3364), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 54, + ACTIONS(3366), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164844,29 +165582,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [8960] = 7, + [10012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3273), 1, - sym__newline_before_do, - STATE(2092), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 3, + ACTIONS(3368), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 54, + ACTIONS(3370), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -164915,31 +165650,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9038] = 4, + [10084] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 4, + ACTIONS(3372), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3096), 56, + ACTIONS(3374), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -164982,6 +165718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -164989,23 +165726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9110] = 7, + [10156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - ACTIONS(3275), 1, - sym__newline_before_do, - STATE(2089), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 3, + ACTIONS(3272), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 54, + ACTIONS(3274), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -165054,30 +165786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9188] = 4, + [10228] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 4, + ACTIONS(3376), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 56, + ACTIONS(3378), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -165128,18 +165862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9260] = 4, + [10300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 4, + ACTIONS(3380), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 56, + ACTIONS(3382), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -165196,18 +165930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9332] = 4, + [10372] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(3384), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 56, + ACTIONS(3386), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -165264,18 +165998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9404] = 4, + [10444] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2984), 1, + anon_sym_LPAREN, + STATE(1092), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, - sym__newline_before_do, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 56, + ACTIONS(2982), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -165328,28 +166065,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9476] = 4, + [10520] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2984), 1, + anon_sym_LPAREN, + STATE(1126), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, - sym__newline_before_do, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 56, + ACTIONS(2982), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -165396,28 +166135,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9548] = 4, + [10596] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2984), 1, + anon_sym_LPAREN, + STATE(1125), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 56, + ACTIONS(2982), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -165464,22 +166205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [9620] = 4, + [10672] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3388), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 56, + ACTIONS(3390), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -165536,18 +166276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9692] = 4, + [10744] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3392), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 56, + ACTIONS(3394), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -165604,24 +166344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9764] = 4, + [10816] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 4, + ACTIONS(3396), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 56, + ACTIONS(3398), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -165672,24 +166412,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9836] = 4, + [10888] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 4, + ACTIONS(3400), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 56, + ACTIONS(3402), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -165740,25 +166480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9908] = 4, + [10960] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 4, + ACTIONS(3404), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 56, + ACTIONS(3406), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -165801,6 +166540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -165808,20 +166548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9980] = 4, + [11032] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 4, + ACTIONS(3074), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 56, + ACTIONS(3076), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -165869,6 +166608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -165876,18 +166616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10052] = 4, + [11104] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, + ACTIONS(3408), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 56, + ACTIONS(3410), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -165944,20 +166684,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10124] = 4, + [11176] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3088), 4, + ACTIONS(3412), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3090), 56, + ACTIONS(3414), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -166005,6 +166744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166012,20 +166752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10196] = 4, + [11248] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 4, + ACTIONS(3416), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 56, + ACTIONS(3418), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -166073,6 +166812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166080,20 +166820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10268] = 4, + [11320] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 4, + ACTIONS(3416), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 56, + ACTIONS(3418), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -166141,6 +166880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166148,18 +166888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10340] = 4, + [11392] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3416), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 56, + ACTIONS(3418), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166216,18 +166956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10412] = 4, + [11464] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3420), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 56, + ACTIONS(3422), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166284,18 +167024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10484] = 4, + [11536] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3424), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 56, + ACTIONS(3426), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166352,18 +167092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10556] = 4, + [11608] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, + ACTIONS(3428), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 56, + ACTIONS(3430), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166420,25 +167160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10628] = 4, + [11680] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 4, + ACTIONS(3432), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 56, + ACTIONS(3434), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -166481,6 +167220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166488,20 +167228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10700] = 4, + [11752] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 4, + ACTIONS(3436), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 56, + ACTIONS(3438), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -166549,6 +167288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166556,25 +167296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10772] = 4, + [11824] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 56, + ACTIONS(3442), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -166617,6 +167356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166624,25 +167364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10844] = 4, + [11896] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3042), 4, + ACTIONS(3444), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 56, + ACTIONS(3446), 56, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -166685,6 +167424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -166692,18 +167432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10916] = 4, + [11968] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, + ACTIONS(3428), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 56, + ACTIONS(3430), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166760,18 +167500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10988] = 4, + [12040] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, + ACTIONS(3448), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 56, + ACTIONS(3450), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166828,18 +167568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11060] = 4, + [12112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 4, + ACTIONS(3452), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3303), 56, + ACTIONS(3454), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166896,18 +167636,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11132] = 4, + [12184] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3305), 4, + ACTIONS(3456), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3307), 56, + ACTIONS(3458), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166964,18 +167704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11204] = 4, + [12256] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3309), 4, + ACTIONS(3460), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3311), 56, + ACTIONS(3462), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -167032,18 +167772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11276] = 4, + [12328] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3313), 4, + ACTIONS(3464), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3315), 56, + ACTIONS(3466), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -167100,24 +167840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11348] = 4, + [12400] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 4, + ACTIONS(3468), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 56, + ACTIONS(3470), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167168,24 +167908,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11420] = 4, + [12472] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3472), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 56, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167236,24 +167977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11492] = 4, + [12546] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 4, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 56, + ACTIONS(3476), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167304,24 +168045,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11564] = 4, + [12618] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 4, + ACTIONS(3478), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 56, + ACTIONS(3480), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167372,18 +168113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11636] = 4, + [12690] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3333), 4, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3335), 56, + ACTIONS(3476), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -167440,24 +168181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11708] = 4, + [12762] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3482), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 56, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167508,24 +168250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11780] = 4, + [12836] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + ACTIONS(3484), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 56, + ACTIONS(3486), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167576,24 +168318,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11852] = 4, + [12908] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + ACTIONS(3428), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 56, + ACTIONS(3430), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167644,27 +168386,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11924] = 6, + [12980] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LPAREN, - STATE(1109), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 3, + ACTIONS(3436), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3438), 56, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167711,27 +168450,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [12000] = 4, + [13052] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 4, + ACTIONS(3082), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 56, + ACTIONS(3084), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167774,7 +168515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -167782,27 +168522,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12072] = 6, + [13124] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3357), 1, - anon_sym_COMMA, - STATE(1261), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 4, + ACTIONS(3070), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 54, + ACTIONS(3072), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -167844,7 +168583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -167852,18 +168590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12148] = 4, + [13196] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 56, + ACTIONS(3108), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -167920,24 +168658,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12220] = 4, + [13268] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3488), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 56, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -167988,21 +168727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12292] = 6, + [13342] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LPAREN, - STATE(1116), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 3, + ACTIONS(3490), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3492), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -168055,27 +168791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [12368] = 4, + [13414] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 4, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 56, + ACTIONS(3476), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -168126,18 +168863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12440] = 4, + [13486] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3494), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 56, + ACTIONS(3496), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -168194,18 +168931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12512] = 4, + [13558] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3494), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 56, + ACTIONS(3496), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -168262,21 +168999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12584] = 6, + [13630] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LPAREN, - STATE(1117), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 3, + ACTIONS(3498), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3500), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -168329,27 +169063,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [12660] = 4, + [13702] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3502), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 56, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -168400,18 +169136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12732] = 4, + [13776] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 4, + ACTIONS(3368), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 56, + ACTIONS(3370), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -168468,18 +169204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12804] = 4, + [13848] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 4, + ACTIONS(3364), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 56, + ACTIONS(3366), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -168536,27 +169272,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12876] = 6, + [13920] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3504), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(1264), 1, - aux_sym_keywords_repeat1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13994] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 4, + ACTIONS(3498), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 54, + ACTIONS(3500), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -168606,18 +169409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12952] = 4, + [14066] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3391), 4, + ACTIONS(3494), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3393), 56, + ACTIONS(3496), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -168674,24 +169477,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13024] = 4, + [14138] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 4, + ACTIONS(3506), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 56, + ACTIONS(3508), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -168742,27 +169545,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13096] = 6, + [14210] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3510), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(1264), 1, - aux_sym_keywords_repeat1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14284] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3512), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 54, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -168812,24 +169683,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13172] = 4, + [14358] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 4, + ACTIONS(3444), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 56, + ACTIONS(3446), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -168880,18 +169751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13244] = 4, + [14430] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3406), 4, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3408), 56, + ACTIONS(3442), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -168948,18 +169819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13316] = 4, + [14502] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3514), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 56, + ACTIONS(3516), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169016,18 +169887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13388] = 4, + [14574] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169084,18 +169955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13460] = 4, + [14646] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169152,18 +170023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13532] = 4, + [14718] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169220,24 +170091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13604] = 4, + [14790] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169288,24 +170159,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13676] = 4, + [14862] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169356,24 +170227,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13748] = 4, + [14934] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169424,18 +170295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13820] = 4, + [15006] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169492,18 +170363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13892] = 4, + [15078] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169560,18 +170431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13964] = 4, + [15150] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3430), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3432), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169628,24 +170499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14036] = 4, + [15222] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169696,24 +170567,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14108] = 4, + [15294] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169764,24 +170635,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14180] = 4, + [15366] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169832,24 +170703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14252] = 4, + [15438] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169900,24 +170771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14324] = 4, + [15510] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 56, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -169968,24 +170839,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14396] = 4, + [15582] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3526), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 4, + ACTIONS(3522), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 56, + ACTIONS(3524), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15658] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3528), 1, aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -170036,24 +170978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14468] = 4, + [15732] = 5, ACTIONS(5), 1, sym_comment, + STATE(1391), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 4, + ACTIONS(3058), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 56, + ACTIONS(3060), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -170096,7 +171040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -170104,24 +171047,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14540] = 4, + [15806] = 5, ACTIONS(5), 1, sym_comment, + STATE(1387), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 4, + ACTIONS(2986), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 56, + ACTIONS(2988), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -170164,7 +171109,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -170172,18 +171116,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14612] = 4, + [15880] = 5, ACTIONS(5), 1, sym_comment, + STATE(1386), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3466), 4, + ACTIONS(2986), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 56, + ACTIONS(2988), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170232,7 +171178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -170240,111 +171185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14684] = 27, + [15954] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3476), 1, - anon_sym_COMMA, - ACTIONS(3484), 1, - anon_sym_when, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3488), 1, - anon_sym_EQ_GT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, - STATE(1182), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3285), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3482), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3492), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3494), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3287), 8, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3498), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [14802] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3518), 1, + ACTIONS(3530), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -170400,21 +171254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14876] = 5, + [16028] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3520), 1, - aux_sym_sigil_token3, + STATE(1383), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3074), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3076), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -170461,7 +171316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -170469,18 +171323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14950] = 4, + [16102] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170537,21 +171391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15022] = 5, + [16174] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3526), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -170606,26 +171459,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15096] = 5, + [16246] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3528), 1, - aux_sym_sigil_token3, + ACTIONS(3536), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3532), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3534), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -170675,21 +171529,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15170] = 5, + [16322] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3530), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -170744,21 +171597,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15244] = 5, + [16394] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3532), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3520), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -170813,20 +171665,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15318] = 4, + [16466] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 5, + ACTIONS(3048), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2629), 55, + ACTIONS(3050), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -170881,19 +171733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15390] = 4, + [16538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 5, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 55, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170942,6 +171793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -170949,20 +171801,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15462] = 4, + [16610] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3539), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3536), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171017,20 +171870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15534] = 4, + [16684] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3541), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3538), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3540), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171085,20 +171939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15606] = 5, + [16758] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3543), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -171154,18 +172008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15680] = 4, + [16832] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, + ACTIONS(3545), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 56, + ACTIONS(3547), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171222,20 +172076,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15752] = 4, + [16904] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3549), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3548), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3550), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171290,21 +172145,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15824] = 5, + [16978] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3552), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3551), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3553), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171359,21 +172213,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15898] = 5, + [17050] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3554), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3555), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3557), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171428,21 +172281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [15972] = 5, + [17122] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3556), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3559), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3561), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171497,18 +172349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16046] = 4, + [17194] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 56, + ACTIONS(3520), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171565,18 +172417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16118] = 4, + [17266] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, + ACTIONS(3563), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 56, + ACTIONS(3565), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171633,18 +172485,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16190] = 4, + [17338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3558), 4, + ACTIONS(3567), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3560), 56, + ACTIONS(3569), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171701,21 +172553,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16262] = 5, + [17410] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3562), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3571), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3573), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171770,26 +172621,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16336] = 5, + [17482] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3564), 1, - aux_sym_sigil_token3, + ACTIONS(3579), 1, + anon_sym_COMMA, + STATE(1325), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3575), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3577), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -171839,25 +172691,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16410] = 4, + [17558] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3579), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3566), 4, + ACTIONS(3581), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3568), 56, + ACTIONS(3583), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -171907,21 +172761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16482] = 5, + [17634] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3570), 1, - aux_sym_sigil_token3, + STATE(1382), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2986), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(2988), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -171968,7 +172823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -171976,26 +172830,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16556] = 5, + [17708] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3572), 1, - aux_sym_sigil_token3, + ACTIONS(3585), 1, + anon_sym_COMMA, + STATE(1327), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3120), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -172045,20 +172900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16630] = 4, + [17784] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3588), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3574), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3576), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172113,21 +172969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16702] = 5, + [17858] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3578), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3092), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3094), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172174,7 +173030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -172182,21 +173037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16776] = 5, + [17930] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3580), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3567), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3569), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172251,21 +173105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16850] = 5, + [18002] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3582), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3567), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3569), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172320,21 +173173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16924] = 5, + [18074] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3584), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3590), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3592), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172389,20 +173241,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [16998] = 5, + [18146] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3594), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -172458,20 +173310,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17072] = 5, + [18220] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3596), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 55, + ACTIONS(3168), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -172527,19 +173379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17146] = 4, + [18294] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 5, + ACTIONS(3598), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 55, + ACTIONS(3600), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -172588,6 +173439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -172595,20 +173447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17218] = 4, + [18366] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3602), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3590), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3592), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172663,18 +173516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17290] = 4, + [18440] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 4, + ACTIONS(3604), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3596), 56, + ACTIONS(3606), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -172731,20 +173584,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17362] = 4, + [18512] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3608), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3598), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3600), 56, + ACTIONS(3168), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -172799,19 +173653,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17434] = 4, + [18586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3602), 4, + ACTIONS(3020), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3604), 56, + ACTIONS(3022), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -172859,7 +173714,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -172867,19 +173721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17506] = 4, + [18658] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3016), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3018), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -172927,7 +173782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -172935,19 +173789,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17578] = 4, + [18730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3012), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3014), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -172995,7 +173850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173003,20 +173857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17650] = 4, + [18802] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 5, + ACTIONS(3054), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 55, + ACTIONS(3056), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173071,19 +173925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17722] = 4, + [18874] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3008), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3010), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173131,7 +173986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173139,20 +173993,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17794] = 4, + [18946] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 5, + ACTIONS(3036), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 55, + ACTIONS(3038), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173207,19 +174061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17866] = 4, + [19018] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3032), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3034), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173267,7 +174122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173275,20 +174129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17938] = 4, + [19090] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 5, + ACTIONS(3024), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 55, + ACTIONS(3026), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173343,19 +174197,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18010] = 4, + [19162] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(2996), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(2998), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173403,7 +174258,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173411,19 +174265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18082] = 4, + [19234] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3000), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3002), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173471,7 +174326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173479,18 +174333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18154] = 4, + [19306] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3086), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3088), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -173539,7 +174393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173547,19 +174400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18226] = 4, + [19377] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__newline_before_do, + ACTIONS(3020), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3022), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -173611,22 +174464,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18298] = 4, + [19448] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3567), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3569), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -173675,7 +174527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173683,18 +174534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18370] = 4, + [19519] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3567), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3569), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -173743,7 +174594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173751,25 +174601,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18442] = 4, + [19590] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3610), 1, + anon_sym_COMMA, + STATE(1422), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3581), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3583), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -173811,7 +174663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173819,18 +174670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18514] = 4, + [19665] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3590), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3592), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -173879,7 +174730,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173887,25 +174737,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18586] = 4, + [19736] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3610), 1, + anon_sym_COMMA, + STATE(1353), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3575), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3577), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -173947,7 +174799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -173955,18 +174806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18658] = 4, + [19811] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3598), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3600), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174015,7 +174866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174023,18 +174873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18730] = 4, + [19882] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3604), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3606), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174083,7 +174933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174091,18 +174940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18802] = 4, + [19953] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3342), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3344), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174151,7 +175000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174159,18 +175007,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18874] = 4, + [20024] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3360), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3362), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174219,7 +175067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174227,18 +175074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [18946] = 4, + [20095] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3563), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3565), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174287,7 +175134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174295,18 +175141,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19018] = 4, + [20166] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3520), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174355,7 +175201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174363,18 +175208,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19090] = 4, + [20237] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 56, + ACTIONS(3520), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174423,7 +175268,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174431,18 +175275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19162] = 4, + [20308] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 56, + ACTIONS(3520), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174491,7 +175335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174499,18 +175342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19234] = 4, + [20379] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 56, + ACTIONS(3520), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174559,7 +175402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, @@ -174567,18 +175409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19306] = 4, + [20450] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3520), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -174634,88 +175476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19377] = 4, + [20521] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3068), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3070), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [19448] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3610), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -174769,24 +175543,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19521] = 4, + [20592] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -174836,24 +175610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19592] = 4, + [20663] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -174903,24 +175677,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19663] = 4, + [20734] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -174970,18 +175744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19734] = 4, + [20805] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 55, + ACTIONS(3520), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -175037,24 +175811,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19805] = 4, + [20876] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175104,24 +175878,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19876] = 4, + [20947] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175171,24 +175945,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [19947] = 4, + [21018] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175238,24 +176012,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20018] = 4, + [21089] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175305,24 +176079,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20089] = 4, + [21160] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175372,24 +176146,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20160] = 4, + [21231] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175439,24 +176213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20231] = 4, + [21302] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175506,24 +176280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20302] = 4, + [21373] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175573,24 +176347,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20373] = 4, + [21444] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175640,24 +176414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20444] = 4, + [21515] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(3518), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175707,24 +176481,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20515] = 4, + [21586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 4, + ACTIONS(3506), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 55, + ACTIONS(3508), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175774,24 +176548,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20586] = 4, + [21657] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, + ACTIONS(3494), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 55, + ACTIONS(3496), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175841,24 +176615,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20657] = 4, + [21728] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 4, + ACTIONS(3498), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 55, + ACTIONS(3500), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175908,24 +176682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20728] = 4, + [21799] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + ACTIONS(3567), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 55, + ACTIONS(3569), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -175975,24 +176749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20799] = 4, + [21870] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 4, + ACTIONS(3498), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 55, + ACTIONS(3500), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176042,24 +176816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20870] = 4, + [21941] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 4, + ACTIONS(3494), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 55, + ACTIONS(3496), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176109,24 +176883,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20941] = 4, + [22012] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3494), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 55, + ACTIONS(3496), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176176,92 +176950,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21012] = 4, + [22083] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(3612), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21083] = 4, - ACTIONS(5), 1, - sym_comment, + STATE(1388), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 4, + ACTIONS(3532), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 55, + ACTIONS(3534), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -176310,24 +177019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21154] = 4, + [22158] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 4, - sym__newline_before_do, + ACTIONS(3070), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 55, + ACTIONS(3072), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176370,31 +177079,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [21225] = 4, + [22229] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 4, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 55, + ACTIONS(3476), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176444,24 +177153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21296] = 4, + [22300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 4, + ACTIONS(3490), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 55, + ACTIONS(3492), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176511,24 +177220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21367] = 4, + [22371] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 4, + ACTIONS(3559), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 55, + ACTIONS(3561), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176578,24 +177287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21438] = 4, + [22442] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + ACTIONS(3555), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 55, + ACTIONS(3557), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176645,24 +177354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21509] = 4, + [22513] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + ACTIONS(3484), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 55, + ACTIONS(3486), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176712,24 +177421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21580] = 4, + [22584] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 4, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 55, + ACTIONS(3476), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176779,24 +177488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21651] = 4, + [22655] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 4, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 55, + ACTIONS(3476), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176846,24 +177555,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21722] = 4, + [22726] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 4, + ACTIONS(3468), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 55, + ACTIONS(3470), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176913,24 +177622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21793] = 4, + [22797] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 4, + ACTIONS(3464), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 55, + ACTIONS(3466), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -176980,85 +177689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21864] = 4, + [22868] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 4, + ACTIONS(3460), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [21935] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2627), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2629), 55, + ACTIONS(3462), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -177107,98 +177749,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [22006] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2631), 4, - sym__not_in, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2633), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22077] = 4, + [22939] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 4, + ACTIONS(3456), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 55, + ACTIONS(3458), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177248,19 +177823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22148] = 4, + [23010] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3084), 3, + ACTIONS(3452), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3086), 56, + ACTIONS(3454), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -177308,31 +177883,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22219] = 4, + [23081] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 4, + ACTIONS(3420), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 55, + ACTIONS(3422), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177382,24 +177957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22290] = 4, + [23152] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 4, + ACTIONS(3416), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 55, + ACTIONS(3418), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177449,24 +178024,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22361] = 4, + [23223] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 4, + ACTIONS(3416), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 55, + ACTIONS(3418), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177516,24 +178091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22432] = 4, + [23294] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 4, + ACTIONS(3416), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 55, + ACTIONS(3418), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177583,24 +178158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22503] = 4, + [23365] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 4, + ACTIONS(3551), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 55, + ACTIONS(3553), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177650,24 +178225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22574] = 4, + [23436] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 4, + ACTIONS(3545), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 55, + ACTIONS(3547), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177717,24 +178292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22645] = 4, + [23507] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 4, + ACTIONS(3074), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 55, + ACTIONS(3076), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177784,24 +178359,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22716] = 4, + [23578] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 4, - sym__newline_before_do, + ACTIONS(3082), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 55, + ACTIONS(3084), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177844,32 +178419,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [22787] = 4, + [23649] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3615), 1, + anon_sym_COMMA, + STATE(1388), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 4, + ACTIONS(3522), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 55, + ACTIONS(3524), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -177918,24 +178495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22858] = 4, + [23724] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 4, + ACTIONS(3448), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 55, + ACTIONS(3450), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -177985,24 +178562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22929] = 4, + [23795] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 4, + ACTIONS(3514), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 55, + ACTIONS(3516), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -178052,24 +178629,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23000] = 4, + [23866] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 4, + ACTIONS(3110), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 55, + ACTIONS(3112), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -178119,24 +178696,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23071] = 4, + [23937] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 4, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3460), 55, + ACTIONS(3476), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -178179,31 +178758,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23142] = 4, + [24012] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 4, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3464), 55, + ACTIONS(3418), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -178246,27 +178827,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23213] = 5, + [24087] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3612), 1, - aux_sym_sigil_token3, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3430), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -178314,28 +178896,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23286] = 5, + [24162] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3614), 1, - aux_sym_sigil_token3, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(3086), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3088), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -178382,26 +178964,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23359] = 4, + [24235] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1214), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 3, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 56, + ACTIONS(2982), 54, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -178449,28 +179034,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23430] = 5, + [24310] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3616), 1, - aux_sym_sigil_token3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1211), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2982), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -178520,25 +179106,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23503] = 5, + [24385] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3618), 1, - aux_sym_sigil_token3, + ACTIONS(3028), 1, + anon_sym_LPAREN, + STATE(1208), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2982), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -178588,25 +179175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23576] = 5, + [24460] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3620), 1, - aux_sym_sigil_token3, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(3096), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3098), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -178653,33 +179239,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23649] = 5, + [24533] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3622), 1, - aux_sym_sigil_token3, + ACTIONS(3617), 1, + anon_sym_COMMA, + STATE(1422), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3120), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -178728,48 +179315,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23722] = 5, + [24608] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3624), 1, - aux_sym_sigil_token3, + ACTIONS(3622), 1, + anon_sym_PIPE, + ACTIONS(3626), 1, + anon_sym_COMMA, + ACTIONS(3634), 1, + anon_sym_when, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, + STATE(1410), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3272), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3632), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3274), 7, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -178779,65 +179405,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [24725] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_PIPE, + ACTIONS(3290), 1, + anon_sym_when, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, anon_sym_in, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3288), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3664), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3300), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3666), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23795] = 5, + [24838] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3626), 1, - aux_sym_sigil_token3, + ACTIONS(3278), 1, + anon_sym_PIPE, + ACTIONS(3290), 1, + anon_sym_when, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3280), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3286), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3288), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3668), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3300), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -178847,38 +179571,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3670), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24951] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_PIPE, + ACTIONS(3290), 1, + anon_sym_when, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, anon_sym_in, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3288), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3532), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3300), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3534), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [23868] = 5, + [25064] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3272), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3274), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -178932,21 +179736,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23941] = 5, + [25135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3630), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(2635), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2637), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -178993,28 +179796,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24014] = 5, + [25206] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3632), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(2631), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2633), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179061,26 +179863,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24087] = 4, + [25277] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, + ACTIONS(3054), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 55, + ACTIONS(3056), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -179135,21 +179937,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24158] = 5, + [25348] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3634), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(2623), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2625), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179196,25 +179997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24231] = 4, + [25419] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, + ACTIONS(3428), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 55, + ACTIONS(3430), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -179263,28 +180064,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24302] = 5, + [25490] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3636), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3428), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3430), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179338,21 +180138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24375] = 5, + [25561] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3638), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3428), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3430), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179406,21 +180205,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24448] = 5, + [25632] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3640), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3424), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3426), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179474,21 +180272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24521] = 5, + [25703] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3642), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, + ACTIONS(2627), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2629), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179535,32 +180332,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [24594] = 5, + [25774] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3644), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2655), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(2657), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -179610,21 +180406,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24667] = 5, + [25845] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3646), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3412), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3414), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179678,21 +180473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24740] = 5, + [25916] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3648), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3408), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3410), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -179746,24 +180540,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24813] = 4, + [25987] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 4, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3167), 55, + ACTIONS(2653), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -179813,24 +180607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24884] = 4, + [26058] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 4, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 55, + ACTIONS(2629), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -179880,24 +180674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [24955] = 4, + [26129] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3255), 4, + ACTIONS(2623), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3257), 55, + ACTIONS(2625), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -179947,24 +180741,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25026] = 4, + [26200] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3251), 4, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 55, + ACTIONS(2633), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180014,108 +180808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25097] = 27, + [26271] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3656), 1, - anon_sym_COMMA, - ACTIONS(3664), 1, - anon_sym_when, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - STATE(1501), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3672), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3674), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3287), 7, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [25214] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(3478), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 55, + ACTIONS(3480), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -180171,18 +180875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25285] = 4, + [26342] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3114), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 55, + ACTIONS(3116), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -180238,18 +180942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25356] = 4, + [26413] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3114), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 55, + ACTIONS(3116), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -180305,24 +181009,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25427] = 4, + [26484] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 55, + ACTIONS(2637), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180372,24 +181076,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25498] = 4, + [26555] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 4, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 55, + ACTIONS(3442), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180439,18 +181143,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25569] = 4, + [26626] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 4, + ACTIONS(2980), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 55, + ACTIONS(2982), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -180506,24 +181210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25640] = 4, + [26697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, + ACTIONS(3444), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 55, + ACTIONS(3446), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180573,24 +181277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25711] = 4, + [26768] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, + ACTIONS(3436), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 55, + ACTIONS(3438), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180640,24 +181344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25782] = 4, + [26839] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(3150), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 55, + ACTIONS(3152), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180707,18 +181411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25853] = 4, + [26910] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, + ACTIONS(3150), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 55, + ACTIONS(3152), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -180774,24 +181478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25924] = 4, + [26981] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3108), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180841,24 +181545,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [25995] = 4, + [27052] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + ACTIONS(3150), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 55, + ACTIONS(3152), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180908,24 +181612,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26066] = 4, + [27123] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, + ACTIONS(3102), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 55, + ACTIONS(3104), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -180975,18 +181679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26137] = 4, + [27194] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3548), 4, + ACTIONS(3102), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3550), 55, + ACTIONS(3104), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181042,19 +181746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26208] = 4, + [27265] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 4, - sym__newline_before_do, + ACTIONS(3036), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3167), 55, + ACTIONS(3038), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -181102,31 +181806,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26279] = 4, + [27336] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3263), 4, + ACTIONS(3368), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3265), 55, + ACTIONS(3370), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -181176,18 +181880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26350] = 4, + [27407] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 4, + ACTIONS(3096), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3179), 55, + ACTIONS(3098), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181243,19 +181947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26421] = 4, + [27478] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 4, - sym__newline_before_do, + ACTIONS(3032), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 55, + ACTIONS(3034), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -181303,31 +182007,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26492] = 4, + [27549] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 4, + ACTIONS(3364), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3195), 55, + ACTIONS(3366), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -181377,18 +182081,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26563] = 4, + [27620] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(3096), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3098), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181444,18 +182148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26634] = 4, + [27691] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(3086), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3088), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181511,19 +182215,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26705] = 4, + [27762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, - sym__newline_before_do, + ACTIONS(3024), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3026), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -181571,25 +182275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26776] = 4, + [27833] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 4, - sym__newline_before_do, + ACTIONS(2651), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3279), 55, + ACTIONS(2653), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181638,25 +182342,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26847] = 4, + [27904] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, - sym__newline_before_do, + ACTIONS(2655), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3052), 55, + ACTIONS(2657), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181705,25 +182409,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [26918] = 4, + [27975] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3212), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3214), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181779,18 +182483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [26989] = 4, + [28046] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3216), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3218), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -181846,24 +182550,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27060] = 4, + [28117] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, + ACTIONS(3220), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 55, + ACTIONS(3222), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -181913,24 +182617,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27131] = 4, + [28188] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, - sym__newline_before_do, + ACTIONS(2996), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 55, + ACTIONS(2998), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -181973,26 +182677,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27202] = 4, + [28259] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, - sym__newline_before_do, + ACTIONS(3000), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3002), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -182040,26 +182744,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27273] = 4, + [28330] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, - sym__newline_before_do, + ACTIONS(3004), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 55, + ACTIONS(3006), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -182107,31 +182811,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [27344] = 4, + [28401] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 4, + ACTIONS(3404), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3303), 55, + ACTIONS(3406), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182181,18 +182885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27415] = 4, + [28472] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + ACTIONS(3400), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 55, + ACTIONS(3402), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -182248,24 +182952,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27486] = 4, + [28543] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3305), 4, + ACTIONS(3396), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3307), 55, + ACTIONS(3398), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182315,24 +183019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27557] = 4, + [28614] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3309), 4, + ACTIONS(3392), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3311), 55, + ACTIONS(3394), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182382,24 +183086,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27628] = 4, + [28685] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3313), 4, + ACTIONS(3388), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3315), 55, + ACTIONS(3390), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182449,24 +183153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27699] = 4, + [28756] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3333), 4, + ACTIONS(3384), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3335), 55, + ACTIONS(3386), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182516,24 +183220,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27770] = 4, + [28827] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3380), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 55, + ACTIONS(3382), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182583,24 +183287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27841] = 4, + [28898] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3376), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 55, + ACTIONS(3378), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182650,24 +183354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27912] = 4, + [28969] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3391), 4, + ACTIONS(3372), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3393), 55, + ACTIONS(3374), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182717,24 +183421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27983] = 4, + [29040] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3406), 4, + ACTIONS(3356), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3408), 55, + ACTIONS(3358), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182784,24 +183488,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28054] = 4, + [29111] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3346), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 55, + ACTIONS(3348), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182851,24 +183555,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28125] = 4, + [29182] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3208), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 55, + ACTIONS(3210), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -182918,18 +183622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28196] = 4, + [29253] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 55, + ACTIONS(3120), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -182985,19 +183689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28267] = 4, + [29324] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 4, - sym__newline_before_do, + ACTIONS(3008), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 55, + ACTIONS(3010), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -183045,31 +183749,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28338] = 4, + [29395] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 4, + ACTIONS(3334), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 55, + ACTIONS(3336), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183119,24 +183823,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28409] = 4, + [29466] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3328), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 55, + ACTIONS(3330), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183186,24 +183890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28480] = 4, + [29537] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3430), 4, + ACTIONS(3324), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3432), 55, + ACTIONS(3326), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183253,24 +183957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28551] = 4, + [29608] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3320), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3322), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183320,24 +184024,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28622] = 4, + [29679] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3268), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3270), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183387,24 +184091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28693] = 4, + [29750] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3264), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3266), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183454,26 +184158,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28764] = 6, + [29821] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3260), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 54, + anon_sym_LBRACK2, + ACTIONS(3262), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183516,33 +184218,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28839] = 6, + [29892] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3256), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 54, + anon_sym_LBRACK2, + ACTIONS(3258), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183585,33 +184285,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28914] = 6, + [29963] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3252), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 54, + anon_sym_LBRACK2, + ACTIONS(3254), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183654,31 +184352,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [28989] = 4, + [30034] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3248), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3250), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183728,24 +184426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29060] = 4, + [30105] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3244), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3246), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183795,24 +184493,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29131] = 4, + [30176] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3240), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3242), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183862,24 +184560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29202] = 4, + [30247] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3236), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3238), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183929,24 +184627,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29273] = 4, + [30318] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3232), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3234), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -183996,24 +184694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29344] = 4, + [30389] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3228), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3230), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -184063,18 +184761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29415] = 4, + [30460] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3364), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3366), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -184130,18 +184828,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29486] = 4, + [30531] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3368), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3370), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -184197,18 +184895,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29557] = 4, + [30602] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3108), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -184264,18 +184962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29628] = 4, + [30673] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3436), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3438), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -184331,18 +185029,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29699] = 4, + [30744] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3444), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3446), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -184398,24 +185096,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29770] = 4, + [30815] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 4, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 55, + ACTIONS(3442), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -184465,24 +185163,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29841] = 4, + [30886] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, - sym__newline_before_do, + ACTIONS(3016), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 55, + ACTIONS(3018), 56, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -184525,25 +185223,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [29912] = 4, + [30957] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, + ACTIONS(3224), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 55, + ACTIONS(3226), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -184599,28 +185297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29983] = 4, + [31028] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 55, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -184650,44 +185365,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30054] = 4, + [31115] = 15, ACTIONS(5), 1, sym_comment, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 55, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 31, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -184707,6 +185443,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31208] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_PIPE, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3300), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -184716,41 +185521,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30125] = 4, + [31315] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 55, + ACTIONS(3476), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -184792,38 +185598,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30196] = 6, + [31392] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3694), 1, - anon_sym_COMMA, - STATE(1502), 1, - aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 53, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 43, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -184855,41 +185671,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30271] = 6, + [31475] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3696), 1, - anon_sym_COMMA, - STATE(1502), 1, - aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 4, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3160), 53, + ACTIONS(3476), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -184929,56 +185742,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30346] = 4, + [31554] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(3278), 1, + anon_sym_PIPE, + ACTIONS(3290), 1, + anon_sym_when, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3280), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3286), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3300), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -184988,92 +185824,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31665] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_PIPE, + ACTIONS(3290), 1, + anon_sym_when, + ACTIONS(3292), 1, + anon_sym_COLON_COLON, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, anon_sym_in, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3300), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30417] = 25, + [31776] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3278), 1, anon_sym_PIPE, - ACTIONS(3484), 1, - anon_sym_when, - ACTIONS(3486), 1, + ACTIONS(3292), 1, anon_sym_COLON_COLON, - ACTIONS(3488), 1, + ACTIONS(3294), 1, anon_sym_EQ_GT, - ACTIONS(3490), 1, + ACTIONS(3296), 1, anon_sym_EQ, - ACTIONS(3500), 1, + ACTIONS(3306), 1, anon_sym_in, - ACTIONS(3502), 1, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3312), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3314), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3512), 1, + ACTIONS(3318), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3474), 2, + ACTIONS(3280), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3286), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3482), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3699), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3492), 3, + ACTIONS(3298), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3494), 3, + ACTIONS(3300), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3470), 4, + ACTIONS(3276), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3496), 5, + ACTIONS(3302), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, + ACTIONS(3284), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3498), 9, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -185083,9 +185996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3701), 9, + ACTIONS(3476), 12, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, @@ -185093,47 +186009,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30530] = 4, + [31885] = 21, ACTIONS(5), 1, sym_comment, + ACTIONS(3294), 1, + anon_sym_EQ_GT, + ACTIONS(3296), 1, + anon_sym_EQ, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 55, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3298), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3300), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3276), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 14, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31990] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3296), 1, anon_sym_EQ, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3298), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3300), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -185143,92 +186160,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32093] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3306), 1, anon_sym_in, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3300), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3302), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30601] = 25, + [32192] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3484), 1, - anon_sym_when, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3488), 1, - anon_sym_EQ_GT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, + ACTIONS(3306), 1, anon_sym_in, - ACTIONS(3502), 1, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3312), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3314), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3512), 1, + ACTIONS(3318), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3474), 2, + ACTIONS(3280), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3286), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3482), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3703), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3492), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3494), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3470), 4, + ACTIONS(3276), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3496), 5, + ACTIONS(3302), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, + ACTIONS(3284), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3498), 9, + ACTIONS(3304), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -185238,9 +186314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3705), 9, + ACTIONS(3476), 22, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, @@ -185248,77 +186337,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30714] = 25, + [32289] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3306), 1, + anon_sym_in, + ACTIONS(3308), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3318), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3276), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3304), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 27, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3484), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3486), 1, anon_sym_COLON_COLON, - ACTIONS(3488), 1, anon_sym_EQ_GT, - ACTIONS(3490), 1, anon_sym_EQ, - ACTIONS(3500), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32384] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3306), 1, anon_sym_in, - ACTIONS(3502), 1, + ACTIONS(3308), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3310), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3312), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3314), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3512), 1, + ACTIONS(3318), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, + ACTIONS(3280), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3286), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3482), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3492), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3494), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3496), 5, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32475] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3284), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32560] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3310), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3312), 1, + anon_sym_STAR_STAR, + ACTIONS(3314), 1, + anon_sym_DOT, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3286), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3284), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3160), 9, + ACTIONS(3476), 42, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, @@ -185326,7 +186641,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3498), 9, + [32645] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3672), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -185336,20 +186692,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [30827] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32718] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3674), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -185403,27 +186777,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30898] = 6, + [32791] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3707), 1, - anon_sym_COMMA, - STATE(1510), 1, - aux_sym_keywords_repeat1, + ACTIONS(3676), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 53, + ACTIONS(3168), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -185472,27 +186845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30973] = 6, + [32864] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3707), 1, - anon_sym_COMMA, - STATE(1550), 1, - aux_sym_keywords_repeat1, + ACTIONS(3678), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 53, + ACTIONS(3168), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -185541,20 +186913,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31048] = 4, + [32937] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3680), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -185608,20 +186981,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31119] = 4, + [33010] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3682), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -185675,227 +187049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31190] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1204), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2968), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2970), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31265] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1206), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2968), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2970), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31340] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1207), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2968), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2970), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [31415] = 4, + [33083] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3684), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3602), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3604), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -185949,20 +187117,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31486] = 4, + [33156] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3686), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3598), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3600), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186016,24 +187185,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31557] = 4, + [33229] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 4, + ACTIONS(3432), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3596), 55, + ACTIONS(3434), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -186083,19 +187252,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31628] = 4, + [33300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3590), 4, - sym__newline_before_do, + ACTIONS(3012), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3592), 55, + ACTIONS(3014), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -186143,31 +187312,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [31699] = 4, + [33371] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 4, + ACTIONS(3204), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 55, + ACTIONS(3206), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -186217,20 +187386,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31770] = 4, + [33442] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3688), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3574), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3576), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186284,20 +187454,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31841] = 4, + [33515] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3690), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3566), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3568), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186351,20 +187522,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31912] = 4, + [33588] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3692), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3558), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3560), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186418,20 +187590,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31983] = 4, + [33661] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3694), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186485,20 +187658,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32054] = 4, + [33734] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3696), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186552,20 +187726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32125] = 4, + [33807] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3698), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3042), 3, + ACTIONS(3166), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 56, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186612,27 +187787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32196] = 4, + [33880] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3700), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186686,20 +187862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32267] = 4, + [33953] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3702), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3538), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3540), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186753,20 +187930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32338] = 4, + [34026] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3704), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3536), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186820,20 +187998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32409] = 4, + [34099] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3706), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186887,20 +188066,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32480] = 4, + [34172] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3708), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3466), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -186954,20 +188134,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32551] = 4, + [34245] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3710), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 3, + ACTIONS(3166), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 56, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187014,26 +188195,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32622] = 4, + [34318] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 3, + ACTIONS(3571), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 56, + ACTIONS(3573), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -187081,31 +188262,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32693] = 4, + [34389] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 3, + ACTIONS(3122), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3096), 56, + ACTIONS(3124), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187148,31 +188329,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32764] = 4, + [34460] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3126), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 55, + ACTIONS(3128), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187215,31 +188396,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32835] = 4, + [34531] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 4, + ACTIONS(3130), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 55, + ACTIONS(3132), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187289,25 +188470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [32906] = 5, + [34602] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 3, + ACTIONS(3134), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 55, + ACTIONS(3136), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187350,31 +188530,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [32979] = 4, + [34673] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3138), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 55, + ACTIONS(3140), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187417,31 +188597,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33050] = 4, + [34744] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(3142), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 55, + ACTIONS(3144), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187491,24 +188671,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33121] = 4, + [34815] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + ACTIONS(3146), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 55, + ACTIONS(3148), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187558,25 +188738,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33192] = 5, + [34886] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 3, + ACTIONS(3154), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 55, + ACTIONS(3156), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187619,50 +188798,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33265] = 11, + [34957] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3158), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 42, + anon_sym_LBRACK2, + ACTIONS(3160), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -187693,50 +188857,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33350] = 11, + [35028] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3162), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 42, + anon_sym_LBRACK2, + ACTIONS(3164), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -187767,31 +188924,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33435] = 4, + [35099] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, + ACTIONS(3172), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 55, + ACTIONS(3174), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187841,24 +189006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33506] = 4, + [35170] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, + ACTIONS(3176), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 55, + ACTIONS(3178), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187908,24 +189073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33577] = 4, + [35241] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3180), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 55, + ACTIONS(3182), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -187975,48 +189140,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33648] = 14, + [35312] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3184), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 40, + anon_sym_LBRACK2, + ACTIONS(3186), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -188045,68 +189190,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33739] = 16, + [35383] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3188), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3470), 4, + anon_sym_LBRACK2, + ACTIONS(3190), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 27, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -188124,61 +189246,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [33834] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3496), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -188188,50 +189257,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [33931] = 6, + [35454] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3709), 1, - anon_sym_COMMA, - STATE(1550), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3192), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 53, + ACTIONS(3194), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -188280,71 +189341,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34006] = 18, + [35525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3196), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3494), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3470), 4, + anon_sym_LBRACK2, + ACTIONS(3198), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 19, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -188354,71 +189372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34105] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3492), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3494), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -188428,170 +189391,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34208] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3488), 1, - anon_sym_EQ_GT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, anon_sym_in, - ACTIONS(3502), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3492), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3494), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3498), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34313] = 23, + [35596] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3488), 1, - anon_sym_EQ_GT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3200), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3474), 2, + anon_sym_LBRACK2, + ACTIONS(3202), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3492), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3494), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -188601,172 +189458,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34422] = 24, + [35667] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3484), 1, - anon_sym_when, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3488), 1, - anon_sym_EQ_GT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3492), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3494), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3498), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, + ACTIONS(3476), 41, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34533] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3484), 1, anon_sym_when, - ACTIONS(3486), 1, anon_sym_COLON_COLON, - ACTIONS(3488), 1, anon_sym_EQ_GT, - ACTIONS(3490), 1, anon_sym_EQ, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3492), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3494), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -188776,42 +189540,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34644] = 8, + [35751] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3474), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3490), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 51, + anon_sym_LBRACK2, + ACTIONS(3492), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -188852,43 +189605,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34723] = 10, + [35821] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3506), 1, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3474), 2, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3478), 6, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 43, + ACTIONS(3476), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -188924,32 +189681,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34806] = 7, + [35905] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3506), 1, - anon_sym_STAR_STAR, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3712), 1, + sym__newline_before_do, + STATE(2782), 1, + sym_do_block, + ACTIONS(2968), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 53, - anon_sym_SEMI, + ACTIONS(2970), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -188995,75 +189754,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [34883] = 22, + anon_sym_STAR_STAR, + anon_sym_DOT, + [35981] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_PIPE, - ACTIONS(3488), 1, - anon_sym_EQ_GT, - ACTIONS(3490), 1, - anon_sym_EQ, - ACTIONS(3500), 1, - anon_sym_in, - ACTIONS(3502), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3512), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3474), 2, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3492), 3, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3494), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3470), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3496), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3498), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -189073,57 +189823,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, + anon_sym_in, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [34990] = 15, + [36067] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3500), 1, + ACTIONS(3650), 1, anon_sym_in, - ACTIONS(3502), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3512), 1, + ACTIONS(3662), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3474), 2, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3478), 6, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3498), 9, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -189133,7 +189876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 31, + ACTIONS(3476), 30, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -189158,71 +189901,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35083] = 12, + [36159] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3622), 1, + anon_sym_PIPE, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3504), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3506), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3508), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3510), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3480), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3478), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 41, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -189232,28 +189978,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_DASH_GT, + ACTIONS(3476), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35170] = 4, + [36265] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 55, + ACTIONS(3476), 52, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -189299,28 +190054,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35241] = 4, + [36341] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(2082), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3074), 56, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2982), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -189367,27 +190126,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35312] = 4, + anon_sym_do, + [36415] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(2084), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3100), 56, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2982), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -189434,27 +190194,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35383] = 4, + anon_sym_do, + [36489] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(2085), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3078), 56, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2982), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -189501,35 +190262,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35454] = 4, + anon_sym_do, + [36563] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 3, + ACTIONS(3624), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3630), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 56, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 42, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -189561,38 +190330,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35525] = 4, + [36645] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 3, + ACTIONS(3624), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 3, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3024), 56, + ACTIONS(3476), 50, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -189633,123 +190400,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35596] = 4, + [36723] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3038), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3040), 56, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3622), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3634), 1, anon_sym_when, + ACTIONS(3636), 1, anon_sym_COLON_COLON, + ACTIONS(3638), 1, anon_sym_EQ_GT, + ACTIONS(3640), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3650), 1, anon_sym_in, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3658), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35667] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3712), 1, - aux_sym_sigil_token3, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -189759,131 +190481,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35739] = 4, + [36833] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3373), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3622), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3634), 1, anon_sym_when, + ACTIONS(3636), 1, anon_sym_COLON_COLON, + ACTIONS(3638), 1, anon_sym_EQ_GT, + ACTIONS(3640), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3650), 1, anon_sym_in, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3658), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35809] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3714), 1, - anon_sym_COMMA, - STATE(1572), 1, - aux_sym_keywords_repeat1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, - sym__not_in, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -189893,63 +190567,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35883] = 4, + [36943] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(3622), 1, + anon_sym_PIPE, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -189959,43 +190651,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(3476), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [35953] = 6, + [37051] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3717), 1, - anon_sym_COMMA, - STATE(1572), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 3, + ACTIONS(3096), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 53, + ACTIONS(3098), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -190044,26 +190729,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36027] = 6, + [37121] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3717), 1, - anon_sym_COMMA, - STATE(1574), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 3, + ACTIONS(3086), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 53, + ACTIONS(3088), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -190112,48 +190795,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [36101] = 5, + [37191] = 21, ACTIONS(5), 1, sym_comment, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3719), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3263), 3, - sym__not_in, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3265), 53, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -190163,100 +190864,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [36173] = 25, + [37295] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3664), 1, - anon_sym_when, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, + ACTIONS(3640), 1, anon_sym_EQ, - ACTIONS(3680), 1, + ACTIONS(3650), 1, anon_sym_in, - ACTIONS(3682), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3688), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3692), 1, + ACTIONS(3662), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3660), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3703), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3672), 3, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3674), 3, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3650), 4, + ACTIONS(3620), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3676), 5, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3705), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3678), 9, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -190266,88 +190945,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [36285] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3721), 1, - aux_sym__terminator_token1, - ACTIONS(3724), 1, + ACTIONS(3476), 14, anon_sym_SEMI, - ACTIONS(3729), 1, anon_sym_PIPE, - ACTIONS(3739), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3741), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, - anon_sym_EQ, - ACTIONS(3755), 1, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37397] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3662), 1, sym__not_in, - STATE(263), 1, - sym__terminator, - STATE(1022), 1, - aux_sym__terminator_repeat1, - STATE(4769), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3737), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3747), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3620), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1295), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3751), 5, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -190357,92 +191021,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [36405] = 33, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3771), 1, + ACTIONS(3476), 18, anon_sym_SEMI, - ACTIONS(3773), 1, - anon_sym_RPAREN, - ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3781), 1, anon_sym_COMMA, - ACTIONS(3789), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3792), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, anon_sym_EQ, - ACTIONS(3806), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37495] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, sym__not_in, - STATE(393), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5784), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - STATE(6654), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(3620), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -190452,84 +191097,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [36533] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3652), 1, + ACTIONS(3476), 21, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3664), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3666), 1, anon_sym_COLON_COLON, - ACTIONS(3668), 1, anon_sym_EQ_GT, - ACTIONS(3670), 1, anon_sym_EQ, - ACTIONS(3680), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37591] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 1, anon_sym_in, - ACTIONS(3682), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3688), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3692), 1, + ACTIONS(3662), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3660), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3699), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3672), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3674), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3650), 4, + ACTIONS(3620), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, + ACTIONS(3628), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3701), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3678), 9, + ACTIONS(3648), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -190539,36 +191170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [36645] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3818), 1, - sym__newline_before_do, - STATE(2777), 1, - sym_do_block, - ACTIONS(2974), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2976), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3476), 26, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -190586,106 +191191,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [36721] = 25, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37685] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3664), 1, - anon_sym_when, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, + ACTIONS(3650), 1, anon_sym_in, - ACTIONS(3682), 1, + ACTIONS(3652), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, + ACTIONS(3654), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, + ACTIONS(3656), 1, anon_sym_STAR_STAR, - ACTIONS(3688), 1, + ACTIONS(3658), 1, anon_sym_DOT, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3692), 1, + ACTIONS(3662), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3654), 2, + ACTIONS(3624), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3660), 2, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3662), 2, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3672), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3674), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3160), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3678), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -190695,32 +191267,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [36833] = 7, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3820), 1, - sym__newline_before_do, - STATE(2776), 1, - sym_do_block, - ACTIONS(2980), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3248), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2982), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3250), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -190763,24 +191332,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [36909] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37845] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(2052), 1, + sym_do_block, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2968), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3223), 55, - anon_sym_SEMI, + ACTIONS(2970), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -190823,30 +191404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [36979] = 4, + anon_sym_do, + [37917] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(2051), 1, + sym_do_block, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3219), 55, - anon_sym_SEMI, + ACTIONS(2974), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -190889,30 +191471,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37049] = 4, + anon_sym_do, + [37989] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, + ACTIONS(3118), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 55, + ACTIONS(3120), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -190962,89 +191539,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37119] = 4, + [38059] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 3, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3716), 1, + sym__newline_before_do, + STATE(2788), 1, + sym_do_block, + ACTIONS(2972), 2, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 55, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37189] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 55, - anon_sym_SEMI, + ACTIONS(2974), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -191087,119 +191607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37259] = 33, + [38135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3781), 1, - anon_sym_COMMA, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3822), 1, - anon_sym_SEMI, - ACTIONS(3824), 1, - anon_sym_RPAREN, - STATE(443), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5856), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - STATE(6654), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [37387] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3201), 3, + ACTIONS(3404), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 55, + ACTIONS(3406), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191255,17 +191674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37457] = 4, + [38205] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 3, + ACTIONS(3400), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 55, + ACTIONS(3402), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191321,17 +191740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37527] = 4, + [38275] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 3, + ACTIONS(3396), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 55, + ACTIONS(3398), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191387,17 +191806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37597] = 4, + [38345] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 3, + ACTIONS(3392), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 55, + ACTIONS(3394), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191453,17 +191872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37667] = 4, + [38415] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 3, + ACTIONS(3388), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 55, + ACTIONS(3390), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191519,90 +191938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37737] = 6, + [38485] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3373), 53, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3718), 2, anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37811] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 3, - sym__newline_before_do, + anon_sym_DASH_GT, + ACTIONS(3420), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 53, + anon_sym_LBRACK2, + ACTIONS(3422), 53, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -191613,7 +191964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -191649,23 +191999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37885] = 4, + [38557] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 3, + ACTIONS(3380), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 55, + ACTIONS(3382), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191721,26 +192071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [37955] = 6, + [38627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, - sym__newline_before_do, + ACTIONS(3376), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 53, + anon_sym_LBRACK2, + ACTIONS(3378), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -191783,23 +192130,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [38029] = 4, + [38697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3372), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 55, + ACTIONS(3374), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191855,17 +192203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38099] = 4, + [38767] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 3, + ACTIONS(3356), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 55, + ACTIONS(3358), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191921,17 +192269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38169] = 4, + [38837] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 3, + ACTIONS(3346), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 55, + ACTIONS(3348), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -191987,17 +192335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38239] = 4, + [38907] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 3, + ACTIONS(3208), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 55, + ACTIONS(3210), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192053,17 +192401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38309] = 4, + [38977] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, + ACTIONS(3334), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 55, + ACTIONS(3336), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192119,23 +192467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38379] = 4, + [39047] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 3, + ACTIONS(3545), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 55, + ACTIONS(3547), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192185,17 +192533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38449] = 4, + [39117] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 3, + ACTIONS(3328), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 55, + ACTIONS(3330), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192251,17 +192599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38519] = 4, + [39187] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 3, + ACTIONS(3324), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 55, + ACTIONS(3326), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192317,23 +192665,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38589] = 4, + [39257] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 3, + ACTIONS(3551), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(3553), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192383,23 +192731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38659] = 4, + [39327] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 3, + ACTIONS(3555), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 55, + ACTIONS(3557), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192449,17 +192797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38729] = 4, + [39397] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 3, + ACTIONS(3320), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 55, + ACTIONS(3322), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192515,17 +192863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38799] = 4, + [39467] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 3, + ACTIONS(3268), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 55, + ACTIONS(3270), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192581,30 +192929,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [38869] = 6, + [39537] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(2022), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, - sym__newline_before_do, + ACTIONS(3264), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3266), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192647,32 +192988,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [38943] = 6, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39607] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(2023), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, - sym__newline_before_do, + ACTIONS(3260), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3262), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192715,27 +193054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [39017] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39677] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 3, + ACTIONS(3256), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 54, + ACTIONS(3258), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192778,31 +193120,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39089] = 5, + [39747] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 3, + ACTIONS(3252), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 54, + ACTIONS(3254), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192845,36 +193186,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39161] = 6, + [39817] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(2131), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, - sym__newline_before_do, + ACTIONS(3196), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3198), 55, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -192917,19 +193252,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [39235] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39887] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 3, + ACTIONS(3244), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 55, + ACTIONS(3246), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -192985,24 +193325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39305] = 4, + [39957] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3068), 3, + ACTIONS(3240), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3070), 55, + ACTIONS(3242), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193045,23 +193384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39375] = 4, + [40027] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 3, + ACTIONS(3236), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 55, + ACTIONS(3238), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -193117,17 +193457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39445] = 4, + [40097] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 3, + ACTIONS(3232), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 55, + ACTIONS(3234), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -193183,88 +193523,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39515] = 29, + [40167] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3228), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3230), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3739), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3741), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, anon_sym_EQ, - ACTIONS(3755), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3757), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3767), 1, - sym__not_in, - ACTIONS(3828), 1, - aux_sym__terminator_token1, - ACTIONS(3831), 1, - anon_sym_SEMI, - STATE(258), 1, - sym__terminator, - STATE(1022), 1, - aux_sym__terminator_repeat1, - STATE(4772), 1, - aux_sym_source_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40237] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3224), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3226), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3737), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3747), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1303), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3751), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3753), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -193274,23 +193638,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [39635] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40307] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 3, + ACTIONS(3559), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 55, + ACTIONS(3561), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193340,17 +193721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39705] = 4, + [40377] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3263), 3, + ACTIONS(3567), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3265), 55, + ACTIONS(3569), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -193406,19 +193787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39775] = 4, + [40447] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3084), 3, + ACTIONS(3571), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3086), 55, + ACTIONS(3573), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -193466,30 +193846,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39845] = 4, + [40517] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3042), 3, + ACTIONS(3432), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 55, + ACTIONS(3434), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193532,29 +193912,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [39915] = 4, + [40587] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 3, + ACTIONS(3567), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 55, + ACTIONS(3569), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193604,23 +193985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [39985] = 4, + [40657] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 3, + ACTIONS(3567), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 55, + ACTIONS(3569), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193670,23 +194051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40055] = 4, + [40727] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 3, + ACTIONS(3590), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 55, + ACTIONS(3592), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193736,17 +194117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40125] = 4, + [40797] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 3, + ACTIONS(3204), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 55, + ACTIONS(3206), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -193802,17 +194183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40195] = 4, + [40867] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 3, + ACTIONS(3200), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 55, + ACTIONS(3202), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -193868,23 +194249,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40265] = 4, + [40937] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 3, + ACTIONS(3598), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 55, + ACTIONS(3600), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -193934,19 +194315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40335] = 4, + [41007] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 3, + ACTIONS(3604), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 55, + ACTIONS(3606), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -193994,26 +194374,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40405] = 5, + [41077] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3834), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3342), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3344), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -194067,20 +194447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40477] = 5, + [41147] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3836), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3360), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3362), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -194134,20 +194513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40549] = 5, + [41217] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3838), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3563), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3565), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -194201,20 +194579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40621] = 5, + [41287] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -194268,20 +194645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40693] = 5, + [41357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3842), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -194335,19 +194711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40765] = 4, + [41427] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 55, + ACTIONS(3520), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -194395,29 +194770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [40835] = 4, + [41497] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194467,23 +194843,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40905] = 4, + [41567] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194533,23 +194909,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [40975] = 4, + [41637] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194599,23 +194975,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41045] = 4, + [41707] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194665,23 +195041,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41115] = 4, + [41777] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194731,23 +195107,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41185] = 4, + [41847] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194797,23 +195173,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41255] = 4, + [41917] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194863,24 +195239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41325] = 5, + [41987] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3844), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3364), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3366), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194930,24 +195305,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41397] = 4, + [42057] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 3, + ACTIONS(3368), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 55, + ACTIONS(3370), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -194990,30 +195364,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [41467] = 5, + [42127] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3846), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3108), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195063,24 +195437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41539] = 5, + [42197] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3436), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3438), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195130,23 +195503,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41611] = 4, + [42267] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195196,20 +195569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41681] = 5, + [42337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3850), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195263,20 +195635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41753] = 5, + [42407] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3852), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195330,20 +195701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41825] = 5, + [42477] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3854), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195397,20 +195767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41897] = 5, + [42547] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3856), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195464,20 +195833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [41969] = 5, + [42617] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3858), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195531,20 +195899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42041] = 5, + [42687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3860), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195598,23 +195965,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42113] = 4, + [42757] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195664,23 +196031,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42183] = 4, + [42827] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195730,20 +196097,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42253] = 5, + [42897] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3862), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3416), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3418), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -195797,24 +196163,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42325] = 5, + [42967] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3864), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3444), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3446), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195864,17 +196229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42397] = 4, + [43037] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 3, + ACTIONS(3440), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 55, + ACTIONS(3442), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -195930,23 +196295,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42467] = 4, + [43107] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 3, + ACTIONS(3440), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 55, + ACTIONS(3442), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -195996,20 +196361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42537] = 5, + [43177] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3866), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3444), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3446), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -196063,20 +196427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42609] = 5, + [43247] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3868), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3070), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3072), 55, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -196123,24 +196487,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [42681] = 4, + [43317] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 3, + ACTIONS(3192), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 55, + ACTIONS(3194), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -196196,23 +196559,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42751] = 4, + [43387] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 3, + ACTIONS(3506), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 55, + ACTIONS(3508), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196262,23 +196625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42821] = 4, + [43457] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, + ACTIONS(3494), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 55, + ACTIONS(3496), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196328,23 +196691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42891] = 4, + [43527] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, + ACTIONS(3498), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 55, + ACTIONS(3500), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196394,17 +196757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [42961] = 4, + [43597] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 3, + ACTIONS(3188), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 55, + ACTIONS(3190), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -196460,90 +196823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43031] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1951), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2980), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2982), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [43103] = 4, + [43667] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 3, + ACTIONS(3498), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 55, + ACTIONS(3500), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196593,23 +196889,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43173] = 4, + [43737] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 3, + ACTIONS(3494), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 55, + ACTIONS(3496), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196659,19 +196955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43243] = 4, + [43807] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 3, + ACTIONS(3494), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 55, + ACTIONS(3496), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -196719,31 +197014,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [43313] = 5, + [43877] = 4, ACTIONS(5), 1, sym_comment, - STATE(1945), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 3, - sym__newline_before_do, + ACTIONS(3478), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2976), 53, - anon_sym_LPAREN, + ACTIONS(3480), 55, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -196790,25 +197080,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [43385] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43947] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, + ACTIONS(3474), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 55, + ACTIONS(3476), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196858,23 +197153,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43455] = 4, + [44017] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 55, + ACTIONS(3520), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196924,24 +197219,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43525] = 4, + [44087] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 3, + ACTIONS(3184), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 55, + ACTIONS(3186), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -196984,30 +197278,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [43595] = 4, + [44157] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 3, + ACTIONS(3180), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 55, + ACTIONS(3182), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197050,30 +197344,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [43665] = 5, + [44227] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3870), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3176), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 54, + ACTIONS(3178), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197123,17 +197417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43737] = 4, + [44297] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 3, + ACTIONS(3172), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 55, + ACTIONS(3174), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -197189,17 +197483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43807] = 4, + [44367] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 3, + ACTIONS(3162), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 55, + ACTIONS(3164), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -197255,23 +197549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43877] = 4, + [44437] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 3, + ACTIONS(3484), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 55, + ACTIONS(3486), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197321,24 +197615,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43947] = 4, + [44507] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3158), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 54, + ACTIONS(3160), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197381,30 +197674,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44017] = 4, + [44577] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3154), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 54, + ACTIONS(3156), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197447,30 +197740,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44087] = 4, + [44647] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 3, + ACTIONS(2635), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3096), 55, + ACTIONS(2637), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197513,30 +197806,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44157] = 4, + [44717] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 3, + ACTIONS(2631), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(2633), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197579,30 +197872,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44227] = 4, + [44787] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 3, + ACTIONS(2623), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 55, + ACTIONS(2625), 55, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197645,29 +197938,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44297] = 4, + [44857] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 3, + ACTIONS(2627), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 55, + ACTIONS(2629), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197717,23 +198011,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [44367] = 4, + [44927] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 3, + ACTIONS(2651), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 55, + ACTIONS(2653), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197783,24 +198077,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [44437] = 4, + [44997] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, + ACTIONS(2655), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 54, + ACTIONS(2657), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -197843,24 +198136,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44507] = 4, + [45067] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, + ACTIONS(3474), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 54, + ACTIONS(3476), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -197909,25 +198202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44577] = 4, + [45137] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 3, + ACTIONS(3474), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 55, + ACTIONS(3476), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -197975,23 +198268,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44647] = 4, + [45207] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3466), 3, + ACTIONS(3468), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 55, + ACTIONS(3470), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -198047,18 +198341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [44717] = 4, + [45277] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(3464), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 54, + ACTIONS(3466), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -198107,24 +198400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44787] = 4, + [45347] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 4, + ACTIONS(3460), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2629), 54, + ACTIONS(3462), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -198173,29 +198466,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [44857] = 4, + [45417] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, + ACTIONS(3146), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 55, + ACTIONS(3148), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -198245,17 +198539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [44927] = 4, + [45487] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 3, + ACTIONS(3142), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 55, + ACTIONS(3144), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198311,17 +198605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [44997] = 4, + [45557] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 3, + ACTIONS(3138), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 55, + ACTIONS(3140), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198377,23 +198671,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45067] = 4, + [45627] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 3, + ACTIONS(3134), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 55, + ACTIONS(3136), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -198443,17 +198737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45137] = 4, + [45697] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 3, + ACTIONS(3086), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3536), 55, + ACTIONS(3088), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -198502,27 +198798,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45207] = 5, + [45769] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3872), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3297), 3, + ACTIONS(3096), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 53, + ACTIONS(3098), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -198535,6 +198829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -198576,18 +198871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45279] = 4, + [45841] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3020), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3022), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198635,25 +198931,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45349] = 4, + [45911] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3538), 3, + ACTIONS(3016), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3540), 55, + ACTIONS(3018), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198701,25 +198997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45419] = 4, + [45981] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 3, + ACTIONS(3012), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 55, + ACTIONS(3014), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198767,25 +199063,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45489] = 4, + [46051] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3255), 3, + ACTIONS(3008), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3257), 55, + ACTIONS(3010), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198833,25 +199129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45559] = 4, + [46121] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3251), 3, + ACTIONS(3004), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 55, + ACTIONS(3006), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198899,25 +199195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45629] = 4, + [46191] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 3, + ACTIONS(3000), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 55, + ACTIONS(3002), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198965,25 +199261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45699] = 4, + [46261] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 3, + ACTIONS(2996), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 55, + ACTIONS(2998), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -199031,24 +199327,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45769] = 4, + [46331] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 3, + ACTIONS(2655), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3144), 55, + ACTIONS(2657), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199097,24 +199393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45839] = 4, + [46401] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 3, + ACTIONS(2651), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3144), 55, + ACTIONS(2653), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199163,25 +199459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45909] = 4, + [46471] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 3, + ACTIONS(3024), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 55, + ACTIONS(3026), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -199229,53 +199525,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [45979] = 4, + [46541] = 33, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3146), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3148), 55, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3722), 1, anon_sym_SEMI, + ACTIONS(3724), 1, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3728), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3732), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3740), 1, anon_sym_when, + ACTIONS(3743), 1, anon_sym_COLON_COLON, + ACTIONS(3745), 1, anon_sym_EQ_GT, + ACTIONS(3747), 1, anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + STATE(443), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5363), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(6482), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -199285,35 +199626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [46049] = 4, + [46669] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 3, + ACTIONS(3032), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 55, + ACTIONS(3034), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -199361,24 +199686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46119] = 4, + [46739] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 3, + ACTIONS(3456), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 55, + ACTIONS(3458), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199434,17 +199758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46189] = 4, + [46809] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 3, + ACTIONS(3452), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 55, + ACTIONS(3454), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199500,18 +199824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46259] = 4, + [46879] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3548), 3, + ACTIONS(3036), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3550), 55, + ACTIONS(3038), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -199559,24 +199884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46329] = 4, + [46949] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 3, + ACTIONS(2627), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3167), 55, + ACTIONS(2629), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199625,24 +199950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46399] = 4, + [47019] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 3, + ACTIONS(2623), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3546), 55, + ACTIONS(2625), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199691,24 +200016,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46469] = 4, + [47089] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 3, + ACTIONS(3436), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3167), 55, + ACTIONS(3438), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199764,17 +200088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46539] = 4, + [47159] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 55, + ACTIONS(3108), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199830,23 +200154,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46609] = 4, + [47229] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3558), 3, + ACTIONS(3130), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3560), 55, + ACTIONS(3132), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -199896,18 +200220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46679] = 4, + [47299] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3566), 3, + ACTIONS(3054), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3568), 55, + ACTIONS(3056), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -199955,30 +200280,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46749] = 4, + [47369] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, + ACTIONS(3126), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 55, + ACTIONS(3128), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -200028,17 +200352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46819] = 4, + [47439] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, + ACTIONS(3420), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 55, + ACTIONS(3422), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200094,83 +200418,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46889] = 4, + [47509] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3622), 1, + anon_sym_PIPE, + ACTIONS(3634), 1, + anon_sym_when, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3632), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3664), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(3666), 8, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46959] = 4, + ACTIONS(3648), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [47621] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3590), 3, + ACTIONS(3416), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3592), 55, + ACTIONS(3418), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200226,17 +200571,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47029] = 4, + [47691] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 3, + ACTIONS(3416), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 55, + ACTIONS(3418), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200292,23 +200637,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47099] = 4, + [47761] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 3, + ACTIONS(3122), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3195), 55, + ACTIONS(3124), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -200358,17 +200703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47169] = 4, + [47831] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 3, + ACTIONS(3074), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3596), 55, + ACTIONS(3076), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200424,17 +200769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47239] = 4, + [47901] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3598), 3, + ACTIONS(3110), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3600), 55, + ACTIONS(3112), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200490,17 +200835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47309] = 4, + [47971] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3602), 3, + ACTIONS(3428), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3604), 55, + ACTIONS(3430), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200556,17 +200901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47379] = 4, + [48041] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3428), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3430), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200622,17 +200967,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47449] = 4, + [48111] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3428), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3430), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200688,17 +201033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47519] = 4, + [48181] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3424), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 55, + ACTIONS(3426), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200754,17 +201099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47589] = 4, + [48251] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3412), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3414), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200820,17 +201165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47659] = 4, + [48321] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 3, + ACTIONS(3408), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 55, + ACTIONS(3410), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200886,17 +201231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47729] = 4, + [48391] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3368), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3370), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200952,17 +201297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47799] = 4, + [48461] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3364), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3366), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -201018,19 +201363,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47869] = 4, + [48531] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3769), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -201084,19 +201430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [47939] = 4, + [48603] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3771), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -201150,43 +201497,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [48009] = 11, + [48675] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3114), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 41, + anon_sym_LBRACK2, + ACTIONS(3116), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -201217,49 +201548,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48093] = 11, + [48745] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3114), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 41, + anon_sym_LBRACK2, + ACTIONS(3116), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -201290,54 +201614,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48177] = 14, + [48815] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, + ACTIONS(2980), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 39, + anon_sym_LBRACK2, + ACTIONS(2982), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -201366,67 +201678,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48267] = 16, + [48885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, + ACTIONS(3150), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3650), 4, + anon_sym_LBRACK2, + ACTIONS(3152), 55, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -201444,60 +201733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48361] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3678), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -201507,250 +201744,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48457] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3680), 1, anon_sym_in, - ACTIONS(3682), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3674), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48555] = 20, + [48955] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, + ACTIONS(3150), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3674), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3650), 4, + anon_sym_LBRACK2, + ACTIONS(3152), 55, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48657] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, anon_sym_EQ, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3674), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3678), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -201760,171 +201810,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48761] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, anon_sym_in, - ACTIONS(3682), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3674), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [48869] = 24, + [49025] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3664), 1, - anon_sym_when, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, + ACTIONS(3150), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3654), 2, + anon_sym_LBRACK2, + ACTIONS(3152), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3672), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3674), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3678), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -201934,127 +201876,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [48979] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3664), 1, - anon_sym_when, - ACTIONS(3666), 1, - anon_sym_COLON_COLON, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, anon_sym_in, - ACTIONS(3682), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3672), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3674), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49089] = 8, + [49095] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3102), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 50, + anon_sym_LBRACK2, + ACTIONS(3104), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -202095,47 +201950,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49167] = 10, + [49165] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3102), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 42, + anon_sym_LBRACK2, + ACTIONS(3104), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -202167,30 +202011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49249] = 7, + [49235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3086), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 52, + anon_sym_LBRACK2, + ACTIONS(3088), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -202236,74 +202083,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49325] = 22, + [49305] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3652), 1, - anon_sym_PIPE, - ACTIONS(3668), 1, - anon_sym_EQ_GT, - ACTIONS(3670), 1, - anon_sym_EQ, - ACTIONS(3680), 1, - anon_sym_in, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, + ACTIONS(3096), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3654), 2, + anon_sym_LBRACK2, + ACTIONS(3098), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3672), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3674), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3650), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3676), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3678), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -202313,135 +202140,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [49431] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3680), 1, anon_sym_in, - ACTIONS(3682), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(3692), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3678), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 30, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49523] = 12, + [49375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3682), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3684), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3686), 1, - anon_sym_STAR_STAR, - ACTIONS(3688), 1, - anon_sym_DOT, - ACTIONS(3690), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3654), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3660), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3212), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3658), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 40, + anon_sym_LBRACK2, + ACTIONS(3214), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -202471,23 +202207,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [49609] = 4, + [49445] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 3, + ACTIONS(3216), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 55, + ACTIONS(3218), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -202543,19 +202289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [49679] = 4, + [49515] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3773), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -202609,17 +202356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [49749] = 4, + [49587] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3220), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3222), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -202675,19 +202422,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [49819] = 4, + [49657] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3775), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -202741,19 +202489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [49889] = 4, + [49729] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3777), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -202807,19 +202556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [49959] = 4, + [49801] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3779), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -202873,46 +202623,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50029] = 4, + [49873] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 3, - sym__not_in, + ACTIONS(3781), 1, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3784), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3789), 1, anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_when, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + ACTIONS(3803), 1, + anon_sym_EQ_GT, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3815), 1, + anon_sym_in, + ACTIONS(3817), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, + sym__not_in, + STATE(258), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4780), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3791), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3797), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3787), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1303), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -202922,36 +202714,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [49993] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3789), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_when, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + ACTIONS(3803), 1, + anon_sym_EQ_GT, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3815), 1, anon_sym_in, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3823), 1, anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, + sym__not_in, + ACTIONS(3829), 1, + aux_sym__terminator_token1, + ACTIONS(3832), 1, + anon_sym_SEMI, + STATE(263), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4781), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3797), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3807), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3809), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3787), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1295), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [50099] = 4, + ACTIONS(3811), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3813), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50113] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3835), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203005,83 +202872,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50169] = 4, + [50185] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3622), 1, + anon_sym_PIPE, + ACTIONS(3634), 1, + anon_sym_when, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, - sym__not_in, + ACTIONS(3532), 2, + sym__newline_before_do, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3632), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(3534), 8, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [50239] = 4, + ACTIONS(3648), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50297] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(2631), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(2633), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -203130,24 +203019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [50309] = 4, + [50367] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(2635), 4, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(2637), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -203196,92 +203085,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [50379] = 4, + [50437] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3622), 1, + anon_sym_PIPE, + ACTIONS(3634), 1, + anon_sym_when, + ACTIONS(3636), 1, + anon_sym_COLON_COLON, + ACTIONS(3638), 1, + anon_sym_EQ_GT, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(3650), 1, + anon_sym_in, + ACTIONS(3652), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3654), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, + anon_sym_STAR_STAR, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(3662), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3624), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3630), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3632), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3668), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3642), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3644), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3620), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3646), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3628), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(3670), 8, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [50449] = 4, + ACTIONS(3648), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50549] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3837), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203335,112 +203245,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50519] = 4, + [50621] = 33, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3606), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3608), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3732), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3740), 1, anon_sym_when, + ACTIONS(3743), 1, anon_sym_COLON_COLON, + ACTIONS(3745), 1, anon_sym_EQ_GT, + ACTIONS(3747), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50589] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3247), 3, + ACTIONS(3767), 1, sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 55, + ACTIONS(3839), 1, anon_sym_SEMI, + ACTIONS(3841), 1, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(393), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5382), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(6482), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -203450,34 +203340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [50659] = 4, + [50749] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 3, + ACTIONS(3843), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3478), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 55, + ACTIONS(3480), 53, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -203490,7 +203366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -203526,26 +203401,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [50729] = 4, + [50821] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3845), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3303), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203599,19 +203474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50799] = 4, + [50893] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3847), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3305), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3307), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203665,19 +203541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50869] = 4, + [50965] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3849), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203731,19 +203608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50939] = 4, + [51037] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3851), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203797,19 +203675,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51009] = 4, + [51109] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3853), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203863,19 +203742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51079] = 4, + [51181] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3855), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3391), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3393), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203929,19 +203809,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51149] = 4, + [51253] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3857), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -203995,19 +203876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51219] = 4, + [51325] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3859), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3406), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3408), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204061,19 +203943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51289] = 4, + [51397] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3861), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204127,19 +204010,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51359] = 4, + [51469] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3863), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204193,23 +204077,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51429] = 4, + [51541] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 3, + ACTIONS(3384), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 55, + ACTIONS(3386), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -204259,19 +204143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51499] = 4, + [51611] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3865), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204325,19 +204210,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51569] = 4, + [51683] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 3, + ACTIONS(3428), 3, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3416), 55, + ACTIONS(3430), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204384,26 +204272,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [51639] = 4, + [51757] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 3, + ACTIONS(3416), 3, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3416), 55, + ACTIONS(3418), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204450,26 +204340,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [51709] = 4, + [51831] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3658), 1, + anon_sym_DOT, + ACTIONS(3660), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 3, + ACTIONS(3474), 3, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3412), 55, + ACTIONS(3476), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204516,31 +204408,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [51779] = 4, + [51905] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3867), 1, + anon_sym_COMMA, + STATE(1791), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, + ACTIONS(3575), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 55, + ACTIONS(3577), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -204589,24 +204482,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51849] = 4, + [51979] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3867), 1, + anon_sym_COMMA, + STATE(1792), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3430), 3, + ACTIONS(3581), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3432), 55, + ACTIONS(3583), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -204655,24 +204550,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51919] = 4, + [52053] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3869), 1, + anon_sym_COMMA, + STATE(1792), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3118), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 55, + ACTIONS(3120), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -204721,18 +204618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51989] = 4, + [52127] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3309), 3, + ACTIONS(3082), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3311), 55, + ACTIONS(3084), 55, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -204780,26 +204678,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [52059] = 4, + [52197] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3872), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3313), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3315), 55, + ACTIONS(3168), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -204853,17 +204751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52129] = 4, + [52269] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3333), 3, + ACTIONS(3490), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3335), 55, + ACTIONS(3492), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -204912,24 +204810,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [52199] = 4, + [52338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 55, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -204978,53 +204875,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [52269] = 4, + [52407] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(898), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3874), 1, + anon_sym_SEMI, + STATE(447), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5244), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3351), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205034,67 +204974,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [52532] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1777), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3876), 1, + anon_sym_SEMI, + STATE(450), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5136), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [52338] = 5, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [52657] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3874), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3878), 1, + anon_sym_SEMI, + ACTIONS(3880), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(449), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5098), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [52782] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(878), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, anon_sym_when, + ACTIONS(3743), 1, anon_sym_COLON_COLON, + ACTIONS(3745), 1, anon_sym_EQ_GT, + ACTIONS(3747), 1, anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3882), 1, + anon_sym_SEMI, + STATE(426), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5395), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205104,62 +205253,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [52907] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3884), 1, + anon_sym_SEMI, + STATE(438), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5288), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [52409] = 4, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [53032] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3130), 3, - sym__newline_before_do, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3132), 53, + ACTIONS(3874), 1, + anon_sym_SEMI, + ACTIONS(3886), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(447), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5244), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205169,62 +205439,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [53157] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1767), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3888), 1, + anon_sym_SEMI, + STATE(379), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5167), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [52478] = 4, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [53282] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3126), 3, - sym__newline_before_do, + ACTIONS(3722), 1, + anon_sym_SEMI, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3128), 53, + ACTIONS(3890), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(443), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5363), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205234,62 +205625,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [53407] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3892), 1, + anon_sym_SEMI, + STATE(444), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5270), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3749), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [53532] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(886), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3722), 1, + anon_sym_SEMI, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [52547] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + STATE(443), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5363), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3122), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3124), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205299,22 +205811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [52616] = 32, + [53657] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1613), 1, + ACTIONS(1725), 1, anon_sym_RPAREN, ACTIONS(2881), 1, anon_sym_COMMA, @@ -205322,79 +205822,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(3789), 1, + ACTIONS(3740), 1, anon_sym_when, - ACTIONS(3792), 1, + ACTIONS(3743), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(3745), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3767), 1, sym__not_in, - ACTIONS(3876), 1, + ACTIONS(3894), 1, anon_sym_SEMI, - STATE(356), 1, + STATE(420), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5720), 1, + STATE(5432), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205404,50 +205904,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [52741] = 4, + [53782] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3058), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3060), 53, - anon_sym_LPAREN, + ACTIONS(882), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3839), 1, + anon_sym_SEMI, + STATE(393), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5382), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205457,95 +205997,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [52810] = 25, + [53907] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(2877), 1, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(2892), 1, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, anon_sym_COLON_COLON, - ACTIONS(2894), 1, + ACTIONS(3745), 1, anon_sym_EQ_GT, - ACTIONS(2896), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(2906), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(2908), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(2916), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, + ACTIONS(3767), 1, sym__not_in, - ACTIONS(3699), 1, - aux_sym__terminator_token1, - ACTIONS(3878), 1, - anon_sym_when, + ACTIONS(3882), 1, + anon_sym_SEMI, + ACTIONS(3896), 1, + anon_sym_RPAREN, + STATE(426), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5395), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2885), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2898), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2902), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3701), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(2904), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205555,90 +206090,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [52921] = 32, + [54032] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(910), 1, + anon_sym_RPAREN, ACTIONS(2881), 1, anon_sym_COMMA, ACTIONS(2914), 1, anon_sym_DASH_GT, ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(3789), 1, + ACTIONS(3740), 1, anon_sym_when, - ACTIONS(3792), 1, + ACTIONS(3743), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(3745), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3767), 1, sym__not_in, - ACTIONS(3880), 1, + ACTIONS(3898), 1, anon_sym_SEMI, - ACTIONS(3882), 1, - anon_sym_RPAREN, - STATE(362), 1, + STATE(395), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5826), 1, + STATE(5539), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205648,50 +206183,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [53046] = 4, + [54157] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3118), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3120), 53, + ACTIONS(1657), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3900), 1, + anon_sym_SEMI, + STATE(389), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5576), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205701,62 +206276,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [54282] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53115] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3102), 3, - sym__newline_before_do, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3104), 53, + ACTIONS(3898), 1, + anon_sym_SEMI, + ACTIONS(3902), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(395), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5539), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205766,62 +206369,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [54407] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(902), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53184] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3904), 1, + anon_sym_SEMI, + STATE(376), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5683), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3114), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3116), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205831,62 +206462,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [54532] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53253] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3110), 3, - sym__newline_before_do, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3112), 53, + ACTIONS(3906), 1, + anon_sym_SEMI, + ACTIONS(3908), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(433), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5712), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205896,62 +206555,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [54657] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1615), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53322] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3910), 1, + anon_sym_SEMI, + STATE(356), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5720), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3106), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3108), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -205961,62 +206648,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [54782] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53391] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3317), 3, - sym__newline_before_do, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3319), 53, + ACTIONS(3904), 1, + anon_sym_SEMI, + ACTIONS(3912), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(376), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5683), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206026,62 +206741,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [54907] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1741), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53460] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3914), 1, + anon_sym_SEMI, + STATE(434), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5643), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3321), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3323), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206091,62 +206834,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55032] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53529] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3878), 1, + anon_sym_SEMI, + STATE(449), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5098), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3325), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3327), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206156,62 +206927,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55157] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53598] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3329), 3, - sym__newline_before_do, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3331), 53, + ACTIONS(3916), 1, + anon_sym_SEMI, + ACTIONS(3918), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(445), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5269), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206221,62 +207020,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55282] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(890), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53667] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3920), 1, + anon_sym_SEMI, + STATE(362), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5826), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3337), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3339), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206286,62 +207113,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55407] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53736] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3922), 1, + anon_sym_SEMI, + STATE(368), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5861), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3341), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3343), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206351,62 +207206,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55532] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53805] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3345), 3, - sym__newline_before_do, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3347), 53, + ACTIONS(3920), 1, + anon_sym_SEMI, + ACTIONS(3924), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(362), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5826), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206416,62 +207299,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55657] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(870), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53874] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3926), 1, + anon_sym_SEMI, + STATE(404), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5846), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3349), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3351), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206481,62 +207392,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55782] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [53943] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3928), 1, + anon_sym_SEMI, + STATE(398), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5741), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3359), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3361), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206546,62 +207485,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [55907] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [54012] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3363), 3, - sym__newline_before_do, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3365), 53, + ACTIONS(3926), 1, + anon_sym_SEMI, + ACTIONS(3930), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(404), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5846), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206611,62 +207578,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [56032] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(906), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [54081] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3916), 1, + anon_sym_SEMI, + STATE(445), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5269), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3367), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3369), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206676,102 +207671,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [54150] = 32, + [56157] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_RPAREN, ACTIONS(2881), 1, anon_sym_COMMA, ACTIONS(2914), 1, anon_sym_DASH_GT, ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(3789), 1, + ACTIONS(3740), 1, anon_sym_when, - ACTIONS(3792), 1, + ACTIONS(3743), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(3745), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3767), 1, sym__not_in, - ACTIONS(3884), 1, + ACTIONS(3932), 1, anon_sym_SEMI, - STATE(379), 1, + ACTIONS(3934), 1, + anon_sym_RPAREN, + STATE(419), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5565), 1, + STATE(5117), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206781,90 +207764,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [54275] = 32, + [56282] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(1709), 1, + anon_sym_RPAREN, ACTIONS(2881), 1, anon_sym_COMMA, ACTIONS(2914), 1, anon_sym_DASH_GT, ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(3789), 1, + ACTIONS(3740), 1, anon_sym_when, - ACTIONS(3792), 1, + ACTIONS(3743), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(3745), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3767), 1, sym__not_in, - ACTIONS(3886), 1, + ACTIONS(3936), 1, anon_sym_SEMI, - ACTIONS(3888), 1, - anon_sym_RPAREN, - STATE(447), 1, + STATE(421), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5244), 1, + STATE(5849), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206874,54 +207857,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [54400] = 7, + [56407] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3890), 1, - sym__newline_before_do, - STATE(3326), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, + ACTIONS(874), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(2988), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3728), 1, anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3906), 1, + anon_sym_SEMI, + STATE(433), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5712), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206931,61 +207950,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [56532] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, anon_sym_in, + ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2912), 1, anon_sym_STAR_STAR, + ACTIONS(2916), 1, anon_sym_DOT, - [54475] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3664), 1, + aux_sym__terminator_token1, + ACTIONS(3938), 1, + anon_sym_when, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3076), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3078), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3666), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -206995,66 +208036,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [56643] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [54544] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3892), 1, - sym__newline_before_do, - STATE(3327), 1, - sym_do_block, - ACTIONS(3050), 2, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3839), 1, + anon_sym_SEMI, + ACTIONS(3940), 1, + anon_sym_RPAREN, + STATE(393), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5382), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3052), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -207064,65 +208129,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [56768] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_RPAREN, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3740), 1, + anon_sym_when, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - [54619] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3894), 1, - sym__newline_before_do, - STATE(3330), 1, - sym_do_block, - ACTIONS(2986), 2, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3942), 1, + anon_sym_SEMI, + STATE(399), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5627), 1, + aux_sym_block_repeat2, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2988), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -207132,21 +208222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [54694] = 32, + [56893] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(906), 1, + ACTIONS(914), 1, anon_sym_RPAREN, ACTIONS(2881), 1, anon_sym_COMMA, @@ -207154,79 +208233,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(3728), 1, anon_sym_PIPE, - ACTIONS(3789), 1, + ACTIONS(3740), 1, anon_sym_when, - ACTIONS(3792), 1, + ACTIONS(3743), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(3745), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3767), 1, sym__not_in, - ACTIONS(3896), 1, + ACTIONS(3932), 1, anon_sym_SEMI, - STATE(445), 1, + STATE(419), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5269), 1, + STATE(5117), 1, aux_sym_block_repeat2, - STATE(6139), 1, + STATE(6121), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -207236,31 +208315,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [54819] = 7, + [57018] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3898), 1, - sym__newline_before_do, - STATE(3331), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2655), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2988), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2657), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207304,117 +208375,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [54894] = 25, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57087] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2877), 1, - anon_sym_PIPE, - ACTIONS(2892), 1, - anon_sym_COLON_COLON, - ACTIONS(2894), 1, - anon_sym_EQ_GT, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3703), 1, - aux_sym__terminator_token1, - ACTIONS(3878), 1, - anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(2651), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2898), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3705), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [55005] = 7, + [57156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - ACTIONS(3900), 1, - sym__newline_before_do, - STATE(3333), 1, - sym_do_block, - ACTIONS(3012), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2627), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3014), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2629), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -207458,22 +208505,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [55080] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3138), 3, - sym__newline_before_do, + ACTIONS(2623), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2625), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207522,23 +208570,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55149] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57294] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3150), 3, - sym__newline_before_do, + ACTIONS(2631), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2633), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207587,23 +208635,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55218] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57363] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3154), 3, - sym__newline_before_do, + ACTIONS(2635), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2637), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207652,23 +208700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55287] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57432] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3181), 3, - sym__newline_before_do, + ACTIONS(3440), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3442), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207717,23 +208765,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55356] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57501] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3185), 3, - sym__newline_before_do, + ACTIONS(3444), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3446), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207782,23 +208830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55425] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57570] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3201), 3, - sym__newline_before_do, + ACTIONS(3436), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3438), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207847,23 +208895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55494] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3205), 3, - sym__newline_before_do, + ACTIONS(3106), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3108), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -207912,91 +208960,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [55563] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57708] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3368), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3771), 1, + anon_sym_LBRACK2, + ACTIONS(3370), 54, anon_sym_SEMI, - ACTIONS(3777), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3789), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3792), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, anon_sym_EQ, - ACTIONS(3806), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3902), 1, - anon_sym_RPAREN, - STATE(393), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5784), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57777] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3364), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3366), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -208006,18 +209079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [55688] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57846] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3209), 3, + ACTIONS(2655), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3211), 53, + ACTIONS(2657), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208071,18 +209160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55757] = 4, + [57915] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3213), 3, + ACTIONS(2651), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3215), 53, + ACTIONS(2653), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208136,19 +209225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55826] = 4, + [57984] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3098), 3, + ACTIONS(2627), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3100), 53, - anon_sym_LPAREN, + ACTIONS(2629), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208157,6 +209245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208201,18 +209290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55895] = 4, + [58053] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3217), 3, + ACTIONS(2623), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3219), 53, + ACTIONS(2625), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208266,19 +209355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55964] = 4, + [58122] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3072), 3, + ACTIONS(2631), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3074), 53, - anon_sym_LPAREN, + ACTIONS(2633), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208287,6 +209375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208331,90 +209420,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56033] = 32, + [58191] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(874), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3904), 1, - anon_sym_SEMI, - STATE(426), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5395), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(2635), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2637), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -208424,23 +209473,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [56158] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58260] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3440), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 54, - anon_sym_SEMI, + ACTIONS(3442), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208484,23 +209549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56227] = 4, + anon_sym_do, + [58329] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3221), 3, + ACTIONS(3444), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3223), 53, + ACTIONS(3446), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208554,19 +209615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56296] = 4, + [58398] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3068), 3, + ACTIONS(3436), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3070), 53, - anon_sym_LPAREN, + ACTIONS(3438), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208575,6 +209635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208619,18 +209680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56365] = 4, + [58467] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3225), 3, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3227), 53, + ACTIONS(3108), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208684,19 +209745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56434] = 4, + [58536] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3022), 3, + ACTIONS(3368), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3024), 53, - anon_sym_LPAREN, + ACTIONS(3370), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208705,6 +209765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208749,19 +209810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56503] = 4, + [58605] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3038), 3, + ACTIONS(3364), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3040), 53, - anon_sym_LPAREN, + ACTIONS(3366), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208770,6 +209830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -208814,19 +209875,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56572] = 4, + [58674] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 3, + ACTIONS(3428), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2992), 54, + ACTIONS(3430), 53, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -208873,29 +209936,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [56641] = 4, + [58747] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3042), 3, - sym__newline_before_do, + ACTIONS(3416), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3044), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym__terminator_token1, + ACTIONS(3418), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -208942,92 +210003,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [56710] = 32, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [58820] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, + ACTIONS(2916), 1, + anon_sym_DOT, ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3906), 1, - anon_sym_SEMI, - STATE(399), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5561), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3474), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3476), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -209037,19 +210060,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [56835] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [58893] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3944), 1, + sym__newline_before_do, + STATE(3164), 1, + sym_do_block, + ACTIONS(3058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 54, - anon_sym_SEMI, + ACTIONS(3060), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -209097,47 +210144,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56904] = 11, + [58968] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3946), 1, + sym__newline_before_do, + STATE(3161), 1, + sym_do_block, + ACTIONS(2986), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 41, - anon_sym_SEMI, + ACTIONS(2988), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -209168,96 +210203,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [56987] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(886), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, + [59043] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3948), 1, + sym__newline_before_do, + STATE(3160), 1, + sym_do_block, + ACTIONS(2986), 2, sym__not_in, - ACTIONS(3822), 1, - anon_sym_SEMI, - STATE(443), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5856), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(2988), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -209267,26 +210269,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [57112] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [59118] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3950), 1, + sym__newline_before_do, + STATE(3158), 1, + sym_do_block, + ACTIONS(3074), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 52, - anon_sym_SEMI, + ACTIONS(3076), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -209329,95 +210348,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [57185] = 32, + [59193] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(882), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3771), 1, - anon_sym_SEMI, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(421), 1, + anon_sym_do, + ACTIONS(3952), 1, + sym__newline_before_do, + STATE(3157), 1, + sym_do_block, + ACTIONS(2986), 2, sym__not_in, - STATE(393), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5784), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(2988), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -209427,26 +210405,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [57310] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [59268] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_COMMA, - STATE(1856), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3092), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3389), 52, - anon_sym_SEMI, + ACTIONS(3094), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -209489,47 +210480,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [57383] = 11, + anon_sym_do, + [59337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 41, - anon_sym_SEMI, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -209560,29 +210536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [57466] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59406] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3263), 3, + ACTIONS(3404), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3265), 54, + ACTIONS(3406), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -209631,47 +210611,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [57535] = 14, + [59475] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 39, + ACTIONS(3400), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3402), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -209700,96 +210660,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [57624] = 32, + [59544] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3913), 1, - anon_sym_SEMI, - ACTIONS(3915), 1, - anon_sym_RPAREN, - STATE(376), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5683), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3396), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3398), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -209799,26 +210725,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [57749] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59613] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3911), 1, - anon_sym_COMMA, - STATE(1858), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 3, + ACTIONS(3392), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 52, + ACTIONS(3394), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -209866,90 +210806,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [57822] = 32, + [59682] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3917), 1, - anon_sym_SEMI, - STATE(444), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5661), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3388), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3390), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -209959,90 +210855,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [57947] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3919), 1, - anon_sym_SEMI, - ACTIONS(3921), 1, - anon_sym_RPAREN, - STATE(449), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5105), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59751] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3384), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3386), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210052,90 +210920,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58072] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1725), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3923), 1, - anon_sym_SEMI, - STATE(420), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5432), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59820] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3380), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3382), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210145,90 +210985,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58197] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1777), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3925), 1, - anon_sym_SEMI, - STATE(450), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5136), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59889] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3376), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3378), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210238,90 +211050,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58322] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3904), 1, - anon_sym_SEMI, - ACTIONS(3927), 1, - anon_sym_RPAREN, - STATE(426), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5395), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59958] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3372), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3374), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210331,60 +211115,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58447] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2906), 1, anon_sym_in, - ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2916), 1, anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60027] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2875), 4, + ACTIONS(3356), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3358), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -210402,59 +211169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [58540] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2902), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210464,112 +211180,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [58635] = 32, + [60096] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3896), 1, - anon_sym_SEMI, - ACTIONS(3929), 1, - anon_sym_RPAREN, - STATE(445), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5269), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3346), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3348), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210579,90 +211245,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58760] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(878), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3886), 1, - anon_sym_SEMI, - STATE(447), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5244), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60165] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3208), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3210), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210672,90 +211310,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [58885] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3931), 1, - anon_sym_SEMI, - ACTIONS(3933), 1, - anon_sym_RPAREN, - STATE(392), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5917), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60234] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3334), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3336), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210765,90 +211375,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [59010] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(910), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3935), 1, - anon_sym_SEMI, - STATE(395), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5539), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60303] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3328), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3330), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -210858,101 +211440,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [59135] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2906), 1, anon_sym_in, - ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2900), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [59232] = 4, + [60372] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3169), 3, - sym__newline_before_do, + ACTIONS(3324), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3326), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211001,91 +211516,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [59301] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60441] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(914), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3937), 1, - anon_sym_SEMI, - STATE(419), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5497), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3320), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3322), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -211095,110 +211570,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [59426] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1771), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3939), 1, - anon_sym_SEMI, - STATE(438), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5288), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [59551] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60510] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 3, + ACTIONS(3268), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 54, + ACTIONS(3270), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -211253,17 +211651,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59620] = 4, + [60579] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 3, + ACTIONS(3264), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 54, + ACTIONS(3266), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -211318,22 +211716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [59689] = 4, + [60648] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3375), 3, - sym__newline_before_do, + ACTIONS(3260), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3262), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211382,23 +211776,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [59758] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60717] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3379), 3, - sym__newline_before_do, + ACTIONS(3256), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3258), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211447,23 +211841,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [59827] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60786] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3383), 3, - sym__newline_before_do, + ACTIONS(3252), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3254), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211512,23 +211906,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [59896] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60855] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3395), 3, - sym__newline_before_do, + ACTIONS(3248), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3250), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211577,23 +211971,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [59965] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60924] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3402), 3, - sym__newline_before_do, + ACTIONS(3244), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3246), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211642,23 +212036,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [60034] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60993] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3418), 3, - sym__newline_before_do, + ACTIONS(3240), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3242), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211707,23 +212101,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [60103] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61062] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3422), 3, - sym__newline_before_do, + ACTIONS(3236), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3238), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211772,23 +212166,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [60172] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61131] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3426), 3, - sym__newline_before_do, + ACTIONS(3232), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3234), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -211837,91 +212231,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [60241] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61200] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1651), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3941), 1, - anon_sym_SEMI, - STATE(398), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5836), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3228), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3230), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -211931,110 +212285,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [60366] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(890), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3943), 1, - anon_sym_SEMI, - STATE(433), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5154), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [60491] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61269] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, + ACTIONS(3224), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 54, + ACTIONS(3226), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212089,17 +212366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60560] = 4, + [61338] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 3, + ACTIONS(3432), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 54, + ACTIONS(3434), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212154,17 +212431,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60629] = 4, + [61407] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, + ACTIONS(3204), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 54, + ACTIONS(3206), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212219,17 +212496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60698] = 4, + [61476] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, + ACTIONS(3200), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 54, + ACTIONS(3202), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212284,17 +212561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60767] = 4, + [61545] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 3, + ACTIONS(3196), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 54, + ACTIONS(3198), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212349,17 +212626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60836] = 4, + [61614] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 3, + ACTIONS(3192), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 54, + ACTIONS(3194), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212414,17 +212691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60905] = 4, + [61683] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 3, + ACTIONS(3188), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 54, + ACTIONS(3190), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212479,17 +212756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [60974] = 4, + [61752] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 3, + ACTIONS(3184), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 54, + ACTIONS(3186), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212544,17 +212821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61043] = 4, + [61821] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 3, + ACTIONS(3180), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 54, + ACTIONS(3182), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212609,17 +212886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61112] = 4, + [61890] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 3, + ACTIONS(3176), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 54, + ACTIONS(3178), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212674,17 +212951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61181] = 4, + [61959] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 3, + ACTIONS(3172), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 54, + ACTIONS(3174), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212739,17 +213016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61250] = 4, + [62028] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 3, + ACTIONS(3162), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 54, + ACTIONS(3164), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212804,17 +213081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61319] = 4, + [62097] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3158), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 54, + ACTIONS(3160), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212869,22 +213146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61388] = 4, + [62166] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3434), 3, - sym__newline_before_do, + ACTIONS(3154), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3156), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -212933,18 +213206,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [61457] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62235] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 3, + ACTIONS(3146), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 54, + ACTIONS(3148), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -212999,17 +213276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61526] = 4, + [62304] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 3, + ACTIONS(3142), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 54, + ACTIONS(3144), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -213064,110 +213341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61595] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3913), 1, - anon_sym_SEMI, - STATE(376), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5683), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [61720] = 4, + [62373] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 3, + ACTIONS(3138), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 54, + ACTIONS(3140), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -213222,22 +213406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61789] = 4, + [62442] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3438), 3, - sym__newline_before_do, + ACTIONS(3134), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3136), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -213286,18 +213466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [61858] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62511] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, + ACTIONS(3130), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 54, + ACTIONS(3132), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -213352,17 +213536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61927] = 4, + [62580] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 3, + ACTIONS(3126), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 54, + ACTIONS(3128), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -213417,17 +213601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [61996] = 4, + [62649] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 3, + ACTIONS(3122), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 54, + ACTIONS(3124), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -213482,23 +213666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62065] = 4, + [62718] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3954), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213547,23 +213732,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62134] = 4, + [62789] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3956), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213612,23 +213798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62203] = 4, + [62860] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3958), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213677,23 +213864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62272] = 4, + [62931] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3960), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213742,23 +213930,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62341] = 4, + [63002] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3962), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213807,23 +213996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62410] = 4, + [63073] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3964), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -213872,90 +214062,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [62479] = 32, + [63144] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(898), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(362), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5826), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3966), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -213965,116 +214112,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [62604] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3943), 1, - anon_sym_SEMI, - ACTIONS(3945), 1, - anon_sym_RPAREN, - STATE(433), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5154), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [62729] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63215] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3968), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3088), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3090), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -214122,184 +214189,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [62798] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63286] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3937), 1, - anon_sym_SEMI, - ACTIONS(3947), 1, - anon_sym_RPAREN, - STATE(419), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5497), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3970), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [62923] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1569), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, anon_sym_when, - ACTIONS(3792), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3949), 1, - anon_sym_SEMI, - STATE(368), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5861), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -214309,120 +214244,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [63048] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1709), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3951), 1, - anon_sym_SEMI, - STATE(421), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5352), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [63173] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63357] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3972), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3442), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214466,28 +214321,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [63242] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63428] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3974), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3446), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214531,28 +214387,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [63311] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63499] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3976), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3450), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214596,28 +214453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [63380] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63570] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3978), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3454), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214661,28 +214519,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [63449] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63641] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3980), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3458), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214726,28 +214585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [63518] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63712] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3982), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3462), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214788,94 +214648,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [63587] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(870), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3931), 1, - anon_sym_SEMI, - STATE(392), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5917), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63783] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3984), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -214885,23 +214706,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [63712] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [63854] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3986), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -214950,23 +214788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [63781] = 4, + [63925] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3988), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -215015,23 +214854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [63850] = 4, + [63996] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3990), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3006), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3168), 53, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -215079,24 +214915,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [63919] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64067] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3992), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 54, + ACTIONS(3168), 53, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -215145,23 +214986,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [63988] = 4, + [64138] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 3, + ACTIONS(3086), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 54, + ACTIONS(3088), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -215210,23 +215051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [64057] = 4, + [64207] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 4, - sym__newline_before_do, + ACTIONS(3096), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 52, + ACTIONS(3098), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -215274,91 +215111,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64126] = 32, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64276] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(2877), 1, anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, + ACTIONS(2892), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(2894), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(2896), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(2906), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(2912), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(2916), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, sym__not_in, - ACTIONS(3919), 1, - anon_sym_SEMI, - STATE(449), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5105), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3668), 1, + aux_sym__terminator_token1, + ACTIONS(3938), 1, + anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(2879), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, + ACTIONS(2875), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(2883), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(3670), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215368,28 +215202,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [64251] = 4, + [64387] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3994), 1, + anon_sym_COMMA, + STATE(1940), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 4, - sym__newline_before_do, + ACTIONS(3575), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3577), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -215432,29 +215264,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64320] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64460] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3994), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2627), 4, - sym__newline_before_do, + ACTIONS(3581), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3583), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -215497,29 +215331,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64389] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64533] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3996), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2631), 4, - sym__newline_before_do, + ACTIONS(3118), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3120), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -215562,22 +215398,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [64458] = 6, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64606] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3118), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 53, + anon_sym_LBRACK2, + ACTIONS(3120), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -215624,15 +215462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64531] = 6, + [64675] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, ACTIONS(2916), 1, anon_sym_DOT, ACTIONS(2918), 1, @@ -215640,19 +215482,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 53, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -215683,23 +215534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64604] = 6, + [64758] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, ACTIONS(2916), 1, anon_sym_DOT, ACTIONS(2918), 1, @@ -215707,19 +215554,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 2, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 53, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -215750,45 +215606,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64677] = 4, + [64841] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3094), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3096), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 39, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -215817,39 +215681,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64930] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2906), 1, anon_sym_in, + ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2912), 1, anon_sym_STAR_STAR, + ACTIONS(2916), 1, anon_sym_DOT, - anon_sym_do, - [64746] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 54, - anon_sym_SEMI, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2875), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 26, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -215867,8 +215758,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65023] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215878,62 +215820,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64815] = 4, + [65118] = 18, ACTIONS(5), 1, sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -215943,62 +215902,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64884] = 4, + [65215] = 20, ACTIONS(5), 1, sym_comment, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3245), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -216008,62 +215987,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [64953] = 4, + [65316] = 21, ACTIONS(5), 1, sym_comment, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -216073,62 +216070,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65022] = 4, + [65419] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -216138,66 +216156,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65091] = 4, + [65526] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3938), 1, + anon_sym_when, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -216207,62 +216242,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65635] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, anon_sym_in, + ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(2912), 1, anon_sym_STAR_STAR, + ACTIONS(2916), 1, anon_sym_DOT, - anon_sym_do, - [65160] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3938), 1, + anon_sym_when, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2998), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -216272,35 +216327,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65229] = 4, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65744] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 54, + ACTIONS(3476), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -216341,35 +216401,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65298] = 4, + [65821] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3466), 3, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3468), 54, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 42, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -216401,36 +216472,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65367] = 4, + [65902] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3084), 3, - sym__newline_before_do, + ACTIONS(3474), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3086), 53, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym__terminator_token1, + ACTIONS(3476), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -216476,49 +216540,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [65436] = 4, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65977] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(2877), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3339), 54, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(2879), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2875), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -216528,33 +216616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65505] = 4, + [66082] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 3, + ACTIONS(3220), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 54, + ACTIONS(3222), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -216609,17 +216694,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [65574] = 4, + [66151] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 3, + ACTIONS(3216), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 54, + ACTIONS(3218), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -216674,17 +216759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [65643] = 4, + [66220] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3255), 3, + ACTIONS(3212), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3257), 54, + ACTIONS(3214), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -216739,27 +216824,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [65712] = 4, + [66289] = 15, ACTIONS(5), 1, sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(2920), 1, + sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3251), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3253), 54, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -216779,52 +216894,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65781] = 4, + [66380] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2912), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DOT, + ACTIONS(2918), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 3, + ACTIONS(2879), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3343), 54, + ACTIONS(2883), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 40, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -216854,38 +216967,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [65850] = 4, + [66465] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3020), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3347), 54, - anon_sym_SEMI, + ACTIONS(3022), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -216929,24 +217037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [65919] = 4, + anon_sym_do, + [66534] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3016), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3536), 54, - anon_sym_SEMI, + ACTIONS(3018), 53, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -216994,28 +217102,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [65988] = 4, + anon_sym_do, + [66603] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3361), 54, - anon_sym_SEMI, + ACTIONS(3014), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217059,23 +217167,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66057] = 4, + anon_sym_do, + [66672] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3404), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3365), 54, - anon_sym_SEMI, + ACTIONS(3406), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -217124,28 +217232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66126] = 4, + anon_sym_do, + [66741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 3, + ACTIONS(3096), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 54, + ACTIONS(3098), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217194,17 +217298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66195] = 4, + [66810] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 3, + ACTIONS(3086), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 54, + ACTIONS(3088), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -217259,17 +217363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66264] = 4, + [66879] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 3, + ACTIONS(3102), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 54, + ACTIONS(3104), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -217324,17 +217428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66333] = 4, + [66948] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 3, + ACTIONS(3102), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 54, + ACTIONS(3104), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -217389,17 +217493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66402] = 4, + [67017] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 3, + ACTIONS(3150), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 54, + ACTIONS(3152), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -217454,23 +217558,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66471] = 4, + [67086] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3400), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3148), 54, - anon_sym_SEMI, + ACTIONS(3402), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217514,28 +217622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66540] = 4, + anon_sym_do, + [67155] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 3, + ACTIONS(3150), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 54, + ACTIONS(3152), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217584,17 +217688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66609] = 4, + [67224] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 3, + ACTIONS(3150), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 54, + ACTIONS(3152), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -217649,23 +217753,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66678] = 4, + [67293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 3, + aux_sym__terminator_token1, + ACTIONS(3396), 3, + sym__newline_before_do, sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3398), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67362] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(3392), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3148), 54, - anon_sym_SEMI, + ACTIONS(3394), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217709,28 +217882,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66747] = 4, + anon_sym_do, + [67431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3390), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67500] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 3, + ACTIONS(2980), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 54, + ACTIONS(2982), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -217779,18 +218013,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [66816] = 4, + [67569] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 3, + aux_sym__terminator_token1, + ACTIONS(3384), 3, + sym__newline_before_do, sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3386), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67638] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(3380), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3385), 54, - anon_sym_SEMI, + ACTIONS(3382), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -217839,23 +218142,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66885] = 4, + anon_sym_do, + [67707] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3376), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3397), 54, - anon_sym_SEMI, + ACTIONS(3378), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -217904,22 +218207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [66954] = 4, + anon_sym_do, + [67776] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 3, + ACTIONS(3114), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 54, + ACTIONS(3116), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -217974,23 +218273,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [67023] = 4, + [67845] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 3, + ACTIONS(3114), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 54, + ACTIONS(3116), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218039,18 +218338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [67092] = 4, + [67914] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3372), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3420), 54, - anon_sym_SEMI, + ACTIONS(3374), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -218099,28 +218402,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [67161] = 4, + anon_sym_do, + [67983] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3086), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3424), 54, - anon_sym_SEMI, + ACTIONS(3088), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218164,24 +218468,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [67230] = 4, + anon_sym_do, + [68054] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3096), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3167), 54, - anon_sym_SEMI, + ACTIONS(3098), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -218229,28 +218534,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [67299] = 4, + anon_sym_do, + [68125] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3356), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3167), 54, - anon_sym_SEMI, + ACTIONS(3358), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218294,95 +218599,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [67368] = 32, + anon_sym_do, + [68194] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(3346), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3348), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3789), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3792), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, anon_sym_EQ, - ACTIONS(3806), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3953), 1, - anon_sym_SEMI, - STATE(434), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5461), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + anon_sym_do, + [68263] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(3208), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3210), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -218392,24 +218718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [67493] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68332] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3030), 3, - sym__newline_before_do, + ACTIONS(3364), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 52, + ACTIONS(3366), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -218457,25 +218790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [67564] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [68401] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2990), 3, - sym__newline_before_do, + ACTIONS(3368), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 52, + ACTIONS(3370), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -218523,24 +218855,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [67635] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [68470] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 3, + ACTIONS(3408), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 54, + ACTIONS(3410), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218589,29 +218925,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [67704] = 8, + [68539] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 2, + ACTIONS(3412), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 50, + anon_sym_LBRACK2, + ACTIONS(3414), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218652,88 +218982,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [67781] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3173), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3175), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [67850] = 4, + [68608] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, + ACTIONS(3424), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 54, + ACTIONS(3426), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218788,17 +219055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [67919] = 4, + [68677] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, + ACTIONS(3428), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 54, + ACTIONS(3430), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218853,23 +219120,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [67988] = 4, + [68746] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3334), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3179), 54, - anon_sym_SEMI, + ACTIONS(3336), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -218913,22 +219184,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68057] = 4, + anon_sym_do, + [68815] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 3, + ACTIONS(3428), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 54, + ACTIONS(3430), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -218983,23 +219250,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [68126] = 4, + [68884] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3328), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3195), 54, - anon_sym_SEMI, + ACTIONS(3330), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219043,22 +219314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68195] = 4, + anon_sym_do, + [68953] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3428), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 54, + ACTIONS(3430), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -219113,18 +219380,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [68264] = 4, + [69022] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3324), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3436), 54, - anon_sym_SEMI, + ACTIONS(3326), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -219173,28 +219444,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68333] = 4, + anon_sym_do, + [69091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3320), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3199), 54, - anon_sym_SEMI, + ACTIONS(3322), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219238,28 +219509,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68402] = 4, + anon_sym_do, + [69160] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3008), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3440), 54, - anon_sym_SEMI, + ACTIONS(3010), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219303,28 +219574,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68471] = 4, + anon_sym_do, + [69229] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3268), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3199), 54, - anon_sym_SEMI, + ACTIONS(3270), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219368,23 +219639,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68540] = 4, + anon_sym_do, + [69298] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3264), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3444), 54, - anon_sym_SEMI, + ACTIONS(3266), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -219433,23 +219704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68609] = 4, + anon_sym_do, + [69367] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3260), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2649), 53, + ACTIONS(3262), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219503,18 +219770,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68678] = 4, + [69436] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3256), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3448), 54, - anon_sym_SEMI, + ACTIONS(3258), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -219563,23 +219834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [68747] = 4, + anon_sym_do, + [69505] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 3, + ACTIONS(3252), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2645), 53, + ACTIONS(3254), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219633,18 +219900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68816] = 4, + [69574] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 3, + ACTIONS(3248), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2641), 53, + ACTIONS(3250), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219698,20 +219965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68885] = 5, + [69643] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3955), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3244), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3246), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219720,6 +219985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219764,18 +220030,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [68956] = 4, + [69712] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3240), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3452), 54, - anon_sym_SEMI, + ACTIONS(3242), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -219824,23 +220094,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69025] = 4, + anon_sym_do, + [69781] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3236), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3456), 54, - anon_sym_SEMI, + ACTIONS(3238), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -219889,25 +220159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69094] = 5, + anon_sym_do, + [69850] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3957), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3232), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3234), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219916,6 +220180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -219960,18 +220225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69165] = 4, + [69919] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2635), 3, + ACTIONS(3228), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2637), 53, + ACTIONS(3230), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220025,18 +220290,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69234] = 4, + [69988] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3224), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3460), 54, - anon_sym_SEMI, + ACTIONS(3226), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -220085,25 +220354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69303] = 5, + anon_sym_do, + [70057] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3959), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3432), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3434), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220112,6 +220375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220156,20 +220420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69374] = 5, + [70126] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3961), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3204), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3206), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220178,6 +220440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220222,90 +220485,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69445] = 32, + [70195] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(3200), 3, + sym__newline_before_do, sym__not_in, - ACTIONS(3822), 1, - anon_sym_SEMI, - ACTIONS(3963), 1, + anon_sym_LBRACK2, + ACTIONS(3202), 53, anon_sym_RPAREN, - STATE(443), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5856), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -220315,18 +220538,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [69570] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70264] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3196), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3464), 54, - anon_sym_SEMI, + ACTIONS(3198), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -220375,23 +220614,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [69639] = 4, + anon_sym_do, + [70333] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3247), 3, + ACTIONS(3004), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3249), 53, + ACTIONS(3006), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220400,7 +220636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220445,27 +220680,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69708] = 4, + [70402] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2631), 3, - sym__newline_before_do, + ACTIONS(3110), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 53, + ACTIONS(3112), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220509,19 +220740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [69777] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [70471] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2627), 3, + ACTIONS(3000), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2629), 53, + ACTIONS(3002), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220530,7 +220766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220575,90 +220810,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [69846] = 32, + [70540] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1657), 1, - anon_sym_RPAREN, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3965), 1, - anon_sym_SEMI, - STATE(389), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5576), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -220668,116 +220863,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [69971] = 32, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_DASH_GT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3789), 1, - anon_sym_when, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3935), 1, - anon_sym_SEMI, - ACTIONS(3967), 1, - anon_sym_RPAREN, - STATE(395), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5539), 1, - aux_sym_block_repeat2, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3787), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [70096] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70609] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3192), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3279), 54, - anon_sym_SEMI, + ACTIONS(3194), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220821,25 +220939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70165] = 5, + anon_sym_do, + [70678] = 4, ACTIONS(5), 1, sym_comment, - STATE(2180), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3012), 3, + ACTIONS(3188), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3014), 52, + ACTIONS(3190), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220848,6 +220960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -220892,24 +221005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [70236] = 5, + [70747] = 4, ACTIONS(5), 1, sym_comment, - STATE(2182), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2986), 3, - sym__newline_before_do, + ACTIONS(3074), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 52, + ACTIONS(3076), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -220957,21 +221065,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [70307] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [70816] = 4, ACTIONS(5), 1, sym_comment, - STATE(2183), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2986), 3, + ACTIONS(3184), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2988), 52, + ACTIONS(3186), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220980,6 +221090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221024,23 +221135,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [70378] = 4, + [70885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3538), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3180), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3540), 54, - anon_sym_SEMI, + ACTIONS(3182), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221084,28 +221199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70447] = 4, + anon_sym_do, + [70954] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3176), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3052), 54, - anon_sym_SEMI, + ACTIONS(3178), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221149,22 +221264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70516] = 4, + anon_sym_do, + [71023] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 3, + ACTIONS(3416), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 54, + ACTIONS(3418), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221219,27 +221330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [70585] = 4, + [71092] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3243), 3, - sym__newline_before_do, + ACTIONS(3416), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 53, + ACTIONS(3418), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221283,24 +221390,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [70654] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [71161] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3548), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3172), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3550), 54, - anon_sym_SEMI, + ACTIONS(3174), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221344,22 +221459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70723] = 4, + anon_sym_do, + [71230] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3416), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 54, + ACTIONS(3418), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221414,17 +221525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [70792] = 4, + [71299] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3420), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 54, + ACTIONS(3422), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221479,23 +221590,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [70861] = 4, + [71368] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3162), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3546), 54, - anon_sym_SEMI, + ACTIONS(3164), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221539,28 +221654,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70930] = 4, + anon_sym_do, + [71437] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3158), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3295), 54, - anon_sym_SEMI, + ACTIONS(3160), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221604,28 +221719,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [70999] = 4, + anon_sym_do, + [71506] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3154), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3299), 54, - anon_sym_SEMI, + ACTIONS(3156), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221669,28 +221784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71068] = 4, + anon_sym_do, + [71575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3146), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3546), 54, - anon_sym_SEMI, + ACTIONS(3148), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221734,22 +221849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71137] = 4, + anon_sym_do, + [71644] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3558), 3, + ACTIONS(3478), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3560), 54, + ACTIONS(3480), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -221804,27 +221915,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [71206] = 4, + [71713] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3233), 3, - sym__newline_before_do, + ACTIONS(3106), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 53, + ACTIONS(3108), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -221868,45 +221975,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [71275] = 12, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [71782] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 2, + ACTIONS(3436), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 40, + anon_sym_LBRACK2, + ACTIONS(3438), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -221936,33 +222030,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [71360] = 4, + [71851] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3229), 3, - sym__newline_before_do, + ACTIONS(3452), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 53, + ACTIONS(3454), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222006,18 +222105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [71429] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [71920] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 3, + ACTIONS(3456), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 54, + ACTIONS(3458), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -222072,23 +222175,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [71498] = 4, + [71989] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3142), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3245), 54, - anon_sym_SEMI, + ACTIONS(3144), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222132,28 +222239,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71567] = 4, + anon_sym_do, + [72058] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3138), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3303), 54, - anon_sym_SEMI, + ACTIONS(3140), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222197,28 +222304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71636] = 4, + anon_sym_do, + [72127] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3305), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3307), 54, - anon_sym_SEMI, + ACTIONS(3136), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222262,28 +222369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71705] = 4, + anon_sym_do, + [72196] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3566), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3130), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3568), 54, - anon_sym_SEMI, + ACTIONS(3132), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222327,28 +222434,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71774] = 4, + anon_sym_do, + [72265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3590), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3126), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3592), 54, - anon_sym_SEMI, + ACTIONS(3128), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222392,28 +222499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71843] = 4, + anon_sym_do, + [72334] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3596), 54, - anon_sym_SEMI, + ACTIONS(3124), 53, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -222457,25 +222564,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71912] = 5, + anon_sym_do, + [72403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3969), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2655), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(2657), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222523,25 +222629,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [71983] = 5, + anon_sym_do, + [72472] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3971), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2651), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(2653), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222589,25 +222694,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72054] = 5, + anon_sym_do, + [72541] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3973), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3024), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3026), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222655,25 +222759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72125] = 5, + anon_sym_do, + [72610] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3975), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3032), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3034), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222721,25 +222824,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72196] = 5, + anon_sym_do, + [72679] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3977), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3036), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3038), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222787,25 +222889,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72267] = 5, + anon_sym_do, + [72748] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(3999), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222853,25 +222955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72338] = 5, + anon_sym_do, + [72819] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(4001), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222919,25 +223021,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72409] = 5, + anon_sym_do, + [72890] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3983), 1, + ACTIONS(4003), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -222985,25 +223087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72480] = 5, + anon_sym_do, + [72961] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(4005), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223051,25 +223153,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72551] = 5, + anon_sym_do, + [73032] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3987), 1, + ACTIONS(4007), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223117,25 +223219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72622] = 5, + anon_sym_do, + [73103] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3989), 1, + ACTIONS(4009), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223183,25 +223285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72693] = 5, + anon_sym_do, + [73174] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(4011), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223249,25 +223351,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72764] = 5, + anon_sym_do, + [73245] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(4013), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223315,25 +223417,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72835] = 5, + anon_sym_do, + [73316] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(4015), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223381,25 +223483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [72906] = 5, + anon_sym_do, + [73387] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3997), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3460), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 53, + ACTIONS(3462), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223452,20 +223549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [72977] = 5, + [73456] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3999), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3464), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 53, + ACTIONS(3466), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223518,20 +223614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [73048] = 5, + [73525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4001), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3468), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 53, + ACTIONS(3470), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223584,19 +223679,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [73119] = 4, + [73594] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4017), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3309), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3311), 54, - anon_sym_SEMI, + ACTIONS(3168), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223644,24 +223744,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73188] = 4, + anon_sym_do, + [73665] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4019), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3313), 3, + aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73736] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4021), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3315), 54, - anon_sym_SEMI, + ACTIONS(3168), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223709,22 +223876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73257] = 4, + anon_sym_do, + [73807] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3333), 3, + ACTIONS(3474), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3335), 54, + ACTIONS(3476), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -223779,20 +223942,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [73326] = 5, + [73876] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4003), 1, + ACTIONS(4023), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73947] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4025), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223840,25 +224073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73397] = 5, + anon_sym_do, + [74018] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4027), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223906,25 +224139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73468] = 5, + anon_sym_do, + [74089] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(4029), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 53, - anon_sym_SEMI, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -223972,24 +224205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73539] = 4, + anon_sym_do, + [74160] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4031), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 54, - anon_sym_SEMI, + ACTIONS(3168), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -224037,185 +224271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73608] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2898), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2900), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73709] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2894), 1, - anon_sym_EQ_GT, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2898), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2900), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [73812] = 4, + anon_sym_do, + [74231] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3598), 3, + ACTIONS(3474), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3600), 54, + ACTIONS(3476), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -224270,20 +224337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [73881] = 5, + [74300] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4009), 1, + ACTIONS(4033), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3168), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224336,20 +224403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [73952] = 5, + [74371] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(4035), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3168), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224402,19 +224469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74023] = 4, + [74442] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4037), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 54, - anon_sym_SEMI, + ACTIONS(3168), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -224462,23 +224534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [74092] = 4, + anon_sym_do, + [74513] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3134), 3, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3136), 53, + ACTIONS(2629), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224487,7 +224556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -224532,20 +224600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74161] = 5, + [74582] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4013), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(2623), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(2625), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224598,20 +224665,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74232] = 5, + [74651] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4015), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3054), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3056), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224664,20 +224730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74303] = 5, + [74720] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4017), 1, - aux_sym_sigil_token3, + STATE(2226), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(2988), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224730,20 +224796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74374] = 5, + [74791] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4019), 1, - aux_sym_sigil_token3, + STATE(2227), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3076), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224796,20 +224862,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74445] = 5, + [74862] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4021), 1, - aux_sym_sigil_token3, + STATE(2229), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(2988), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224862,20 +224928,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74516] = 5, + [74933] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4023), 1, - aux_sym_sigil_token3, + STATE(2230), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(2988), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -224928,24 +224994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74587] = 5, + [75004] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4025), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3484), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3486), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -224993,21 +225054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [74658] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [75073] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4027), 1, - aux_sym_sigil_token3, + STATE(2232), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3058), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3060), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -225060,20 +225125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74729] = 5, + [75144] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4029), 1, - aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(2633), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -225126,19 +225190,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [74800] = 4, + [75213] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3391), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2635), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3393), 54, - anon_sym_SEMI, + ACTIONS(2637), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -225186,74 +225254,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [74869] = 23, + anon_sym_do, + [75282] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2877), 1, - anon_sym_PIPE, - ACTIONS(2892), 1, - anon_sym_COLON_COLON, - ACTIONS(2894), 1, - anon_sym_EQ_GT, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(3474), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3476), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2898), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -225263,116 +225304,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [74976] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2877), 1, - anon_sym_PIPE, - ACTIONS(2892), 1, - anon_sym_COLON_COLON, - ACTIONS(2894), 1, - anon_sym_EQ_GT, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, anon_sym_in, - ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3878), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2898), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(2900), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [75085] = 4, + [75351] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3406), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3082), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3408), 54, - anon_sym_SEMI, + ACTIONS(3084), 53, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -225420,22 +225384,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [75154] = 4, + anon_sym_do, + [75420] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3494), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 54, + ACTIONS(3496), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -225490,24 +225450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75223] = 5, + [75489] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4031), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3494), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3496), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -225555,18 +225510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [75294] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [75558] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 3, + ACTIONS(3498), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 54, + ACTIONS(3500), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -225621,17 +225580,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75363] = 4, + [75627] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3070), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3072), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [75696] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 3, + ACTIONS(3498), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 54, + ACTIONS(3500), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -225686,17 +225710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75432] = 4, + [75765] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 3, + ACTIONS(3494), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 54, + ACTIONS(3496), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -225751,71 +225775,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75501] = 24, + [75834] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2877), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3506), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3508), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(2892), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(2894), 1, anon_sym_EQ_GT, - ACTIONS(2896), 1, anon_sym_EQ, - ACTIONS(2906), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(2916), 1, anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3878), 1, - anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [75903] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(3518), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3520), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2898), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(2904), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [75972] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3518), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3520), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -225825,28 +225954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [75610] = 4, + [76041] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -225901,17 +226035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75679] = 4, + [76110] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -225966,17 +226100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75748] = 4, + [76179] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3430), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3432), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226031,24 +226165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75817] = 5, + [76248] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4033), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3444), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3446), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -226096,25 +226225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [75888] = 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [76317] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4035), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3440), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3442), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -226162,18 +226290,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [75959] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [76386] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3602), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3604), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226228,24 +226360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76028] = 5, + [76455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4037), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3518), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 52, + ACTIONS(3520), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -226293,41 +226420,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [76099] = 10, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [76524] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 2, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 42, + anon_sym_LBRACK2, + ACTIONS(3520), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -226359,23 +226477,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [76180] = 4, + [76593] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226430,17 +226555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76249] = 4, + [76662] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, + ACTIONS(3563), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 54, + ACTIONS(3565), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226495,17 +226620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76318] = 4, + [76731] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3360), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3362), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226560,17 +226685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76387] = 4, + [76800] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3342), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3344), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226625,17 +226750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76456] = 4, + [76869] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3604), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3606), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226690,17 +226815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76525] = 4, + [76938] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -226755,23 +226880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76594] = 4, + [77007] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 4, - sym__newline_before_do, + ACTIONS(3518), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 52, + ACTIONS(3520), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -226819,24 +226940,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [76663] = 7, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77076] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 52, + anon_sym_LBRACK2, + ACTIONS(3520), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -226882,29 +227003,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [76738] = 4, + [77145] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 4, - sym__newline_before_do, + ACTIONS(3518), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 52, + ACTIONS(3520), 54, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -226952,68 +227070,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [76807] = 22, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [77214] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2877), 1, - anon_sym_PIPE, - ACTIONS(2894), 1, - anon_sym_EQ_GT, - ACTIONS(2896), 1, - anon_sym_EQ, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, + ACTIONS(3518), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3520), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2898), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2875), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -227023,30 +227124,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [76912] = 4, + [77283] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227101,17 +227205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [76981] = 4, + [77352] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227166,17 +227270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77050] = 4, + [77421] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227231,17 +227335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77119] = 4, + [77490] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227296,17 +227400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77188] = 4, + [77559] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3520), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227361,17 +227465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77257] = 4, + [77628] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3598), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3600), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227426,17 +227530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77326] = 4, + [77697] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3559), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3561), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227491,17 +227595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77395] = 4, + [77766] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3545), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3547), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227556,17 +227660,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77464] = 4, + [77835] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3590), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3592), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227621,17 +227725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77533] = 4, + [77904] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3555), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3557), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227686,57 +227790,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77602] = 15, + [77973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2906), 1, - anon_sym_in, - ACTIONS(2908), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(2910), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2912), 1, - anon_sym_STAR_STAR, - ACTIONS(2916), 1, - anon_sym_DOT, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(2920), 1, - sym__not_in, - ACTIONS(3371), 1, - aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2879), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2883), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(2904), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 30, + ACTIONS(3567), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3569), 54, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -227756,23 +227830,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [77693] = 4, + [78042] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3567), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3569), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227827,17 +227920,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77762] = 4, + [78111] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3551), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3553), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227892,17 +227985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77831] = 4, + [78180] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3571), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3573), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -227957,17 +228050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77900] = 4, + [78249] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, + ACTIONS(3567), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 54, + ACTIONS(3569), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -228022,19 +228115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [77969] = 4, + [78318] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 54, - anon_sym_SEMI, + ACTIONS(3520), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -228082,32 +228178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [78038] = 4, + anon_sym_do, + [78386] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3080), 3, + ACTIONS(3180), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 53, - anon_sym_LPAREN, + ACTIONS(3182), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -228150,31 +228240,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [78107] = 5, + [78454] = 6, ACTIONS(5), 1, sym_comment, - STATE(2195), 1, - sym_do_block, + ACTIONS(4039), 1, + anon_sym_COMMA, + STATE(2137), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2986), 3, + ACTIONS(3575), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2988), 52, + ACTIONS(3577), 50, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -228218,94 +228309,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78178] = 4, + [78526] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3606), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4039), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [78247] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(2185), 1, - sym_do_block, + STATE(2142), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3050), 3, + ACTIONS(3581), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3052), 52, + ACTIONS(3583), 50, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -228349,25 +228375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78318] = 4, + [78598] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, - sym__newline_before_do, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 52, + ACTIONS(3476), 52, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -228410,89 +228436,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [78386] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [78670] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2888), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3590), 3, + ACTIONS(2980), 5, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3592), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [78454] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3293), 3, - sym__newline_before_do, - sym__not_in, anon_sym_LBRACK2, - ACTIONS(3295), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2982), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -228541,84 +228507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78522] = 6, + [78742] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(3293), 2, - sym__newline_before_do, - sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_do, - [78594] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3295), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -228671,18 +228571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78662] = 4, + [78810] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3297), 3, + ACTIONS(3118), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3299), 52, + ACTIONS(3120), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -228735,27 +228635,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78730] = 4, + [78878] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4043), 1, + anon_sym_COMMA, + STATE(2142), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3247), 3, + ACTIONS(3118), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3249), 52, + ACTIONS(3120), 50, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -228799,27 +228701,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78798] = 4, + [78950] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4046), 1, + anon_sym_COMMA, + STATE(2143), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3243), 3, + ACTIONS(3532), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3245), 52, + ACTIONS(3534), 50, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -228863,22 +228767,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [78866] = 4, + [79022] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3301), 3, - sym__newline_before_do, + ACTIONS(3416), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3303), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym__terminator_token1, + ACTIONS(3418), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -228925,24 +228828,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [78934] = 4, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79094] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3305), 3, - sym__newline_before_do, + ACTIONS(3428), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3307), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym__terminator_token1, + ACTIONS(3430), 52, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -228989,76 +228894,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [79002] = 25, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79166] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3668), 1, aux_sym__terminator_token1, - ACTIONS(3729), 1, + ACTIONS(3789), 1, anon_sym_PIPE, - ACTIONS(3739), 1, + ACTIONS(3799), 1, anon_sym_when, - ACTIONS(3741), 1, + ACTIONS(3801), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, + ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(3805), 1, anon_sym_EQ, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3737), 2, + ACTIONS(3797), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3701), 7, + ACTIONS(3670), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_after, @@ -229066,7 +228974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229076,21 +228984,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [79112] = 6, + [79276] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(1827), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2970), 51, + ACTIONS(3514), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3516), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -229142,39 +229047,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [79184] = 12, + anon_sym_do, + [79344] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 39, + ACTIONS(3476), 39, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -229214,42 +229120,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [79268] = 15, + [79428] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229259,7 +229165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 29, + ACTIONS(3476), 29, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -229289,67 +229195,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [79358] = 22, + [79518] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3729), 1, + ACTIONS(3789), 1, anon_sym_PIPE, - ACTIONS(3743), 1, + ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(3805), 1, anon_sym_EQ, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229359,7 +229265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, + ACTIONS(3476), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, @@ -229371,22 +229277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [79462] = 7, + [79622] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 51, + ACTIONS(3476), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -229438,99 +229344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [79536] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2627), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2629), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [79604] = 10, + [79696] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 41, + ACTIONS(3476), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -229572,89 +229414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [79684] = 4, + [79776] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2631), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2633), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3823), 1, anon_sym_DOT, - anon_sym_do, - [79752] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_STAR_STAR, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3373), 49, + ACTIONS(3476), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -229704,71 +229482,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [79828] = 24, + [79852] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3729), 1, + ACTIONS(3789), 1, anon_sym_PIPE, - ACTIONS(3739), 1, + ACTIONS(3799), 1, anon_sym_when, - ACTIONS(3741), 1, + ACTIONS(3801), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, + ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(3805), 1, anon_sym_EQ, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 9, + ACTIONS(3476), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, @@ -229778,7 +229556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229788,135 +229566,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [79936] = 4, + [79960] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 4, - sym__newline_before_do, - sym__not_in, + ACTIONS(3474), 1, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 52, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [80004] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3729), 1, + ACTIONS(3789), 1, anon_sym_PIPE, - ACTIONS(3739), 1, + ACTIONS(3799), 1, anon_sym_when, - ACTIONS(3741), 1, + ACTIONS(3801), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, + ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(3805), 1, anon_sym_EQ, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 9, + ACTIONS(3476), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, @@ -229926,7 +229640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229936,69 +229650,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [80112] = 23, + [80068] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3729), 1, + ACTIONS(3789), 1, anon_sym_PIPE, - ACTIONS(3741), 1, + ACTIONS(3801), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, + ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(3805), 1, anon_sym_EQ, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230008,7 +229722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, + ACTIONS(3476), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, @@ -230019,65 +229733,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [80218] = 21, + [80174] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3743), 1, + ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, + ACTIONS(3805), 1, anon_sym_EQ, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230087,7 +229801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, + ACTIONS(3476), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -230100,63 +229814,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [80320] = 20, + [80276] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4049), 1, + sym__newline_before_do, + STATE(4013), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2972), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3745), 1, + anon_sym_LBRACK2, + ACTIONS(2974), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(3755), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3757), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3765), 1, + [80350] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2651), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(2982), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80422] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3815), 1, + anon_sym_in, + ACTIONS(3817), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3747), 3, + ACTIONS(3807), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230166,7 +230013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, + ACTIONS(3476), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -230180,57 +230027,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [80420] = 18, + [80522] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3749), 3, + ACTIONS(3809), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230240,7 +230087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 17, + ACTIONS(3476), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -230258,117 +230105,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [80516] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3277), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3279), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [80584] = 17, + [80618] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 4, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3751), 5, + ACTIONS(3811), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, + ACTIONS(3813), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -230378,7 +230161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 20, + ACTIONS(3476), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -230399,29 +230182,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [80678] = 4, + [80712] = 16, ACTIONS(5), 1, sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3815), 1, + anon_sym_in, + ACTIONS(3817), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 52, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3787), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3813), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 25, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -230439,82 +230253,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [80746] = 16, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80804] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3755), 1, + ACTIONS(3815), 1, anon_sym_in, - ACTIONS(3757), 1, + ACTIONS(3817), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - ACTIONS(3763), 1, + ACTIONS(3823), 1, anon_sym_DOT, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3827), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3791), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3735), 2, + ACTIONS(3795), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3727), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3733), 6, + ACTIONS(3793), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3753), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, + ACTIONS(3476), 38, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -230534,34 +230316,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [80838] = 4, + [80892] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, - sym__newline_before_do, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 52, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 40, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -230592,40 +230398,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80974] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3819), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3821), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3823), 1, anon_sym_DOT, - anon_sym_do, - [80906] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, - sym__newline_before_do, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 52, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 40, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -230656,127 +230469,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [80974] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3755), 1, - anon_sym_in, - ACTIONS(3757), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, - anon_sym_STAR_STAR, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3767), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3731), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 38, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [81062] = 11, + [81056] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, - anon_sym_STAR_STAR, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4051), 1, + sym__newline_before_do, + STATE(3675), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(2968), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3731), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 40, + anon_sym_LBRACK2, + ACTIONS(2970), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -230807,99 +230532,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [81144] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3759), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, - anon_sym_STAR_STAR, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3731), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 40, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [81226] = 7, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [81130] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - ACTIONS(4043), 1, - sym__newline_before_do, - STATE(3502), 1, + STATE(2868), 1, sym_do_block, - ACTIONS(2980), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2982), 50, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -230950,22 +230605,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [81300] = 4, + anon_sym_do, + [81200] = 5, ACTIONS(5), 1, sym_comment, + STATE(2870), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3309), 3, + ACTIONS(2968), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3311), 52, + ACTIONS(2970), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -231012,25 +230668,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [81368] = 7, + [81270] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(588), 1, anon_sym_do, - ACTIONS(4045), 1, + ACTIONS(4053), 1, sym__newline_before_do, - STATE(3524), 1, + STATE(3742), 1, sym_do_block, - ACTIONS(2974), 2, + ACTIONS(2968), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2976), 50, + ACTIONS(2970), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -231081,22 +230738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [81442] = 4, + [81344] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(588), 1, + anon_sym_do, + ACTIONS(4055), 1, + sym__newline_before_do, + STATE(3740), 1, + sym_do_block, + ACTIONS(2972), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3313), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3315), 52, + ACTIONS(2974), 50, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -231143,24 +230803,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [81510] = 4, + [81418] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2899), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3333), 3, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3335), 52, + ACTIONS(2982), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -231207,27 +230868,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [81578] = 4, + [81490] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2892), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 4, + aux_sym__terminator_token1, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 52, - anon_sym_SEMI, + ACTIONS(2982), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -231273,22 +230937,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [81646] = 4, + [81562] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2911), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 52, + ACTIONS(2982), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -231335,20 +231000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [81714] = 4, + [81634] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, + ACTIONS(3448), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 52, + ACTIONS(3450), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231401,30 +231067,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [81782] = 6, + [81702] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, + ACTIONS(4059), 1, + anon_sym_COMMA, + STATE(2176), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3532), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 51, + anon_sym_LBRACK2, + ACTIONS(3534), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -231466,28 +231130,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [81854] = 4, + [81774] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4062), 1, + anon_sym_COMMA, + STATE(2177), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3391), 3, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3393), 52, + ACTIONS(3120), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -231529,29 +231196,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [81922] = 4, + [81846] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4065), 1, + anon_sym_COMMA, + STATE(2143), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3406), 3, + ACTIONS(3522), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3408), 52, + ACTIONS(3524), 50, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -231595,27 +231265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [81990] = 4, + [81918] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4067), 1, + anon_sym_COMMA, + STATE(2177), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3371), 3, + ACTIONS(3581), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 52, + ACTIONS(3583), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -231657,20 +231328,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [82058] = 4, + [81990] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(3272), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3412), 52, + ACTIONS(3274), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231723,27 +231395,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82126] = 4, + [82058] = 27, ACTIONS(5), 1, sym_comment, + ACTIONS(3272), 1, + sym__newline_before_do, + ACTIONS(4071), 1, + anon_sym_PIPE, + ACTIONS(4075), 1, + anon_sym_COMMA, + ACTIONS(4083), 1, + anon_sym_when, + ACTIONS(4085), 1, + anon_sym_COLON_COLON, + ACTIONS(4087), 1, + anon_sym_EQ_GT, + ACTIONS(4089), 1, + anon_sym_EQ, + ACTIONS(4099), 1, + anon_sym_in, + ACTIONS(4101), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, + sym__not_in, + STATE(2178), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4073), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4079), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(4091), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4093), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3274), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_do, + ACTIONS(4069), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4095), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4077), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4097), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [82172] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_COMMA, + STATE(2179), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3575), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 52, + ACTIONS(3577), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -231785,20 +231545,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [82194] = 4, + [82244] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3664), 1, + aux_sym__terminator_token1, + ACTIONS(3789), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_when, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + ACTIONS(3803), 1, + anon_sym_EQ_GT, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3815), 1, + anon_sym_in, + ACTIONS(3817), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3797), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3807), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3809), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3787), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3811), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3666), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3813), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [82354] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3414), 3, + ACTIONS(3545), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3416), 52, + ACTIONS(3547), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231851,18 +231697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82262] = 4, + [82422] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3414), 3, + ACTIONS(3551), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3416), 52, + ACTIONS(3553), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231915,18 +231761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82330] = 4, + [82490] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3197), 3, + ACTIONS(3555), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3199), 52, + ACTIONS(3557), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231979,25 +231825,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82398] = 6, + [82558] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(3197), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, + STATE(2382), 1, + sym_do_block, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2972), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3199), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2974), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -232044,23 +231888,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [82470] = 4, + [82628] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + STATE(2400), 1, + sym_do_block, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, + ACTIONS(2968), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2970), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -232109,18 +231955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82538] = 4, + [82698] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3197), 3, + ACTIONS(3559), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3199), 52, + ACTIONS(3561), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232173,18 +232019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82606] = 4, + [82766] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3193), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3195), 52, + ACTIONS(3569), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232237,18 +232083,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82674] = 4, + [82834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3189), 3, + ACTIONS(3571), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3191), 52, + ACTIONS(3573), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232301,18 +232147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82742] = 4, + [82902] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3177), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3179), 52, + ACTIONS(3569), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232365,18 +232211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82810] = 4, + [82970] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3173), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3175), 52, + ACTIONS(3569), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232429,18 +232275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82878] = 4, + [83038] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3169), 3, + ACTIONS(3590), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3171), 52, + ACTIONS(3592), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232493,22 +232339,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [82946] = 4, + [83106] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2650), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(2980), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2982), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -232557,18 +232405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83014] = 4, + [83178] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3430), 3, + ACTIONS(3598), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3432), 52, + ACTIONS(3600), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232621,29 +232469,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83082] = 6, + [83246] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4047), 1, - anon_sym_COMMA, - STATE(2321), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3353), 3, + ACTIONS(3604), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3355), 50, + ACTIONS(3606), 52, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -232687,25 +232533,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83154] = 4, + [83314] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + aux_sym__terminator_token1, + ACTIONS(3342), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 52, - anon_sym_SEMI, + ACTIONS(3344), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232748,28 +232595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83222] = 4, + [83382] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + aux_sym__terminator_token1, + ACTIONS(3360), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 52, - anon_sym_SEMI, + ACTIONS(3362), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232812,28 +232659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83290] = 4, + [83450] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, + aux_sym__terminator_token1, + ACTIONS(3563), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 52, - anon_sym_SEMI, + ACTIONS(3565), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -232876,21 +232723,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83358] = 4, + [83518] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -232943,18 +232789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83426] = 4, + [83586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3263), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3265), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233007,21 +232853,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83494] = 6, + [83654] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(1825), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2970), 51, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233073,82 +232916,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [83566] = 25, + anon_sym_do, + [83722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3703), 1, - aux_sym__terminator_token1, - ACTIONS(3729), 1, - anon_sym_PIPE, - ACTIONS(3739), 1, - anon_sym_when, - ACTIONS(3741), 1, - anon_sym_COLON_COLON, - ACTIONS(3743), 1, - anon_sym_EQ_GT, - ACTIONS(3745), 1, - anon_sym_EQ, - ACTIONS(3755), 1, - anon_sym_in, - ACTIONS(3757), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, - anon_sym_STAR_STAR, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3767), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3737), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3747), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3751), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3705), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3753), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -233158,21 +232969,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [83676] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83790] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_LPAREN, - STATE(1822), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2970), 51, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233224,18 +233044,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [83748] = 4, + anon_sym_do, + [83858] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3231), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233288,28 +233109,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83816] = 6, + [83926] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4049), 1, - anon_sym_COMMA, - STATE(2342), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 4, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 50, - anon_sym_SEMI, + ACTIONS(3520), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -233351,21 +233171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [83888] = 4, + [83994] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3165), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3167), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233418,18 +233237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [83956] = 4, + [84062] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3165), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3167), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233482,29 +233301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84024] = 6, + [84130] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4051), 1, - anon_sym_COMMA, - STATE(2246), 1, - aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(1865), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3237), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3239), 50, + ACTIONS(2982), 51, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -233547,19 +233367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [84096] = 4, + [84202] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(1863), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(2982), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233611,29 +233433,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [84164] = 6, + [84274] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4053), 1, - anon_sym_COMMA, - STATE(2212), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 50, - anon_sym_SEMI, + ACTIONS(3520), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -233675,21 +233495,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84236] = 4, + [84342] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233742,18 +233561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84304] = 4, + [84410] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233806,28 +233625,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84372] = 6, + [84478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4056), 1, - anon_sym_COMMA, - STATE(2215), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 4, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3160), 50, - anon_sym_SEMI, + ACTIONS(3520), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -233869,21 +233687,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84444] = 4, + [84546] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4119), 1, + anon_sym_COMMA, + ACTIONS(4127), 1, + anon_sym_when, + ACTIONS(4129), 1, + anon_sym_COLON_COLON, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, + STATE(2281), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3272), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4125), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4135), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4137), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3274), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [84660] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2970), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233936,18 +233840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84512] = 4, + [84728] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234000,18 +233904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84580] = 4, + [84796] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234064,18 +233968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84648] = 4, + [84864] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3574), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3576), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234128,18 +234032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84716] = 4, + [84932] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3146), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3148), 52, + ACTIONS(3520), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234192,18 +234096,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84784] = 4, + [85000] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(1862), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3146), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3148), 52, + ACTIONS(2982), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234255,19 +234162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [84852] = 4, + [85072] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3289), 3, + ACTIONS(3440), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3291), 52, + ACTIONS(3442), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234320,18 +234226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84920] = 4, + [85140] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3146), 3, + ACTIONS(3444), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3148), 52, + ACTIONS(3446), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234384,18 +234290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [84988] = 4, + [85208] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3142), 3, + ACTIONS(3506), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3144), 52, + ACTIONS(3508), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234448,18 +234354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85056] = 4, + [85276] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3142), 3, + ACTIONS(3494), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3144), 52, + ACTIONS(3496), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234512,18 +234418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85124] = 4, + [85344] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3030), 3, + ACTIONS(3498), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 52, + ACTIONS(3500), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234576,18 +234482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85192] = 4, + [85412] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2990), 3, + ACTIONS(3498), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2992), 52, + ACTIONS(3500), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234640,18 +234546,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85260] = 4, + [85480] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2990), 3, + ACTIONS(3494), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2992), 52, + ACTIONS(3496), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234704,18 +234610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85328] = 4, + [85548] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3030), 3, + ACTIONS(3494), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 52, + ACTIONS(3496), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234768,18 +234674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85396] = 4, + [85616] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3476), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234832,18 +234738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85464] = 4, + [85684] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3490), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3492), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234896,18 +234802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85532] = 4, + [85752] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3484), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3486), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -234960,18 +234866,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85600] = 4, + [85820] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3476), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235022,20 +234931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [85668] = 4, + [85892] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3251), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3253), 52, + ACTIONS(3476), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235088,18 +234996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85736] = 4, + [85960] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3255), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3257), 52, + ACTIONS(3476), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235152,18 +235060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85804] = 4, + [86028] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3259), 3, + ACTIONS(3468), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3261), 52, + ACTIONS(3470), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235216,18 +235124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85872] = 4, + [86096] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3464), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3466), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235280,18 +235188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85940] = 4, + [86164] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3460), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3462), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235344,18 +235252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [86008] = 4, + [86232] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3456), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3458), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235408,22 +235316,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [86076] = 5, + [86300] = 4, ACTIONS(5), 1, sym_comment, - STATE(2888), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2974), 3, + ACTIONS(3452), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2976), 51, - anon_sym_LPAREN, + ACTIONS(3454), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -235470,28 +235378,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86146] = 4, + [86368] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + aux_sym__terminator_token1, + ACTIONS(3436), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 52, - anon_sym_SEMI, + ACTIONS(3438), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235534,28 +235442,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86214] = 4, + [86436] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, + aux_sym__terminator_token1, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 52, - anon_sym_SEMI, + ACTIONS(3108), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235598,28 +235506,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86282] = 4, + [86504] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + aux_sym__terminator_token1, + ACTIONS(3420), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 52, - anon_sym_SEMI, + ACTIONS(3422), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235662,28 +235570,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86350] = 4, + [86572] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + aux_sym__terminator_token1, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 52, - anon_sym_SEMI, + ACTIONS(3418), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235726,21 +235634,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86418] = 4, + [86640] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(3416), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3293), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3295), 52, + ACTIONS(3418), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -235791,31 +235701,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [86486] = 6, + [86712] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_COMMA, - STATE(2246), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3158), 3, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3160), 50, + ACTIONS(3418), 52, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -235859,25 +235766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [86558] = 4, + [86780] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 4, + aux_sym__terminator_token1, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 52, - anon_sym_SEMI, + ACTIONS(3418), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235920,28 +235828,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86626] = 4, + [86848] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + aux_sym__terminator_token1, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 52, - anon_sym_SEMI, + ACTIONS(3076), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -235984,28 +235892,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86694] = 4, + [86916] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 4, + aux_sym__terminator_token1, + ACTIONS(3110), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 52, - anon_sym_SEMI, + ACTIONS(3112), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236048,21 +235956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86762] = 4, + [86984] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3364), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 52, + ACTIONS(3366), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236115,18 +236022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86830] = 4, + [87052] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 4, + ACTIONS(3368), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 52, + ACTIONS(3370), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236179,18 +236086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86898] = 4, + [87120] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 4, + ACTIONS(3106), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 52, + ACTIONS(3108), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236243,18 +236150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [86966] = 4, + [87188] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 4, + ACTIONS(3436), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 52, + ACTIONS(3438), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236307,18 +236214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87034] = 4, + [87256] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(3444), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 52, + ACTIONS(3446), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236371,18 +236278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87102] = 4, + [87324] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 4, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 52, + ACTIONS(3442), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -236435,25 +236342,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87170] = 4, + [87392] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, + aux_sym__terminator_token1, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 52, - anon_sym_SEMI, + ACTIONS(3430), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236496,28 +236404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87238] = 4, + [87460] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3122), 4, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(3428), 2, sym__newline_before_do, sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3124), 52, - anon_sym_SEMI, + ACTIONS(3430), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236560,28 +236471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [87306] = 4, + [87532] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + aux_sym__terminator_token1, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 52, - anon_sym_SEMI, + ACTIONS(3430), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236624,27 +236534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87374] = 6, + [87600] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2670), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 5, + aux_sym__terminator_token1, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, - anon_sym_SEMI, + ACTIONS(3430), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236693,21 +236600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [87446] = 6, + [87668] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 52, - anon_sym_SEMI, + ACTIONS(3424), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3426), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236754,30 +236662,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [87518] = 4, + anon_sym_DOT, + anon_sym_do, + [87736] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + aux_sym__terminator_token1, + ACTIONS(3412), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 52, - anon_sym_SEMI, + ACTIONS(3414), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236820,28 +236726,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87586] = 4, + [87804] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 4, + aux_sym__terminator_token1, + ACTIONS(3408), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 52, - anon_sym_SEMI, + ACTIONS(3410), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236884,28 +236790,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87654] = 4, + [87872] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 4, + aux_sym__terminator_token1, + ACTIONS(3368), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 52, - anon_sym_SEMI, + ACTIONS(3370), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -236948,28 +236854,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87722] = 4, + [87940] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + aux_sym__terminator_token1, + ACTIONS(3364), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 52, - anon_sym_SEMI, + ACTIONS(3366), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237012,28 +236918,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87790] = 4, + [88008] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + aux_sym__terminator_token1, + ACTIONS(3478), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 52, - anon_sym_SEMI, + ACTIONS(3480), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237076,28 +236982,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87858] = 4, + [88076] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 4, + aux_sym__terminator_token1, + ACTIONS(3114), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 52, - anon_sym_SEMI, + ACTIONS(3116), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237140,87 +237046,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [87926] = 27, + [88144] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4066), 1, + ACTIONS(3116), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4070), 1, - anon_sym_COMMA, - ACTIONS(4078), 1, - anon_sym_when, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - ACTIONS(4082), 1, - anon_sym_EQ_GT, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_in, - ACTIONS(4096), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(4102), 1, - sym__not_in, - STATE(2210), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4068), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4074), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4076), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4086), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3287), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_do, - ACTIONS(4064), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4090), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4092), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -237230,25 +237100,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [88040] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88212] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 4, + aux_sym__terminator_token1, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 52, - anon_sym_SEMI, + ACTIONS(2982), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237291,28 +237174,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88108] = 4, + [88280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 4, + aux_sym__terminator_token1, + ACTIONS(3150), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 52, - anon_sym_SEMI, + ACTIONS(3152), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237355,28 +237238,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88176] = 4, + [88348] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 4, + aux_sym__terminator_token1, + ACTIONS(3150), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 52, - anon_sym_SEMI, + ACTIONS(3152), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237419,28 +237302,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88244] = 4, + [88416] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 4, + aux_sym__terminator_token1, + ACTIONS(3150), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 52, - anon_sym_SEMI, + ACTIONS(3152), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237483,28 +237366,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88312] = 4, + [88484] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + aux_sym__terminator_token1, + ACTIONS(3102), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 52, - anon_sym_SEMI, + ACTIONS(3104), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237547,21 +237430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88380] = 4, + [88552] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3050), 3, + ACTIONS(3102), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3052), 52, + ACTIONS(3104), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -237614,24 +237496,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88448] = 6, + [88620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2669), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 5, + aux_sym__terminator_token1, + ACTIONS(3086), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, - anon_sym_SEMI, + ACTIONS(3088), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237680,25 +237560,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [88520] = 4, + [88688] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 4, + aux_sym__terminator_token1, + ACTIONS(3096), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 52, - anon_sym_SEMI, + ACTIONS(3098), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237741,28 +237622,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88588] = 4, + [88756] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 4, + aux_sym__terminator_token1, + ACTIONS(3096), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 52, - anon_sym_SEMI, + ACTIONS(3098), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237805,28 +237686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88656] = 4, + [88824] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 4, + aux_sym__terminator_token1, + ACTIONS(3086), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 52, - anon_sym_SEMI, + ACTIONS(3088), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237869,28 +237750,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88724] = 4, + [88892] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 4, + aux_sym__terminator_token1, + ACTIONS(3212), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 52, - anon_sym_SEMI, + ACTIONS(3214), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -237933,29 +237814,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88792] = 7, + [88960] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4104), 1, - sym__newline_before_do, - STATE(3544), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2980), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3216), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2982), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3218), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -238003,29 +237879,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [88866] = 6, + anon_sym_do, + [89028] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2666), 1, - sym__call_arguments_with_parentheses, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(2176), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 5, + ACTIONS(3522), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, + ACTIONS(3524), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -238067,20 +237943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [88938] = 4, + [89100] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3220), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3222), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -238133,30 +238010,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [89006] = 7, + [89168] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4106), 1, - sym__newline_before_do, - STATE(4013), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2974), 4, + ACTIONS(3404), 4, + sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2976), 49, + ACTIONS(3406), 52, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -238199,22 +238071,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [89080] = 6, + anon_sym_do, + [89236] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, + ACTIONS(3510), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3166), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 52, + anon_sym_LBRACK2, + ACTIONS(3168), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -238261,25 +238136,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [89152] = 5, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [89306] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3512), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238331,20 +238204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89222] = 5, + [89376] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3528), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238396,20 +238269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89292] = 5, + [89446] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(3530), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238461,20 +238334,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89362] = 5, + [89516] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3582), 1, + ACTIONS(3539), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238526,20 +238399,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89432] = 5, + [89586] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3541), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238591,20 +238464,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89502] = 5, + [89656] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3543), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238656,20 +238529,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89572] = 5, + [89726] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3572), 1, + ACTIONS(3549), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238721,20 +238594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89642] = 5, + [89796] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3570), 1, + ACTIONS(3588), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238786,20 +238659,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89712] = 5, + [89866] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3594), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238851,20 +238724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89782] = 5, + [89936] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3596), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238916,20 +238789,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89852] = 5, + [90006] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3556), 1, + ACTIONS(3602), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -238981,20 +238854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89922] = 5, + [90076] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(3608), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239046,20 +238919,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [89992] = 5, + [90146] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3354), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239111,20 +238984,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90062] = 5, + [90216] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3170), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239176,20 +239049,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90132] = 5, + [90286] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3532), 1, + ACTIONS(3472), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239241,20 +239114,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90202] = 5, + [90356] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3482), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239306,20 +239179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90272] = 5, + [90426] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3528), 1, + ACTIONS(3488), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239371,20 +239244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90342] = 5, + [90496] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3526), 1, + ACTIONS(3502), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239436,20 +239309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90412] = 5, + [90566] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3520), 1, + ACTIONS(3504), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -239501,26 +239374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90482] = 5, + [90636] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3518), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3400), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 51, + ACTIONS(3402), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239566,26 +239438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90552] = 4, + [90704] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3396), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3398), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239628,28 +239499,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90620] = 4, + [90772] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3392), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3394), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239692,28 +239563,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90688] = 4, + [90840] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3388), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3390), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239756,27 +239627,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90756] = 6, + [90908] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3384), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 52, + anon_sym_LBRACK2, + ACTIONS(3386), 52, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239819,31 +239691,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [90828] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [90976] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3380), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3382), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239886,28 +239755,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90896] = 4, + [91044] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3376), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3378), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -239950,28 +239819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [90964] = 4, + [91112] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3372), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3374), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240014,28 +239883,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91032] = 4, + [91180] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3356), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 52, + ACTIONS(3358), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240078,28 +239947,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91100] = 4, + [91248] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3602), 3, + ACTIONS(3346), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3604), 52, + ACTIONS(3348), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240142,28 +240011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91168] = 4, + [91316] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3598), 3, + ACTIONS(3208), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3600), 52, + ACTIONS(3210), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240206,28 +240075,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91236] = 5, + [91384] = 4, ACTIONS(5), 1, sym_comment, - STATE(2890), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2980), 3, + ACTIONS(3334), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2982), 51, - anon_sym_LPAREN, + ACTIONS(3336), 52, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240273,84 +240142,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91306] = 27, + [91452] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3328), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4110), 1, + ACTIONS(3330), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4114), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - ACTIONS(4122), 1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4124), 1, anon_sym_COLON_COLON, - ACTIONS(4126), 1, anon_sym_EQ_GT, - ACTIONS(4128), 1, anon_sym_EQ, - ACTIONS(4138), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4140), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, - STATE(2336), 1, - aux_sym__items_with_trailing_separator_repeat1, + anon_sym_do, + [91520] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 2, + ACTIONS(3324), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3326), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4120), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4130), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3287), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -240360,26 +240257,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [91420] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [91588] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3594), 3, + ACTIONS(3320), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3596), 52, + ACTIONS(3322), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240422,28 +240331,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91488] = 4, + [91656] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3281), 3, + ACTIONS(3268), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 52, + ACTIONS(3270), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -240486,31 +240395,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91556] = 6, + [91724] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4150), 1, - anon_sym_COMMA, - STATE(2318), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3281), 3, + ACTIONS(3264), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 50, + ACTIONS(3266), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -240552,20 +240459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91628] = 4, + [91792] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + ACTIONS(3260), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 52, + ACTIONS(3262), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240618,18 +240526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91696] = 4, + [91860] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(3256), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 52, + ACTIONS(3258), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240682,29 +240590,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91764] = 6, + [91928] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4047), 1, - anon_sym_COMMA, - STATE(2318), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3387), 3, + ACTIONS(3252), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 50, + ACTIONS(3254), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -240746,20 +240651,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91836] = 4, + [91996] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 4, + ACTIONS(3248), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 52, + ACTIONS(3250), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240812,18 +240718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91904] = 4, + [92064] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 4, + ACTIONS(3244), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 52, + ACTIONS(3246), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240876,18 +240782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [91972] = 4, + [92132] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 4, + ACTIONS(3240), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 52, + ACTIONS(3242), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -240940,18 +240846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92040] = 4, + [92200] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 4, + ACTIONS(3236), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 52, + ACTIONS(3238), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -241004,18 +240910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92108] = 4, + [92268] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 4, + ACTIONS(3232), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 52, + ACTIONS(3234), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -241068,26 +240974,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92176] = 4, + [92336] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3566), 3, + ACTIONS(3228), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3568), 52, + ACTIONS(3230), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241130,20 +241035,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92244] = 4, + [92404] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 4, + ACTIONS(3224), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 52, + ACTIONS(3226), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -241196,18 +241102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92312] = 4, + [92472] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 4, + ACTIONS(3432), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 52, + ACTIONS(3434), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -241260,18 +241166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92380] = 4, + [92540] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 4, + ACTIONS(3204), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 52, + ACTIONS(3206), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -241324,18 +241230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92448] = 4, + [92608] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 4, + ACTIONS(3200), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 52, + ACTIONS(3202), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -241388,27 +241294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92516] = 5, + [92676] = 4, ACTIONS(5), 1, sym_comment, - STATE(2625), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2974), 5, + ACTIONS(3196), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2976), 50, + ACTIONS(3198), 52, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241451,29 +241355,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92586] = 5, + [92744] = 4, ACTIONS(5), 1, sym_comment, - STATE(2627), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2980), 5, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2982), 50, + ACTIONS(2637), 52, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241516,28 +241419,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92656] = 4, + [92812] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3558), 3, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3560), 52, + ACTIONS(2633), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241580,28 +241483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92724] = 4, + [92880] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, + ACTIONS(3184), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 52, + ACTIONS(3186), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241644,30 +241547,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92792] = 6, + [92948] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4153), 1, - anon_sym_COMMA, - STATE(2215), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + ACTIONS(3188), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 50, + ACTIONS(3190), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -241712,27 +241614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92864] = 6, + [93016] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2913), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3192), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 50, + ACTIONS(3194), 52, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241778,26 +241678,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [92936] = 4, + [93084] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, + ACTIONS(2655), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 52, + ACTIONS(2657), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241840,28 +241739,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93004] = 4, + [93152] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3548), 3, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3550), 52, + ACTIONS(2653), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241904,28 +241803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93072] = 4, + [93220] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 52, + ACTIONS(2629), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -241968,28 +241867,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93140] = 4, + [93288] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2623), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3538), 3, + anon_sym_LBRACK2, + ACTIONS(2625), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93356] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3540), 52, + ACTIONS(3148), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -242032,30 +241995,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93208] = 6, + [93424] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4049), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - STATE(2212), 1, - aux_sym_keywords_repeat1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93492] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 4, + ACTIONS(3158), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 50, + ACTIONS(3160), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -242100,27 +242126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93280] = 6, + [93560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2911), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3162), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 50, + ACTIONS(3164), 52, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -242166,18 +242190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93352] = 4, + [93628] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 4, + ACTIONS(3122), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 52, + ACTIONS(3124), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242230,18 +242254,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93420] = 4, + [93696] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 4, + ACTIONS(3126), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 52, + ACTIONS(3128), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242294,18 +242318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93488] = 4, + [93764] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 4, + ACTIONS(3130), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 52, + ACTIONS(3132), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242358,18 +242382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93556] = 4, + [93832] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 4, + ACTIONS(3134), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 52, + ACTIONS(3136), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242422,18 +242446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93624] = 4, + [93900] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 4, + ACTIONS(3138), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 52, + ACTIONS(3140), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242486,18 +242510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93692] = 4, + [93968] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 4, + ACTIONS(3142), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 52, + ACTIONS(3144), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242550,154 +242574,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93760] = 4, + [94036] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3534), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3536), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [93828] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3285), 3, + ACTIONS(3172), 4, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3287), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [93896] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3522), 3, - sym__newline_before_do, - sym__not_in, anon_sym_LBRACK2, - ACTIONS(3524), 52, + ACTIONS(3174), 52, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -242740,20 +242635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93964] = 4, + [94104] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 4, + ACTIONS(3176), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 52, + ACTIONS(3178), 52, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -242806,23 +242702,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [94032] = 6, + [94172] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2893), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3096), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 50, - anon_sym_RPAREN, + ACTIONS(3098), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -242869,29 +242764,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [94104] = 4, + [94241] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3466), 3, + ACTIONS(3158), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3160), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -242936,25 +242829,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [94172] = 4, + [94308] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 5, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 50, + ACTIONS(3442), 51, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -242999,93 +242891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [94239] = 7, + anon_sym_end, + [94375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4157), 1, - sym__newline_before_do, - STATE(4145), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, + ACTIONS(3444), 4, + sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 48, + ACTIONS(3446), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [94312] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4159), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243129,19 +242953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [94381] = 5, + anon_sym_do, + anon_sym_end, + [94442] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4161), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3404), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3406), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -243150,6 +242974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243193,22 +243018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [94450] = 6, + [94509] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4157), 1, anon_sym_COMMA, - STATE(2360), 1, + STATE(2361), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3118), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 49, + ACTIONS(3120), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -243258,81 +243083,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [94521] = 25, + [94580] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 2, + ACTIONS(3346), 5, sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3348), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4120), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4130), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3160), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -243342,27 +243134,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [94630] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94647] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3080), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4160), 1, + anon_sym_COMMA, + STATE(2363), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3082), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -243405,26 +243209,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [94697] = 4, + anon_sym_do, + anon_sym_end, + [94718] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 3, + ACTIONS(3436), 4, + sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3438), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243468,26 +243272,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [94764] = 4, + anon_sym_do, + anon_sym_end, + [94785] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, + ACTIONS(3106), 4, + sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3108), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243531,27 +243335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [94831] = 6, + anon_sym_do, + anon_sym_end, + [94852] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4146), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3334), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3295), 50, + anon_sym_LBRACK2, + ACTIONS(3336), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243594,29 +243398,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [94902] = 5, + [94919] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3610), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(636), 1, + anon_sym_do, + ACTIONS(4163), 1, sym__newline_before_do, + STATE(4345), 1, + sym_do_block, + ACTIONS(2968), 2, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -243659,27 +243466,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [94971] = 5, + [94992] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3648), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3180), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3182), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243724,26 +243529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [95040] = 5, + [95059] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3646), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3368), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3370), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243788,26 +243591,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [95109] = 5, + anon_sym_end, + [95126] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3644), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3364), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3366), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -243852,28 +243654,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [95178] = 6, + anon_sym_end, + [95193] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(636), 1, + anon_sym_do, + ACTIONS(4165), 1, + sym__newline_before_do, + STATE(4347), 1, + sym_do_block, + ACTIONS(2972), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2974), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -243915,46 +243720,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [95249] = 11, + anon_sym_DOT, + [95266] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3208), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 38, + anon_sym_LBRACK2, + ACTIONS(3210), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -243985,46 +243774,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [95330] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, + anon_sym_do, + [95333] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3440), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 38, + anon_sym_LBRACK2, + ACTIONS(3442), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244055,51 +243837,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - anon_sym_do, - [95411] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + anon_sym_do, + [95400] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3444), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, + anon_sym_LBRACK2, + ACTIONS(3446), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244128,64 +243898,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - anon_sym_do, - [95498] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4138), 1, anon_sym_in, - ACTIONS(4140), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + anon_sym_do, + [95467] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3672), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3166), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 23, + anon_sym_LBRACK2, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244203,56 +243951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - anon_sym_do, - [95589] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4134), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244262,91 +243962,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_do, - [95682] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4138), 1, anon_sym_in, - ACTIONS(4140), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + anon_sym_do, + [95536] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3674), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3166), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4132), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 15, + anon_sym_LBRACK2, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -244356,66 +244007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_DASH_GT, - anon_sym_do, - [95777] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4130), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244425,78 +244026,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_do, - [95876] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, anon_sym_in, - ACTIONS(4140), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + anon_sym_do, + [95605] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3436), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3438), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4130), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244506,90 +244089,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_do, - [95977] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, anon_sym_in, - ACTIONS(4140), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + anon_sym_do, + [95672] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3106), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3108), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4130), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244599,20 +244152,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [96082] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95739] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3676), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -244663,80 +244228,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [96151] = 24, + [95808] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, + ACTIONS(3532), 1, + sym__newline_before_do, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(4122), 1, + ACTIONS(4083), 1, anon_sym_when, - ACTIONS(4124), 1, + ACTIONS(4085), 1, anon_sym_COLON_COLON, - ACTIONS(4126), 1, + ACTIONS(4087), 1, anon_sym_EQ_GT, - ACTIONS(4128), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4138), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4140), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4146), 1, + ACTIONS(4107), 1, anon_sym_DOT, - ACTIONS(4148), 1, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4112), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4118), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4130), 3, + ACTIONS(4081), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4134), 5, + ACTIONS(3534), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4136), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244746,80 +244312,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [96258] = 24, + [95917] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + ACTIONS(3678), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3166), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4130), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244829,31 +244364,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [96365] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4144), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, + anon_sym_do, + [95986] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 3, + ACTIONS(3024), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 47, + anon_sym_LBRACK2, + ACTIONS(3026), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -244894,31 +244435,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [96440] = 7, + [96053] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4166), 1, - sym__newline_before_do, - STATE(4066), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, + ACTIONS(3368), 4, + sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 48, + ACTIONS(3370), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -244962,42 +244501,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96513] = 10, + anon_sym_do, + [96120] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3364), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 39, + anon_sym_LBRACK2, + ACTIONS(3366), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245029,25 +244556,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [96592] = 7, + [96187] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, + ACTIONS(3680), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 49, + anon_sym_LBRACK2, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245095,22 +244626,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_DASH_GT, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [96665] = 5, + [96256] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(3682), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245161,78 +244693,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [96734] = 22, + [96325] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + ACTIONS(3684), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3166), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4130), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -245242,43 +244745,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [96837] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4138), 1, anon_sym_in, - ACTIONS(4140), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4146), 1, anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, + anon_sym_do, + [96394] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3686), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3166), 4, sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4112), 2, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -245288,13 +244809,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 27, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [96463] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3690), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245314,27 +244864,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DASH_GT, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [96926] = 7, + [96532] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4168), 1, - sym__newline_before_do, - STATE(4052), 1, - sym_do_block, + ACTIONS(3692), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, + ACTIONS(3166), 4, + sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 48, + ACTIONS(3168), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -245382,46 +244948,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [96999] = 12, + anon_sym_do, + [96601] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, + ACTIONS(3694), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, + anon_sym_LBRACK2, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -245451,22 +245002,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [97082] = 5, + [96670] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3696), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245517,26 +245077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97151] = 5, + [96739] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3636), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(2637), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245581,20 +245139,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97220] = 5, + anon_sym_end, + [96806] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3698), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245645,25 +245204,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97289] = 7, + [96875] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4170), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3440), 3, sym__newline_before_do, - STATE(4131), 1, - sym_do_block, - ACTIONS(3), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3442), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [96942] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4167), 1, + anon_sym_COMMA, + STATE(2686), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 4, + aux_sym__terminator_token1, + ACTIONS(3522), 3, + sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, + anon_sym_LBRACK2, + ACTIONS(3524), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [97013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(3092), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2988), 48, - anon_sym_SEMI, + ACTIONS(3094), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -245710,27 +245392,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [97362] = 5, + anon_sym_do, + [97080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3444), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3446), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [97147] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3356), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3358), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -245775,25 +245521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97431] = 7, + [97214] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - ACTIONS(4172), 1, - sym__newline_before_do, - STATE(4330), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 4, + ACTIONS(3032), 5, + sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 48, + ACTIONS(3034), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -245841,27 +245583,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [97504] = 5, + anon_sym_do, + [97281] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3630), 1, - aux_sym_sigil_token3, + ACTIONS(4169), 1, + anon_sym_COMMA, + STATE(2494), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3522), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3524), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -245905,22 +245649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97573] = 5, + [97352] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3036), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3038), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -245969,26 +245712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97642] = 5, + [97419] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3626), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3372), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3374), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246033,26 +245775,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97711] = 5, + [97486] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3624), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3376), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3378), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246097,26 +245838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97780] = 5, + [97553] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3622), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3380), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3382), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246161,28 +245901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97849] = 6, + [97620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4174), 1, - anon_sym_COMMA, - STATE(2360), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 4, + ACTIONS(3384), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 49, + ACTIONS(3386), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -246226,26 +245964,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97920] = 5, + [97687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3620), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3388), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3390), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246290,26 +246027,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [97989] = 4, + [97754] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, - sym__not_in, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3171), 52, + ACTIONS(3476), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -246352,31 +246090,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [98056] = 5, + anon_sym_DASH_GT, + anon_sym_do, + [97825] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3618), 1, - aux_sym_sigil_token3, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -246407,40 +246160,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [98125] = 5, + [97906] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3616), 1, - aux_sym_sigil_token3, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -246471,40 +246230,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [98194] = 5, + [97987] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3614), 1, - aux_sym_sigil_token3, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -246533,42 +246303,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_do, + [98074] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4143), 1, anon_sym_in, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4149), 1, anon_sym_STAR_STAR, + ACTIONS(4151), 1, anon_sym_DOT, - anon_sym_do, - [98263] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3612), 1, - aux_sym_sigil_token3, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4113), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 23, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -246586,8 +246378,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [98165] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4139), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246597,31 +246437,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_do, + [98258] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4143), 1, anon_sym_in, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4137), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(4141), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, anon_sym_do, - [98332] = 4, + [98353] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 4, + aux_sym__terminator_token1, + ACTIONS(3436), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 51, - anon_sym_SEMI, + ACTIONS(3438), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -246670,21 +246593,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98399] = 4, + [98420] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 4, + aux_sym__terminator_token1, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 51, - anon_sym_SEMI, + ACTIONS(3108), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -246733,21 +246656,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98466] = 4, + [98487] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 4, + aux_sym__terminator_token1, + ACTIONS(3368), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 51, - anon_sym_SEMI, + ACTIONS(3370), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -246796,21 +246719,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98533] = 4, + [98554] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 4, + aux_sym__terminator_token1, + ACTIONS(3364), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 51, - anon_sym_SEMI, + ACTIONS(3366), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -246859,50 +246782,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [98600] = 4, + [98621] = 20, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3448), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246912,60 +246852,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_do, + [98720] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, anon_sym_in, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4149), 1, anon_sym_STAR_STAR, + ACTIONS(4151), 1, anon_sym_DOT, - anon_sym_do, - [98667] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3444), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -246975,95 +246933,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_do, - [98734] = 27, + [98821] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4178), 1, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, anon_sym_PIPE, - ACTIONS(4182), 1, - anon_sym_COMMA, - ACTIONS(4190), 1, - anon_sym_when, - ACTIONS(4192), 1, + ACTIONS(4129), 1, anon_sym_COLON_COLON, - ACTIONS(4194), 1, + ACTIONS(4131), 1, anon_sym_EQ_GT, - ACTIONS(4196), 1, + ACTIONS(4133), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4143), 1, anon_sym_in, - ACTIONS(4208), 1, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + ACTIONS(4149), 1, anon_sym_STAR_STAR, - ACTIONS(4214), 1, + ACTIONS(4151), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + ACTIONS(4153), 1, sym__not_in, - STATE(2902), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3287), 2, - anon_sym_SEMI, - anon_sym_do, - ACTIONS(4180), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4117), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4186), 2, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4188), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3285), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, + ACTIONS(4113), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4202), 5, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, + ACTIONS(4121), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4204), 9, + ACTIONS(3476), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247073,26 +247026,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [98847] = 4, + [98926] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4171), 1, + anon_sym_COMMA, + STATE(2422), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 4, + ACTIONS(3532), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 51, + ACTIONS(3534), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -247136,48 +247091,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [98914] = 4, + [98997] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4127), 1, + anon_sym_when, + ACTIONS(4129), 1, + anon_sym_COLON_COLON, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3436), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247187,60 +247174,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [99104] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4127), 1, + anon_sym_when, + ACTIONS(4129), 1, + anon_sym_COLON_COLON, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, anon_sym_in, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4149), 1, anon_sym_STAR_STAR, + ACTIONS(4151), 1, anon_sym_DOT, - anon_sym_do, - [98981] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3428), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247250,37 +247257,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99048] = 4, + [99211] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 4, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3424), 51, + ACTIONS(3476), 47, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -247321,33 +247322,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [99115] = 4, + [99286] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 4, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3420), 51, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 39, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -247379,34 +247391,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [99182] = 4, + [99365] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 4, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3404), 51, + ACTIONS(3476), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -247448,29 +247457,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [99249] = 4, + [99438] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4174), 1, + anon_sym_COMMA, + STATE(2428), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 4, + ACTIONS(3118), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 51, + ACTIONS(3120), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -247514,111 +247524,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [99316] = 4, + [99509] = 22, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3385), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99383] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3379), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3381), 51, + ACTIONS(3476), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247628,60 +247605,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [99612] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4143), 1, anon_sym_in, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4149), 1, anon_sym_STAR_STAR, + ACTIONS(4151), 1, anon_sym_DOT, - anon_sym_do, - [99450] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 4, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3377), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -247691,41 +247651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [99517] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3367), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3369), 51, + ACTIONS(3476), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -247745,50 +247677,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, + anon_sym_DASH_GT, + anon_sym_do, + [99701] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4145), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4149), 1, anon_sym_STAR_STAR, + ACTIONS(4151), 1, anon_sym_DOT, - anon_sym_do, - [99584] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 4, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3365), 51, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -247818,31 +247748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [99651] = 4, + [99784] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 4, + ACTIONS(3392), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 51, + ACTIONS(3394), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -247892,19 +247813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [99718] = 4, + [99851] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 4, + aux_sym__terminator_token1, + ACTIONS(2635), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 51, - anon_sym_SEMI, + ACTIONS(2637), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -247953,21 +247873,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [99785] = 4, + [99918] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + aux_sym__terminator_token1, + ACTIONS(2631), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 51, - anon_sym_SEMI, + ACTIONS(2633), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -248016,22 +247936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [99852] = 4, + [99985] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + ACTIONS(2655), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 51, + ACTIONS(2657), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248081,20 +248002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [99919] = 4, + [100052] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 4, + ACTIONS(2651), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 51, + ACTIONS(2653), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248144,20 +248065,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [99986] = 4, + [100119] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 4, + ACTIONS(2627), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 51, + ACTIONS(2629), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248207,20 +248128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100053] = 4, + [100186] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 4, + ACTIONS(2623), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 51, + ACTIONS(2625), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248270,19 +248191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100120] = 4, + [100253] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 4, + aux_sym__terminator_token1, + ACTIONS(2623), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 51, - anon_sym_SEMI, + ACTIONS(2625), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -248331,86 +248251,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100187] = 6, + [100320] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_do, - [100258] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 4, + ACTIONS(2627), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 51, - anon_sym_SEMI, + ACTIONS(2629), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -248459,105 +248314,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100325] = 25, + [100387] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3699), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4112), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4120), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4130), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4132), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3701), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4134), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [100434] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(2651), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_SEMI, + ACTIONS(2653), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -248606,22 +248377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100501] = 4, + [100454] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(2631), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 51, + ACTIONS(2633), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248671,20 +248443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100568] = 4, + [100521] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 4, + ACTIONS(2635), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 51, + ACTIONS(2637), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248734,20 +248506,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100635] = 4, + [100588] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 4, + ACTIONS(3396), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 51, + ACTIONS(3398), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248797,25 +248569,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100702] = 4, + [100655] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + ACTIONS(3048), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 51, + ACTIONS(3050), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -248860,19 +248632,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100769] = 4, + [100722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 4, + aux_sym__terminator_token1, + ACTIONS(2655), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 51, - anon_sym_SEMI, + ACTIONS(2657), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -248921,22 +248692,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [100836] = 4, + [100789] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, + ACTIONS(3400), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 51, + ACTIONS(3402), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -248986,18 +248758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100903] = 4, + [100856] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 4, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 51, + ACTIONS(2637), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249049,85 +248821,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100970] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4174), 1, - anon_sym_COMMA, - STATE(2403), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3353), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3355), 49, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [101041] = 4, + [100923] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(3404), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 51, + ACTIONS(3406), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -249177,26 +248884,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101108] = 4, + [100990] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4177), 1, + anon_sym_COMMA, + STATE(2361), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 4, + ACTIONS(3581), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 51, + ACTIONS(3583), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -249240,18 +248949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101175] = 4, + [101061] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 4, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 51, + ACTIONS(2633), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249303,18 +249012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101242] = 4, + [101128] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 4, + ACTIONS(2623), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 51, + ACTIONS(2625), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249366,25 +249075,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101309] = 4, + [101195] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3012), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 51, + ACTIONS(3014), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249429,25 +249138,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101376] = 4, + [101262] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4151), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 4, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 51, + ACTIONS(3418), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249490,20 +249201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [101443] = 4, + [101333] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 51, + ACTIONS(2629), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249555,25 +249266,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101510] = 4, + [101400] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 4, + ACTIONS(3016), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 51, + ACTIONS(3018), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249618,25 +249329,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101577] = 4, + [101467] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 4, + ACTIONS(3020), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 51, + ACTIONS(3022), 50, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249681,25 +249392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101644] = 4, + [101534] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + ACTIONS(2627), 6, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3215), 51, + ACTIONS(2629), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249744,25 +249455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101711] = 4, + [101601] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, + aux_sym__terminator_token1, + ACTIONS(3048), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 51, - anon_sym_SEMI, + ACTIONS(3050), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249805,27 +249515,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101778] = 4, + [101668] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3700), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249870,25 +249582,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101845] = 4, + [101737] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3688), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -249933,18 +249646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101912] = 4, + [101806] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 4, + ACTIONS(3328), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 51, + ACTIONS(3330), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -249995,27 +249709,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [101979] = 4, + [101873] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3173), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3702), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3175), 52, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250059,26 +249772,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [102046] = 4, + anon_sym_do, + [101942] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2631), 3, + ACTIONS(2651), 4, + sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(2653), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250122,26 +249835,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [102113] = 4, + anon_sym_do, + [102009] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2627), 3, + ACTIONS(2655), 4, + sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 51, + ACTIONS(2657), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250185,20 +249898,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [102180] = 5, + anon_sym_do, + [102076] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3090), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3030), 3, + ACTIONS(3086), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 50, + ACTIONS(3088), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250249,20 +249963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [102249] = 5, + [102145] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(3100), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2990), 3, + ACTIONS(3096), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2992), 50, + ACTIONS(3098), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250313,26 +250027,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [102318] = 4, + [102214] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3247), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3704), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3249), 52, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250376,26 +250090,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [102385] = 4, + anon_sym_do, + [102283] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(3706), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102352] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3708), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3245), 52, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250439,26 +250218,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [102452] = 5, + anon_sym_do, + [102421] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 5, + ACTIONS(2623), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 49, + ACTIONS(2625), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250503,25 +250281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102521] = 5, + anon_sym_end, + [102488] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3610), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(2633), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250567,25 +250345,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102590] = 5, + [102555] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3648), 1, - aux_sym_sigil_token3, + ACTIONS(4179), 1, + anon_sym_COMMA, + STATE(2428), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3581), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3583), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [102626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2627), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2629), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250631,25 +250473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102659] = 5, + [102693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3646), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(2653), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250695,89 +250536,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102728] = 5, + [102760] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3644), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2655), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(2657), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [102797] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3642), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -250823,145 +250599,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102866] = 5, + [102827] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3640), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3664), 1, sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4071), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4083), 1, anon_sym_when, + ACTIONS(4085), 1, anon_sym_COLON_COLON, + ACTIONS(4087), 1, anon_sym_EQ_GT, + ACTIONS(4089), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4099), 1, anon_sym_in, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4105), 1, anon_sym_STAR_STAR, + ACTIONS(4107), 1, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [102935] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3699), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(4066), 1, - anon_sym_PIPE, - ACTIONS(4078), 1, - anon_sym_when, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - ACTIONS(4082), 1, - anon_sym_EQ_GT, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_in, - ACTIONS(4096), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4076), 2, + ACTIONS(4081), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3701), 5, + ACTIONS(3666), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_do, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -250971,21 +250683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [103044] = 5, + [102936] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3710), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3168), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -251034,26 +250747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103113] = 5, + [103005] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3636), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3122), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3124), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251098,26 +250810,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103182] = 5, + [103072] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3634), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3126), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3128), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251162,26 +250873,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103251] = 5, + [103139] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3632), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3130), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3132), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251226,26 +250936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103320] = 5, + [103206] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3630), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3134), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3136), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251290,27 +250999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103389] = 5, + [103273] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3628), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(4181), 1, + anon_sym_COMMA, + STATE(2483), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + aux_sym__terminator_token1, + ACTIONS(3118), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3120), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -251352,23 +251061,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103458] = 5, + [103344] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3626), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2651), 6, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(2653), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -251418,26 +251127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103527] = 5, + [103411] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3624), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3138), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3140), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251482,26 +251190,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103596] = 5, + [103478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3622), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3142), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3144), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251546,21 +251253,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103665] = 5, + [103545] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3620), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2655), 6, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(2657), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -251610,26 +251316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103734] = 5, + [103612] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3618), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3146), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3148), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251674,26 +251379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103803] = 5, + [103679] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3616), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3154), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3156), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251738,26 +251442,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103872] = 5, + [103746] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3614), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3158), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3160), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251802,26 +251505,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [103941] = 5, + [103813] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3612), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3162), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3164), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -251866,22 +251568,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104010] = 4, + [103880] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3172), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3235), 52, + anon_sym_LBRACK2, + ACTIONS(3174), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -251930,21 +251630,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [104077] = 4, + anon_sym_do, + [103947] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3176), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3231), 52, + anon_sym_LBRACK2, + ACTIONS(3178), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -251993,25 +251693,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [104144] = 4, + anon_sym_do, + [104014] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4184), 1, + anon_sym_COMMA, + STATE(2494), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 4, + ACTIONS(3532), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 51, + ACTIONS(3534), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -252055,20 +251759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104211] = 4, + [104085] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 4, + ACTIONS(3192), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 51, + ACTIONS(3194), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252118,20 +251822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104278] = 4, + [104152] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 4, + ACTIONS(3196), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 51, + ACTIONS(3198), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252181,25 +251885,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104345] = 4, + [104219] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4187), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 4, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 51, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252244,25 +251949,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104412] = 4, + [104288] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4189), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 4, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 51, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -252307,20 +252013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104479] = 4, + [104357] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 4, + ACTIONS(3200), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 51, + ACTIONS(3202), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252370,20 +252076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104546] = 4, + [104424] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 4, + ACTIONS(3204), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 51, + ACTIONS(3206), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252433,20 +252139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104613] = 4, + [104491] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 4, + ACTIONS(3432), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 51, + ACTIONS(3434), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252496,20 +252202,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104680] = 4, + [104558] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 4, + ACTIONS(3224), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 51, + ACTIONS(3226), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252559,20 +252265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104747] = 4, + [104625] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 4, + ACTIONS(3228), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 51, + ACTIONS(3230), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252622,20 +252328,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104814] = 4, + [104692] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 4, + ACTIONS(3232), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 51, + ACTIONS(3234), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252685,20 +252391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104881] = 4, + [104759] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 4, + ACTIONS(3236), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 51, + ACTIONS(3238), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252748,20 +252454,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [104948] = 4, + [104826] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 4, + ACTIONS(3240), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 51, + ACTIONS(3242), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252811,20 +252517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105015] = 4, + [104893] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 4, + ACTIONS(3244), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 51, + ACTIONS(3246), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252874,20 +252580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105082] = 4, + [104960] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 4, + ACTIONS(3248), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 51, + ACTIONS(3250), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -252937,25 +252643,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105149] = 4, + [105027] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3316), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4127), 1, + anon_sym_when, + ACTIONS(4129), 1, + anon_sym_COLON_COLON, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 4, + ACTIONS(3532), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4125), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4135), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4137), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3534), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4139), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [105136] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4191), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 51, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253000,20 +252791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105216] = 4, + [105205] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 4, + aux_sym__terminator_token1, + ACTIONS(3404), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 51, - anon_sym_SEMI, + ACTIONS(3406), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253061,22 +252851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105283] = 4, + [105272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + aux_sym__terminator_token1, + ACTIONS(3400), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 51, - anon_sym_SEMI, + ACTIONS(3402), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253124,27 +252914,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105350] = 4, + [105339] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + ACTIONS(3082), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 51, + ACTIONS(3084), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -253189,20 +252980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105417] = 4, + [105406] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 4, + aux_sym__terminator_token1, + ACTIONS(3396), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 51, - anon_sym_SEMI, + ACTIONS(3398), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253250,22 +253040,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105484] = 4, + [105473] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 4, + aux_sym__terminator_token1, + ACTIONS(3392), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 51, - anon_sym_SEMI, + ACTIONS(3394), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253313,22 +253103,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105551] = 4, + [105540] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 4, + aux_sym__terminator_token1, + ACTIONS(3388), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 51, - anon_sym_SEMI, + ACTIONS(3390), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253376,22 +253166,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105618] = 4, + [105607] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 4, + aux_sym__terminator_token1, + ACTIONS(3384), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 51, - anon_sym_SEMI, + ACTIONS(3386), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253439,22 +253229,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105685] = 4, + [105674] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 4, + aux_sym__terminator_token1, + ACTIONS(3380), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 51, - anon_sym_SEMI, + ACTIONS(3382), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253502,22 +253292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105752] = 4, + [105741] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + aux_sym__terminator_token1, + ACTIONS(3376), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_SEMI, + ACTIONS(3378), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253565,22 +253355,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105819] = 4, + [105808] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + aux_sym__terminator_token1, + ACTIONS(3372), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 51, - anon_sym_SEMI, + ACTIONS(3374), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253628,28 +253418,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105886] = 4, + [105875] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4193), 1, + anon_sym_COMMA, + STATE(2422), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 4, + ACTIONS(3522), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 51, + ACTIONS(3524), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253693,20 +253486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [105953] = 4, + [105946] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 4, + aux_sym__terminator_token1, + ACTIONS(3356), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 51, - anon_sym_SEMI, + ACTIONS(3358), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253754,31 +253546,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106020] = 6, + [106013] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4220), 1, - anon_sym_COMMA, - STATE(2522), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 4, + aux_sym__terminator_token1, + ACTIONS(3346), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3160), 49, - anon_sym_SEMI, + ACTIONS(3348), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -253820,21 +253609,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [106091] = 4, + [106080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + aux_sym__terminator_token1, + ACTIONS(3208), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 51, - anon_sym_SEMI, + ACTIONS(3210), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253882,22 +253672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106158] = 4, + [106147] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 4, + aux_sym__terminator_token1, + ACTIONS(3334), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 51, - anon_sym_SEMI, + ACTIONS(3336), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -253945,22 +253735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106225] = 4, + [106214] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, + aux_sym__terminator_token1, + ACTIONS(3328), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 51, - anon_sym_SEMI, + ACTIONS(3330), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254008,22 +253798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106292] = 4, + [106281] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 4, + aux_sym__terminator_token1, + ACTIONS(3324), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 51, - anon_sym_SEMI, + ACTIONS(3326), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254071,22 +253861,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106359] = 4, + [106348] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + aux_sym__terminator_token1, + ACTIONS(3320), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 51, - anon_sym_SEMI, + ACTIONS(3322), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254134,22 +253924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106426] = 4, + [106415] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + ACTIONS(3252), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 51, + ACTIONS(3254), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254199,20 +253990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106493] = 4, + [106482] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 4, + ACTIONS(3256), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 51, + ACTIONS(3258), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254262,20 +254053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106560] = 4, + [106549] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 4, + ACTIONS(3260), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 51, + ACTIONS(3262), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254325,20 +254116,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106627] = 4, + [106616] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3264), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 51, + ACTIONS(3266), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254388,20 +254179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106694] = 4, + [106683] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 4, + aux_sym__terminator_token1, + ACTIONS(3268), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 51, - anon_sym_SEMI, + ACTIONS(3270), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254449,84 +254239,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106761] = 25, + [106750] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3510), 1, - anon_sym_LBRACK2, - ACTIONS(4110), 1, - anon_sym_PIPE, - ACTIONS(4122), 1, - anon_sym_when, - ACTIONS(4124), 1, - anon_sym_COLON_COLON, - ACTIONS(4126), 1, - anon_sym_EQ_GT, - ACTIONS(4128), 1, - anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_in, - ACTIONS(4140), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4142), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4144), 1, - anon_sym_STAR_STAR, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(4148), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3703), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4112), 2, + ACTIONS(3264), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3266), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4118), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4120), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4130), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4132), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4108), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3705), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4134), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4116), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4136), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -254536,19 +254292,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [106870] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [106817] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 4, + aux_sym__terminator_token1, + ACTIONS(3260), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 51, - anon_sym_SEMI, + ACTIONS(3262), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254596,22 +254365,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [106937] = 4, + [106884] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 4, + aux_sym__terminator_token1, + ACTIONS(3256), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 51, - anon_sym_SEMI, + ACTIONS(3258), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254659,22 +254428,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [107004] = 4, + [106951] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + aux_sym__terminator_token1, + ACTIONS(3252), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 51, - anon_sym_SEMI, + ACTIONS(3254), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254722,22 +254491,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [107071] = 4, + [107018] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, + aux_sym__terminator_token1, + ACTIONS(3248), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 51, - anon_sym_SEMI, + ACTIONS(3250), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254785,22 +254554,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [107138] = 4, + [107085] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + aux_sym__terminator_token1, + ACTIONS(3244), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 51, - anon_sym_SEMI, + ACTIONS(3246), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254848,22 +254617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [107205] = 4, + [107152] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + aux_sym__terminator_token1, + ACTIONS(3240), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 51, - anon_sym_SEMI, + ACTIONS(3242), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -254911,29 +254680,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [107272] = 5, + [107219] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 5, + aux_sym__terminator_token1, + ACTIONS(3236), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, - anon_sym_SEMI, + ACTIONS(3238), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -254976,116 +254743,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [107341] = 27, + [107286] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 1, - sym__newline_before_do, - ACTIONS(4225), 1, - anon_sym_PIPE, - ACTIONS(4229), 1, - anon_sym_COMMA, - ACTIONS(4237), 1, - anon_sym_when, - ACTIONS(4239), 1, - anon_sym_COLON_COLON, - ACTIONS(4241), 1, - anon_sym_EQ_GT, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_in, - ACTIONS(4255), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, - anon_sym_STAR_STAR, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(4265), 1, - sym__not_in, - STATE(2908), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4227), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4233), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4235), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3287), 3, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4245), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4247), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4223), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4249), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4251), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [107454] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(588), 1, - anon_sym_do, - ACTIONS(4267), 1, + ACTIONS(3232), 3, sym__newline_before_do, - STATE(4398), 1, - sym_do_block, - ACTIONS(3012), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3014), 49, + ACTIONS(3234), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -255130,24 +254808,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [107527] = 7, + anon_sym_do, + [107353] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - ACTIONS(4269), 1, - sym__newline_before_do, - STATE(4378), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3092), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2988), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3094), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -255194,25 +254870,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [107600] = 7, + anon_sym_do, + [107420] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - ACTIONS(4271), 1, - sym__newline_before_do, - STATE(4373), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3428), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2988), 49, + ACTIONS(3430), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -255261,29 +254936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, - [107673] = 7, + anon_sym_do, + [107491] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - ACTIONS(4273), 1, - sym__newline_before_do, - STATE(4358), 1, - sym_do_block, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3052), 49, + ACTIONS(3228), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3230), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -255328,40 +254999,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [107746] = 12, + anon_sym_do, + [107558] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(3371), 2, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3476), 37, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255399,43 +255071,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_do, - [107829] = 15, + [107641] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -255445,7 +255117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 27, + ACTIONS(3476), 27, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255473,68 +255145,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_do, - [107918] = 22, + [107730] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(4082), 1, + ACTIONS(4087), 1, anon_sym_EQ_GT, - ACTIONS(4084), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 9, + ACTIONS(3476), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255544,7 +255216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_do, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -255554,51 +255226,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [108021] = 7, + [107833] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - ACTIONS(4275), 1, - sym__newline_before_do, - STATE(4355), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4127), 1, + anon_sym_when, + ACTIONS(4129), 1, + anon_sym_COLON_COLON, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3664), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(2988), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4117), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4123), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4125), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4135), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4137), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3666), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4139), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -255608,35 +255310,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [108094] = 7, + [107942] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 49, + ACTIONS(3476), 49, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255686,36 +255376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_do, - [108167] = 10, + [108015] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 39, + ACTIONS(3476), 39, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255755,26 +255445,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, anon_sym_do, - [108246] = 8, + [108094] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 47, + ACTIONS(3476), 47, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255822,72 +255512,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_do, - [108321] = 24, + [108169] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(4078), 1, + ACTIONS(4083), 1, anon_sym_when, - ACTIONS(4080), 1, + ACTIONS(4085), 1, anon_sym_COLON_COLON, - ACTIONS(4082), 1, + ACTIONS(4087), 1, anon_sym_EQ_GT, - ACTIONS(4084), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(3476), 7, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255895,7 +255585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_do, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -255905,72 +255595,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [108428] = 24, + [108276] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(4078), 1, + ACTIONS(4083), 1, anon_sym_when, - ACTIONS(4080), 1, + ACTIONS(4085), 1, anon_sym_COLON_COLON, - ACTIONS(4082), 1, + ACTIONS(4087), 1, anon_sym_EQ_GT, - ACTIONS(4084), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(3476), 7, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255978,7 +255668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_do, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -255988,25 +255678,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [108535] = 4, + [108383] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 5, + aux_sym__terminator_token1, + ACTIONS(3224), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3226), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256049,72 +255738,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [108602] = 23, + [108450] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4085), 1, anon_sym_COLON_COLON, - ACTIONS(4082), 1, + ACTIONS(4087), 1, anon_sym_EQ_GT, - ACTIONS(4084), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 8, + ACTIONS(3476), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256123,7 +255813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_do, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256133,66 +255823,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [108707] = 21, + [108555] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4082), 1, + ACTIONS(4087), 1, anon_sym_EQ_GT, - ACTIONS(4084), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256202,7 +255892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, + ACTIONS(3476), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256213,64 +255903,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_do, - [108808] = 20, + [108656] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4084), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256280,7 +255970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 11, + ACTIONS(3476), 11, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256292,58 +255982,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_do, - [108907] = 18, + [108755] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4088), 3, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256353,7 +256043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 15, + ACTIONS(3476), 15, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256369,54 +256059,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_or, anon_sym_do, - [109002] = 17, + [108850] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4090), 5, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256426,7 +256116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 18, + ACTIONS(3476), 18, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256445,48 +256135,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_and, anon_sym_do, - [109095] = 16, + [108943] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4094), 1, + ACTIONS(4099), 1, anon_sym_in, - ACTIONS(4096), 1, + ACTIONS(4101), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4064), 4, + ACTIONS(4069), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4092), 9, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -256496,7 +256186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 23, + ACTIONS(3476), 23, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256520,43 +256210,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_do, - [109186] = 14, + [109034] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4039), 1, + ACTIONS(4099), 1, + anon_sym_in, + ACTIONS(4101), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, + sym__not_in, + ACTIONS(4073), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4079), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4077), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [109121] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(4094), 1, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4073), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4079), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4077), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4096), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, + anon_sym_do, + [109202] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4103), 1, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, + ACTIONS(4105), 1, anon_sym_STAR_STAR, - ACTIONS(4102), 1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, sym__not_in, - ACTIONS(4068), 2, + ACTIONS(4073), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4074), 2, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4072), 6, + ACTIONS(4077), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, + ACTIONS(3476), 38, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -256592,46 +256420,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_do, - [109273] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4098), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [109283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3432), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3434), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109350] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3206), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109417] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3202), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3196), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3198), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3268), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3270), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4068), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4072), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 38, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3320), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3322), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -256662,46 +256791,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [109354] = 11, + [109685] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4098), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4068), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4074), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4072), 6, + ACTIONS(3082), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3084), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 38, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [109752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3324), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3326), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -256732,26 +256917,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [109435] = 4, + [109819] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3042), 5, + ACTIONS(3328), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 50, + ACTIONS(3330), 51, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256796,25 +256990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109502] = 4, + [109886] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 5, + ACTIONS(3334), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 50, + ACTIONS(3336), 51, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256859,25 +257053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109569] = 4, + [109953] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3022), 5, + ACTIONS(3154), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3024), 50, + ACTIONS(3156), 51, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -256922,26 +257115,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109636] = 4, + anon_sym_end, + [110020] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4177), 1, + anon_sym_COMMA, + STATE(2450), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 5, + ACTIONS(3575), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 50, + ACTIONS(3577), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -256985,20 +257181,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109703] = 4, + [110091] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 5, + ACTIONS(3208), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 50, + ACTIONS(3210), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257048,20 +257244,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109770] = 4, + [110158] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 5, + ACTIONS(3346), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 50, + ACTIONS(3348), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257111,24 +257307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109837] = 4, + [110225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3068), 3, + ACTIONS(3356), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3070), 51, - anon_sym_LPAREN, + ACTIONS(3358), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -257171,23 +257368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [109904] = 4, + [110292] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 5, + ACTIONS(3372), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 50, + ACTIONS(3374), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257237,20 +257433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [109971] = 4, + [110359] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 5, + ACTIONS(3376), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 50, + ACTIONS(3378), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257300,20 +257496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110038] = 4, + [110426] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 5, + ACTIONS(3380), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 50, + ACTIONS(3382), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257363,20 +257559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110105] = 4, + [110493] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 5, + ACTIONS(3384), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 50, + ACTIONS(3386), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257426,20 +257622,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110172] = 4, + [110560] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3789), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_when, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + ACTIONS(3803), 1, + anon_sym_EQ_GT, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3815), 1, + anon_sym_in, + ACTIONS(3817), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, + sym__not_in, + ACTIONS(4195), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 5, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3797), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3807), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3809), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3787), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3811), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4197), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3813), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [110669] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3388), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 50, + ACTIONS(3390), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257489,20 +257769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110239] = 4, + [110736] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 5, + ACTIONS(3392), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 50, + ACTIONS(3394), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257552,20 +257832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110306] = 4, + [110803] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 5, + ACTIONS(3396), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 50, + ACTIONS(3398), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257615,20 +257895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110373] = 4, + [110870] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 5, + ACTIONS(3400), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 50, + ACTIONS(3402), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257678,20 +257958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110440] = 4, + [110937] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 5, + ACTIONS(3404), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 50, + ACTIONS(3406), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257741,25 +258021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110507] = 4, + [111004] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4199), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 5, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 50, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -257804,25 +258085,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110574] = 4, + [111073] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4201), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 5, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 50, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -257867,19 +258149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110641] = 4, + [111142] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 5, + ACTIONS(3324), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 50, + ACTIONS(3326), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -257930,19 +258212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110708] = 4, + [111209] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 5, + ACTIONS(3320), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 50, + ACTIONS(3322), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -257993,25 +258275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110775] = 4, + [111276] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3364), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3366), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -258055,21 +258338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [110842] = 4, + [111343] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 5, + ACTIONS(3184), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 50, + ACTIONS(3186), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258119,20 +258401,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [110909] = 4, + [111410] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3368), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3104), 50, - anon_sym_SEMI, + ACTIONS(3370), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258181,26 +258464,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [110976] = 4, + [111477] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3020), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3116), 50, - anon_sym_SEMI, + ACTIONS(3022), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -258244,21 +258527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [111043] = 4, + [111544] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 5, + aux_sym__terminator_token1, + ACTIONS(3192), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 50, - anon_sym_SEMI, + ACTIONS(3194), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258306,28 +258587,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111110] = 4, + [111611] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4179), 1, + anon_sym_COMMA, + STATE(2473), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 5, + ACTIONS(3575), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 50, + ACTIONS(3577), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258371,25 +258655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [111177] = 4, + [111682] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3096), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3319), 50, - anon_sym_SEMI, + ACTIONS(3098), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -258433,26 +258719,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [111244] = 4, + [111751] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3086), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3323), 50, - anon_sym_SEMI, + ACTIONS(3088), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -258496,21 +258783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [111311] = 4, + [111820] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 5, + aux_sym__terminator_token1, + ACTIONS(3188), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 50, - anon_sym_SEMI, + ACTIONS(3190), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258558,22 +258843,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111378] = 4, + [111887] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 5, + aux_sym__terminator_token1, + ACTIONS(3184), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 50, - anon_sym_SEMI, + ACTIONS(3186), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258621,28 +258906,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111445] = 4, + [111954] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4203), 1, + anon_sym_COMMA, + STATE(2671), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 5, + aux_sym__terminator_token1, + ACTIONS(3575), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 50, - anon_sym_SEMI, + ACTIONS(3577), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -258684,22 +258971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111512] = 4, + [112025] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 5, + aux_sym__terminator_token1, + ACTIONS(3180), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 50, - anon_sym_SEMI, + ACTIONS(3182), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258747,22 +259034,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111579] = 4, + [112092] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 5, + aux_sym__terminator_token1, + ACTIONS(3176), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 50, - anon_sym_SEMI, + ACTIONS(3178), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258810,22 +259097,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111646] = 4, + [112159] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 5, + aux_sym__terminator_token1, + ACTIONS(3172), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 50, - anon_sym_SEMI, + ACTIONS(3174), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258873,27 +259160,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111713] = 4, + [112226] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 5, + ACTIONS(2635), 6, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3361), 50, + ACTIONS(2637), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -258938,25 +259226,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [111780] = 4, + [112293] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 5, + ACTIONS(2631), 6, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3365), 50, + ACTIONS(2633), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259001,20 +259289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [111847] = 4, + [112360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 5, + aux_sym__terminator_token1, + ACTIONS(3162), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 50, - anon_sym_SEMI, + ACTIONS(3164), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259062,27 +259349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111914] = 4, + [112427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 5, + aux_sym__terminator_token1, + ACTIONS(3158), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3160), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259125,28 +259412,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111981] = 4, + [112494] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3084), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3086), 52, - anon_sym_LPAREN, + ACTIONS(3154), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3156), 51, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259189,26 +259475,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [112048] = 4, + anon_sym_do, + [112561] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 5, + aux_sym__terminator_token1, + ACTIONS(3146), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3148), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259251,27 +259538,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112115] = 4, + [112628] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3016), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3377), 50, - anon_sym_SEMI, + ACTIONS(3018), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259315,26 +259604,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112182] = 4, + [112695] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3012), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3381), 50, - anon_sym_SEMI, + ACTIONS(3014), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -259378,21 +259667,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112249] = 4, + [112762] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3228), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3385), 50, - anon_sym_SEMI, + ACTIONS(3230), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259441,27 +259730,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112316] = 4, + [112829] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4205), 1, + anon_sym_COMMA, + STATE(2621), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 5, + ACTIONS(3575), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 50, + ACTIONS(3577), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -259505,20 +259794,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [112383] = 4, + anon_sym_end, + [112900] = 27, ACTIONS(5), 1, sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(4221), 1, + anon_sym_when, + ACTIONS(4223), 1, + anon_sym_COLON_COLON, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + STATE(2718), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 5, + ACTIONS(3272), 2, sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3404), 50, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4219), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3274), 3, anon_sym_SEMI, + anon_sym_do, + anon_sym_end, + ACTIONS(4229), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4231), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3400), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3402), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259567,21 +259944,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112450] = 4, + [113080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3396), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3420), 50, - anon_sym_SEMI, + ACTIONS(3398), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259630,27 +260007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112517] = 4, + [113147] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4205), 1, + anon_sym_COMMA, + STATE(2363), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 5, + ACTIONS(3581), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 50, + ACTIONS(3583), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -259694,20 +260071,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [112584] = 4, + anon_sym_end, + [113218] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3392), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3428), 50, - anon_sym_SEMI, + ACTIONS(3394), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259756,21 +260135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112651] = 4, + [113285] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3388), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3436), 50, - anon_sym_SEMI, + ACTIONS(3390), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259819,21 +260198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112718] = 4, + [113352] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3384), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3440), 50, - anon_sym_SEMI, + ACTIONS(3386), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259882,21 +260261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112785] = 4, + [113419] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3380), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3444), 50, - anon_sym_SEMI, + ACTIONS(3382), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259945,21 +260324,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112852] = 4, + [113486] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3376), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3448), 50, - anon_sym_SEMI, + ACTIONS(3378), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260008,21 +260387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [112919] = 4, + [113553] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 5, + aux_sym__terminator_token1, + ACTIONS(3142), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 50, - anon_sym_SEMI, + ACTIONS(3144), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260070,22 +260447,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112986] = 4, + [113620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 5, + aux_sym__terminator_token1, + ACTIONS(3138), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 50, - anon_sym_SEMI, + ACTIONS(3140), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260133,22 +260510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113053] = 4, + [113687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 5, + aux_sym__terminator_token1, + ACTIONS(3134), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 50, - anon_sym_SEMI, + ACTIONS(3136), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260196,27 +260573,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113120] = 4, + [113754] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 5, + aux_sym__terminator_token1, + ACTIONS(3070), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 50, - anon_sym_SEMI, + ACTIONS(3072), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -260259,29 +260636,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113187] = 6, + [113821] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4277), 1, - anon_sym_COMMA, - STATE(2621), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3158), 3, + ACTIONS(3130), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3160), 49, + ACTIONS(3132), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260326,25 +260702,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113258] = 4, + [113888] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 6, + aux_sym__terminator_token1, + ACTIONS(3126), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 49, - anon_sym_SEMI, + ACTIONS(3128), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -260387,27 +260762,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113325] = 4, + [113955] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 6, + aux_sym__terminator_token1, + ACTIONS(3122), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 49, - anon_sym_SEMI, + ACTIONS(3124), 51, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -260450,29 +260825,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113392] = 6, + [114022] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_COMMA, - STATE(2624), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3281), 3, + ACTIONS(2655), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3283), 49, + ACTIONS(2657), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260517,21 +260891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113463] = 4, + [114089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 5, + aux_sym__terminator_token1, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3096), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2653), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260578,20 +260951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113530] = 4, + [114156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3068), 2, + ACTIONS(3372), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3070), 52, - anon_sym_LPAREN, + ACTIONS(3374), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260600,6 +260973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -260643,21 +261017,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [113597] = 4, + [114223] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 5, + ACTIONS(2623), 6, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3002), 50, + ACTIONS(2625), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -260706,28 +261080,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [113664] = 6, + [114290] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(3356), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3358), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - STATE(2522), 1, - aux_sym__items_with_trailing_separator_repeat1, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [114357] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4249), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260771,27 +261207,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [113735] = 6, + [114426] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4285), 1, - anon_sym_COMMA, - STATE(2624), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3387), 3, + ACTIONS(3440), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 49, - anon_sym_RPAREN, + ACTIONS(3442), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260833,27 +261268,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113806] = 4, + [114493] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3346), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3084), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3086), 51, - anon_sym_LPAREN, + ACTIONS(3348), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -260896,31 +261332,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [113873] = 6, + [114560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4287), 1, - anon_sym_COMMA, - STATE(2631), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 5, + ACTIONS(3444), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3160), 48, + ACTIONS(3446), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -260964,28 +261396,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [113944] = 6, + [114627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_COMMA, - STATE(2632), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(2655), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 48, - anon_sym_SEMI, + ACTIONS(2657), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -261028,18 +261459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [114015] = 4, + [114694] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2627), 2, + ACTIONS(2651), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2629), 52, + ACTIONS(2653), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -261092,7 +261522,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [114082] = 5, + [114761] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4257), 1, + anon_sym_COMMA, + ACTIONS(4265), 1, + anon_sym_when, + ACTIONS(4267), 1, + anon_sym_COLON_COLON, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(4281), 1, + anon_sym_in, + ACTIONS(4283), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4285), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(4291), 1, + sym__not_in, + STATE(2401), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3272), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4255), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4263), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3274), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(4273), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4275), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4251), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4277), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4259), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4279), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114874] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(4293), 1, @@ -261100,13 +261616,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [114943] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3461), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3058), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261156,26 +261736,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114151] = 5, + [115012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4295), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3208), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3210), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -261219,27 +261799,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [114220] = 5, + [115079] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4297), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -261283,22 +261862,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [114289] = 5, + [115146] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4299), 1, - aux_sym_sigil_token3, + STATE(3481), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(2986), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(2988), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261348,21 +261926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114358] = 5, + [115215] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4301), 1, - aux_sym_sigil_token3, + STATE(3475), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(2986), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(2988), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261412,26 +261990,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114427] = 5, + [115284] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4303), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3436), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3438), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -261475,22 +262053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [114496] = 5, + [115351] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4305), 1, + ACTIONS(3672), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261540,21 +262116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114565] = 5, + anon_sym_end, + [115420] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(3674), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261604,21 +262180,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114634] = 5, + anon_sym_end, + [115489] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4309), 1, - aux_sym_sigil_token3, + STATE(3472), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3074), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3076), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261668,21 +262245,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114703] = 5, + [115558] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4311), 1, + ACTIONS(3676), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261732,21 +262308,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114772] = 5, + anon_sym_end, + [115627] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(3678), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261796,21 +262372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114841] = 5, + anon_sym_end, + [115696] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4315), 1, + ACTIONS(3680), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261860,21 +262436,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114910] = 5, + anon_sym_end, + [115765] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(3682), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -261924,22 +262500,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [114979] = 5, + anon_sym_end, + [115834] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4319), 1, - aux_sym_sigil_token3, + ACTIONS(3789), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_when, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + ACTIONS(3803), 1, + anon_sym_EQ_GT, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3815), 1, + anon_sym_in, + ACTIONS(3817), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3819), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 1, + anon_sym_STAR_STAR, + ACTIONS(3823), 1, + anon_sym_DOT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(3827), 1, + sym__not_in, + ACTIONS(4295), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, + ACTIONS(3791), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3795), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3797), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3807), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3809), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3787), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3811), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3793), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4297), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3813), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [115943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(2635), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(2637), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -261987,23 +262648,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [115048] = 5, + [116010] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4321), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3054), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3056), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -262052,21 +262711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115117] = 5, + [116077] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(3684), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -262116,22 +262774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115186] = 5, + anon_sym_end, + [116146] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4325), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(2631), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(2633), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -262179,22 +262838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [115255] = 5, + [116213] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(3686), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -262244,21 +262901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115324] = 5, + anon_sym_end, + [116282] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4329), 1, + ACTIONS(3690), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -262308,21 +262965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115393] = 5, + anon_sym_end, + [116351] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(3692), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -262372,26 +263029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115462] = 4, + anon_sym_end, + [116420] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3694), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2633), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -262435,25 +263092,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [115529] = 4, + anon_sym_do, + anon_sym_end, + [116489] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3696), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 5, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 50, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -262498,25 +263157,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [115596] = 4, + anon_sym_end, + [116558] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4299), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -262559,28 +263219,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115663] = 4, + [116627] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4203), 1, + anon_sym_COMMA, + STATE(2483), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 6, + aux_sym__terminator_token1, + ACTIONS(3581), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 49, - anon_sym_SEMI, + ACTIONS(3583), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -262622,51 +263284,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115730] = 4, + [116698] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2635), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2637), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3668), 1, + sym__newline_before_do, + ACTIONS(4071), 1, anon_sym_PIPE, + ACTIONS(4083), 1, + anon_sym_when, + ACTIONS(4085), 1, + anon_sym_COLON_COLON, + ACTIONS(4087), 1, + anon_sym_EQ_GT, + ACTIONS(4089), 1, + anon_sym_EQ, + ACTIONS(4099), 1, + anon_sym_in, + ACTIONS(4101), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4105), 1, + anon_sym_STAR_STAR, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4111), 1, + sym__not_in, + ACTIONS(4073), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4079), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4091), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4093), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4069), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3670), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4095), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4077), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4097), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -262676,32 +263371,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [115797] = 4, + [116807] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4301), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 6, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 49, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -262748,110 +263432,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [115864] = 25, + [116876] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3703), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, - anon_sym_PIPE, - ACTIONS(4078), 1, - anon_sym_when, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - ACTIONS(4082), 1, - anon_sym_EQ_GT, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_in, - ACTIONS(4096), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(4102), 1, - sym__not_in, - ACTIONS(4068), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4076), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4303), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4086), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4088), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4064), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3705), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4090), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4092), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [115973] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3438), 4, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 51, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -262894,29 +263496,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [116040] = 4, + [116945] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2639), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4305), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2641), 52, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -262959,26 +263560,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [116107] = 4, + anon_sym_do, + [117014] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4307), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -263021,27 +263624,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116174] = 4, + [117083] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4309), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -263084,23 +263688,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116241] = 4, + [117152] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4311), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 50, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -263147,24 +263752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116308] = 5, + [117221] = 5, ACTIONS(5), 1, sym_comment, - STATE(3222), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(4313), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 49, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -263211,30 +263816,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116377] = 6, + [117290] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4333), 1, - anon_sym_COMMA, - STATE(2632), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(4315), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 48, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -263276,24 +263880,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116448] = 5, + [117359] = 5, ACTIONS(5), 1, sym_comment, - STATE(3195), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(4317), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 49, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -263340,24 +263944,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116517] = 5, + [117428] = 5, ACTIONS(5), 1, sym_comment, - STATE(3186), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(4319), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 49, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -263404,24 +264008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116586] = 5, + [117497] = 4, ACTIONS(5), 1, sym_comment, - STATE(3185), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2986), 5, + ACTIONS(3070), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 49, + ACTIONS(3072), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -263470,22 +264074,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [116655] = 5, + [117564] = 5, ACTIONS(5), 1, sym_comment, - STATE(3181), 1, - sym_do_block, - ACTIONS(3), 2, + ACTIONS(4321), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 49, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -263532,114 +264135,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116724] = 27, + [117633] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4337), 1, - anon_sym_PIPE, - ACTIONS(4341), 1, - anon_sym_COMMA, - ACTIONS(4349), 1, - anon_sym_when, - ACTIONS(4351), 1, - anon_sym_COLON_COLON, - ACTIONS(4353), 1, - anon_sym_EQ_GT, - ACTIONS(4355), 1, - anon_sym_EQ, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - STATE(2628), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(4323), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4347), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3287), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_do, - ACTIONS(4357), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4359), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [116837] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2643), 2, + ACTIONS(3166), 3, + sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2645), 52, + ACTIONS(3168), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -263682,28 +264199,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [116904] = 4, + anon_sym_do, + [117702] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4325), 1, + anon_sym_COMMA, + STATE(2686), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2649), 52, + ACTIONS(3532), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3534), 49, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -263745,26 +264264,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [116971] = 4, + anon_sym_do, + [117773] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4328), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -263807,29 +264328,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117038] = 5, + [117842] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4377), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3122), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -263873,27 +264393,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [117107] = 5, + anon_sym_do, + [117909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4379), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3126), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3128), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -263937,19 +264456,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [117176] = 4, + anon_sym_do, + [117976] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 5, + ACTIONS(3130), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 50, + ACTIONS(3132), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -264000,26 +264520,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117243] = 4, + [118043] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3222), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 6, + aux_sym__terminator_token1, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 49, - anon_sym_SEMI, + ACTIONS(2982), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -264063,21 +264585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117310] = 4, + [118114] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4332), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 6, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2629), 49, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -264124,29 +264646,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117377] = 6, + [118183] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4285), 1, - anon_sym_COMMA, - STATE(2629), 1, - aux_sym_keywords_repeat1, + ACTIONS(4334), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3353), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3355), 49, + ACTIONS(3168), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -264191,28 +264713,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117448] = 6, + [118252] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4333), 1, - anon_sym_COMMA, - STATE(2667), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3221), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 5, + aux_sym__terminator_token1, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 48, - anon_sym_SEMI, + ACTIONS(2982), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -264256,19 +264778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117519] = 5, + [118323] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2990), 2, + ACTIONS(3054), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 51, + ACTIONS(3056), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -264320,28 +264841,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [117588] = 5, + [118390] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3030), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3114), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -264384,25 +264905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [117657] = 4, + anon_sym_do, + [118461] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4336), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 51, - anon_sym_SEMI, + ACTIONS(3168), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -264445,27 +264967,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117724] = 4, + [118530] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4338), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -264508,27 +265031,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117791] = 4, + [118599] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4340), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -264571,27 +265095,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117858] = 4, + [118668] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4342), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_SEMI, + ACTIONS(3168), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -264634,21 +265159,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117925] = 4, + [118737] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 5, + ACTIONS(3158), 4, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 50, + ACTIONS(3160), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -264699,19 +265224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117992] = 4, + anon_sym_end, + [118804] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 5, + ACTIONS(3436), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 50, + ACTIONS(3438), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -264762,28 +265288,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118059] = 6, + [118871] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3381), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3106), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, + ACTIONS(3108), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -264827,20 +265351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118130] = 4, + [118938] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2627), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_SEMI, + ACTIONS(2629), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -264889,20 +265414,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [118197] = 4, + [119005] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2623), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3169), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3171), 51, + ACTIONS(2625), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -264950,31 +265476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [118264] = 6, + [119072] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3380), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, + ACTIONS(3698), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265018,24 +265540,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118335] = 4, + anon_sym_end, + [119141] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3700), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3173), 3, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 51, - anon_sym_RPAREN, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265078,31 +265602,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118402] = 6, + anon_sym_end, + [119210] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3377), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, + ACTIONS(2629), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265144,26 +265665,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118473] = 4, + [119277] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3247), 3, - sym__newline_before_do, + ACTIONS(2623), 3, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3249), 51, + ACTIONS(2625), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265206,27 +265730,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [118540] = 4, + [119344] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3243), 3, - sym__newline_before_do, + ACTIONS(2627), 3, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3245), 51, + ACTIONS(2629), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265269,33 +265793,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [118607] = 7, + [119411] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - ACTIONS(4383), 1, - sym__newline_before_do, - STATE(4391), 1, - sym_do_block, - ACTIONS(2974), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2976), 49, - anon_sym_LPAREN, + ACTIONS(2623), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2625), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265337,25 +265854,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [118680] = 4, + anon_sym_do, + [119478] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3688), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_RPAREN, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265398,27 +265918,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118747] = 4, + anon_sym_end, + [119547] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3702), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_RPAREN, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265461,28 +265982,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118814] = 4, + anon_sym_end, + [119616] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3704), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(3166), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 51, + ACTIONS(3168), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265527,25 +266048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [118881] = 4, + anon_sym_end, + [119685] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4344), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 51, - anon_sym_SEMI, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265589,26 +266113,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [118948] = 4, + [119754] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4346), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 51, - anon_sym_SEMI, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265652,26 +266177,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [119015] = 4, + [119823] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4348), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3245), 51, - anon_sym_SEMI, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265715,27 +266241,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [119082] = 4, + [119892] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4350), 1, + anon_sym_COMMA, + STATE(2791), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3522), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 51, + ACTIONS(3524), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -265779,25 +266305,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119149] = 4, + anon_sym_end, + [119963] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4352), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_SEMI, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265841,25 +266370,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [119216] = 4, + [120032] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4354), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 51, - anon_sym_SEMI, + ACTIONS(3168), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -265903,20 +266434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [119283] = 4, + [120101] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + ACTIONS(3368), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 51, + ACTIONS(3370), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265967,19 +266497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [119350] = 4, + [120168] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, + ACTIONS(3364), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 51, + ACTIONS(3366), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -266030,20 +266560,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [119417] = 4, + [120235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2631), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3245), 51, - anon_sym_SEMI, + ACTIONS(2633), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266092,21 +266623,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [119484] = 4, + [120302] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2635), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_SEMI, + ACTIONS(2637), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266155,26 +266686,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [119551] = 4, + [120369] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4356), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_SEMI, + ACTIONS(3168), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266218,22 +266750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [119618] = 4, + [120438] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4358), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3088), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3090), 51, - anon_sym_LPAREN, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266280,22 +266813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [119685] = 5, + [120507] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4360), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266347,24 +266878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [119754] = 4, + [120576] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4362), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2627), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2629), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266407,27 +266941,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [119821] = 4, + [120645] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4364), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2631), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266470,27 +267005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [119888] = 4, + [120714] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4366), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2637), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266533,27 +267069,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [119955] = 4, + [120783] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4368), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2641), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -266596,22 +267133,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [120022] = 5, + [120852] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4370), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266663,23 +267198,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120091] = 5, + [120921] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4389), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(3316), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4115), 1, + anon_sym_PIPE, + ACTIONS(4127), 1, + anon_sym_when, + ACTIONS(4129), 1, + anon_sym_COLON_COLON, + ACTIONS(4131), 1, + anon_sym_EQ_GT, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4143), 1, + anon_sym_in, + ACTIONS(4145), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4147), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4149), 1, + anon_sym_STAR_STAR, + ACTIONS(4151), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3668), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(4117), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4125), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4135), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4137), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4113), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3670), 5, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4139), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4121), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4141), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [121030] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3706), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266727,30 +267344,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120160] = 7, + anon_sym_do, + anon_sym_end, + [121099] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - ACTIONS(4391), 1, - sym__newline_before_do, - STATE(4392), 1, - sym_do_block, - ACTIONS(2980), 2, + ACTIONS(4372), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2982), 49, - anon_sym_LPAREN, + ACTIONS(3168), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266793,19 +267410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120233] = 5, + [121168] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4393), 1, + ACTIONS(4374), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -266857,28 +267474,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120302] = 5, + [121237] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4395), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, + STATE(3147), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2968), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2970), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -266921,23 +267537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120371] = 5, + anon_sym_do, + [121306] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(3708), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -266985,19 +267600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120440] = 5, + anon_sym_do, + anon_sym_end, + [121375] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4399), 1, + ACTIONS(4376), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267049,23 +267666,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120509] = 5, + [121444] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4401), 1, + ACTIONS(3710), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -267113,19 +267728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120578] = 5, + anon_sym_do, + anon_sym_end, + [121513] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4403), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3334), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3336), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267134,6 +267749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -267177,28 +267793,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120647] = 5, + [121580] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4405), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, + STATE(3141), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2972), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2974), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267241,19 +267856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120716] = 5, + anon_sym_do, + [121649] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4407), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3328), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3330), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267262,6 +267876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -267305,19 +267920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120785] = 5, + [121716] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4409), 1, + ACTIONS(4378), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267369,19 +267984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120854] = 5, + [121785] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4411), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3444), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3446), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267390,6 +268003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -267433,19 +268047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120923] = 5, + [121852] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4413), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3440), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3442), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267454,6 +268066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -267497,24 +268110,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [120992] = 4, + [121919] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4380), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2645), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -267557,22 +268173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121059] = 5, + [121988] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4415), 1, + ACTIONS(4382), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267624,19 +268238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [121128] = 5, + [122057] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4417), 1, + ACTIONS(4384), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 51, + ACTIONS(3168), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -267688,27 +268302,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [121197] = 5, + [122126] = 4, ACTIONS(5), 1, sym_comment, - STATE(3289), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2980), 3, + ACTIONS(3122), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2982), 50, - anon_sym_LPAREN, + ACTIONS(3124), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -267752,19 +268364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121266] = 4, + anon_sym_end, + [122193] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3225), 3, + ACTIONS(3126), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 51, - anon_sym_RPAREN, + ACTIONS(3128), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -267812,22 +268425,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [121333] = 4, + anon_sym_end, + [122260] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3221), 3, + ACTIONS(3130), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 51, - anon_sym_RPAREN, + ACTIONS(3132), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -267875,22 +268488,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [121400] = 4, + anon_sym_end, + [122327] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3217), 3, + ACTIONS(3134), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 51, - anon_sym_RPAREN, + ACTIONS(3136), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -267938,22 +268551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [121467] = 4, + anon_sym_end, + [122394] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3213), 3, + ACTIONS(3138), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 51, - anon_sym_RPAREN, + ACTIONS(3140), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268001,30 +268614,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [121534] = 5, + anon_sym_end, + [122461] = 4, ACTIONS(5), 1, sym_comment, - STATE(3253), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2974), 3, + ACTIONS(3142), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2976), 50, - anon_sym_LPAREN, + ACTIONS(3144), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -268068,19 +268679,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [121603] = 4, + anon_sym_end, + [122528] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3324), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3209), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3211), 51, + ACTIONS(3326), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268128,22 +268742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121670] = 4, + [122595] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3320), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3205), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3207), 51, + ACTIONS(3322), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268191,22 +268805,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121737] = 4, + [122662] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3201), 3, + ACTIONS(3162), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 51, - anon_sym_RPAREN, + ACTIONS(3164), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268254,27 +268866,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [121804] = 4, + anon_sym_end, + [122729] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3036), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3185), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3187), 51, + ACTIONS(3038), 52, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -268317,22 +268931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [121871] = 4, + [122796] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3181), 3, + ACTIONS(3134), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 51, - anon_sym_RPAREN, + ACTIONS(3136), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268380,22 +268993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [121938] = 4, + [122863] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3154), 3, + ACTIONS(3172), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 51, - anon_sym_RPAREN, + ACTIONS(3174), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268443,22 +269055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122005] = 4, + anon_sym_end, + [122930] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3150), 3, + ACTIONS(3176), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 51, - anon_sym_RPAREN, + ACTIONS(3178), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268506,22 +269118,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122072] = 4, + anon_sym_end, + [122997] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3138), 3, + ACTIONS(3180), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 51, - anon_sym_RPAREN, + ACTIONS(3182), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268569,22 +269181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122139] = 4, + anon_sym_end, + [123064] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3134), 3, + ACTIONS(3184), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 51, - anon_sym_RPAREN, + ACTIONS(3186), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268632,27 +269244,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122206] = 4, + anon_sym_end, + [123131] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3130), 3, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3132), 51, + ACTIONS(2633), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -268698,24 +269310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122273] = 4, + [123198] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3126), 3, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3128), 51, + ACTIONS(2637), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -268761,19 +269373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122340] = 4, + [123265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3122), 3, + ACTIONS(3188), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 51, - anon_sym_RPAREN, + ACTIONS(3190), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268821,22 +269433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122407] = 4, + anon_sym_end, + [123332] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3192), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, - anon_sym_RPAREN, + ACTIONS(3194), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268884,22 +269496,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122474] = 4, + anon_sym_end, + [123399] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3118), 3, + ACTIONS(3196), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 51, - anon_sym_RPAREN, + ACTIONS(3198), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -268947,22 +269559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122541] = 4, + anon_sym_end, + [123466] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3102), 3, + ACTIONS(3200), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 51, - anon_sym_RPAREN, + ACTIONS(3202), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269010,22 +269622,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122608] = 4, + anon_sym_end, + [123533] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3114), 3, + ACTIONS(3204), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 51, - anon_sym_RPAREN, + ACTIONS(3206), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269073,22 +269685,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122675] = 4, + anon_sym_end, + [123600] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3110), 3, + ACTIONS(3432), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 51, - anon_sym_RPAREN, + ACTIONS(3434), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269136,22 +269748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122742] = 4, + anon_sym_end, + [123667] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3224), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 51, - anon_sym_RPAREN, + ACTIONS(3226), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269199,22 +269811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122809] = 4, + anon_sym_end, + [123734] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3317), 3, + ACTIONS(3228), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 51, - anon_sym_RPAREN, + ACTIONS(3230), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269262,22 +269874,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122876] = 4, + anon_sym_end, + [123801] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3321), 3, + ACTIONS(3232), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 51, - anon_sym_RPAREN, + ACTIONS(3234), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269325,22 +269937,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [122943] = 4, + anon_sym_end, + [123868] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3325), 3, + ACTIONS(3236), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 51, - anon_sym_RPAREN, + ACTIONS(3238), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269388,22 +270000,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123010] = 4, + anon_sym_end, + [123935] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3329), 3, + ACTIONS(3240), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 51, - anon_sym_RPAREN, + ACTIONS(3242), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269451,22 +270063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123077] = 4, + anon_sym_end, + [124002] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3337), 3, + ACTIONS(3244), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 51, - anon_sym_RPAREN, + ACTIONS(3246), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269514,22 +270126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123144] = 4, + anon_sym_end, + [124069] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3341), 3, + ACTIONS(3248), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 51, - anon_sym_RPAREN, + ACTIONS(3250), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269577,22 +270189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123211] = 4, + anon_sym_end, + [124136] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3345), 3, + ACTIONS(3252), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 51, - anon_sym_RPAREN, + ACTIONS(3254), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269640,27 +270252,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123278] = 4, + anon_sym_end, + [124203] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4386), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3349), 3, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 51, - anon_sym_RPAREN, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -269703,27 +270317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123345] = 4, + [124272] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3032), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3359), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3361), 51, + ACTIONS(3034), 52, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -269766,22 +270381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [123412] = 4, + [124339] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3363), 3, + ACTIONS(3256), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 51, - anon_sym_RPAREN, + ACTIONS(3258), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269829,22 +270442,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123479] = 4, + anon_sym_end, + [124406] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3367), 3, + ACTIONS(3260), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 51, - anon_sym_RPAREN, + ACTIONS(3262), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -269892,30 +270505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [123546] = 6, + anon_sym_end, + [124473] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4419), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + ACTIONS(3264), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 49, + ACTIONS(3266), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -269960,90 +270571,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [123617] = 4, + [124540] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2996), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2998), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [123684] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4421), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3158), 4, + ACTIONS(3268), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3160), 49, + ACTIONS(3270), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270088,25 +270634,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [123755] = 4, + [124607] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 4, + ACTIONS(3086), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 51, + ACTIONS(3088), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270151,80 +270698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [123822] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3002), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [123889] = 4, + [124676] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3094), 2, + ACTIONS(3024), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3096), 52, + ACTIONS(3026), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -270277,20 +270761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [123956] = 4, + [124743] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(3320), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(3322), 51, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270340,26 +270823,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [124023] = 4, + anon_sym_end, + [124810] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 3, + ACTIONS(3324), 4, + sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3326), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270403,25 +270885,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [124090] = 4, + anon_sym_do, + anon_sym_end, + [124877] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4388), 1, + anon_sym_COMMA, + STATE(2791), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3375), 3, + ACTIONS(3532), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 51, - anon_sym_RPAREN, + ACTIONS(3534), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -270463,22 +270949,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124157] = 4, + anon_sym_end, + [124948] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3379), 3, + ACTIONS(3328), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 51, - anon_sym_RPAREN, + ACTIONS(3330), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270526,22 +271012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124224] = 4, + anon_sym_end, + [125015] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3383), 3, + ACTIONS(3334), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 51, - anon_sym_RPAREN, + ACTIONS(3336), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270589,27 +271075,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124291] = 4, + anon_sym_end, + [125082] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3395), 3, - sym__newline_before_do, + ACTIONS(2651), 3, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3397), 51, + ACTIONS(2653), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270652,27 +271140,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [124358] = 4, + [125149] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3402), 3, - sym__newline_before_do, + ACTIONS(2655), 3, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3404), 51, + ACTIONS(2657), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270715,22 +271203,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [124425] = 4, + [125216] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3418), 3, + ACTIONS(3208), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 51, - anon_sym_RPAREN, + ACTIONS(3210), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270778,22 +271264,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124492] = 4, + anon_sym_end, + [125283] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3422), 3, + ACTIONS(3346), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 51, - anon_sym_RPAREN, + ACTIONS(3348), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -270841,27 +271327,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124559] = 4, + anon_sym_end, + [125350] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3426), 3, + ACTIONS(3020), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3428), 51, + ACTIONS(3022), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270907,24 +271393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124626] = 4, + [125417] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3434), 3, + ACTIONS(3016), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3436), 51, + ACTIONS(3018), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -270970,19 +271456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [124693] = 4, + [125484] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3438), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3440), 51, + ACTIONS(3124), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271030,84 +271518,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [124760] = 25, + [125551] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_PIPE, - ACTIONS(3739), 1, - anon_sym_when, - ACTIONS(3741), 1, - anon_sym_COLON_COLON, - ACTIONS(3743), 1, - anon_sym_EQ_GT, - ACTIONS(3745), 1, - anon_sym_EQ, - ACTIONS(3755), 1, - anon_sym_in, - ACTIONS(3757), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, - anon_sym_STAR_STAR, - ACTIONS(3763), 1, - anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3767), 1, + ACTIONS(3126), 2, sym__not_in, - ACTIONS(4424), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + aux_sym__terminator_token1, + ACTIONS(3128), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3737), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3747), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3751), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4426), 6, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3753), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -271117,18 +271571,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [124869] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [125618] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(3132), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271137,6 +271601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271180,20 +271645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [124936] = 4, + [125685] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 51, - anon_sym_SEMI, + ACTIONS(3136), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271242,18 +271708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [125003] = 4, + [125752] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3462), 2, + ACTIONS(3138), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3464), 52, + ACTIONS(3140), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271306,26 +271771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125070] = 4, + [125819] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3458), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3460), 52, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3014), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271368,22 +271831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [125137] = 4, + anon_sym_do, + [125886] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3454), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3356), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3456), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3358), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271432,17 +271895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125204] = 4, + anon_sym_do, + anon_sym_end, + [125953] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3450), 2, + ACTIONS(3142), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3452), 52, + ACTIONS(3144), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -271495,19 +271960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125271] = 4, + [126020] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3442), 3, + ACTIONS(3372), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 51, - anon_sym_RPAREN, + ACTIONS(3374), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271555,22 +272020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125338] = 4, + anon_sym_end, + [126087] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3446), 3, + ACTIONS(3376), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 51, - anon_sym_RPAREN, + ACTIONS(3378), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271618,22 +272083,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125405] = 4, + anon_sym_end, + [126154] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3450), 3, + ACTIONS(3380), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 51, - anon_sym_RPAREN, + ACTIONS(3382), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271681,22 +272146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125472] = 4, + anon_sym_end, + [126221] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3454), 3, + ACTIONS(3384), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 51, - anon_sym_RPAREN, + ACTIONS(3386), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271744,22 +272209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125539] = 4, + anon_sym_end, + [126288] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3458), 3, + ACTIONS(3388), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 51, - anon_sym_RPAREN, + ACTIONS(3390), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271807,22 +272272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125606] = 4, + anon_sym_end, + [126355] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3462), 3, + ACTIONS(3392), 4, sym__newline_before_do, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 51, - anon_sym_RPAREN, + ACTIONS(3394), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -271870,27 +272335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125673] = 4, + anon_sym_end, + [126422] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 4, + ACTIONS(3396), 4, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_RPAREN, + ACTIONS(3398), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271933,27 +272398,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125740] = 4, + anon_sym_end, + [126489] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 4, + ACTIONS(3400), 4, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_RPAREN, + ACTIONS(3402), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -271996,24 +272461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [125807] = 4, + anon_sym_end, + [126556] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3446), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3404), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3448), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3406), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -272062,21 +272525,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125874] = 4, + anon_sym_do, + anon_sym_end, + [126623] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3442), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3146), 4, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3444), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3148), 51, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -272125,25 +272588,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [125941] = 4, + anon_sym_do, + anon_sym_end, + [126690] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3008), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 51, - anon_sym_SEMI, + ACTIONS(3010), 52, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272187,18 +272653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [126008] = 4, + [126757] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3434), 2, + ACTIONS(3268), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3436), 52, + ACTIONS(3270), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272251,26 +272716,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [126075] = 4, + [126824] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3426), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3428), 52, + ACTIONS(3008), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3010), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272313,18 +272776,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [126142] = 4, + anon_sym_do, + [126891] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3146), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3424), 52, + ACTIONS(3148), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272377,17 +272842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [126209] = 4, + [126958] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3418), 2, + ACTIONS(3154), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3420), 52, + ACTIONS(3156), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -272440,25 +272905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [126276] = 5, + [127025] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4428), 1, - aux_sym_sigil_token3, + ACTIONS(3158), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3160), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272501,28 +272967,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126345] = 5, + [127092] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_sigil_token3, + ACTIONS(3264), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3266), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272565,28 +273030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126414] = 5, + [127159] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4432), 1, - aux_sym_sigil_token3, + ACTIONS(3260), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3262), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272629,28 +273093,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126483] = 5, + [127226] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4434), 1, - aux_sym_sigil_token3, + ACTIONS(3256), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3258), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272693,28 +273156,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126552] = 5, + [127293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4436), 1, - aux_sym_sigil_token3, + ACTIONS(3252), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3254), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272757,28 +273219,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126621] = 5, + [127360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4438), 1, - aux_sym_sigil_token3, + ACTIONS(3248), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3250), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272821,28 +273282,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126690] = 5, + [127427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4440), 1, - aux_sym_sigil_token3, + ACTIONS(3244), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3246), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272885,28 +273345,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126759] = 5, + [127494] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4442), 1, - aux_sym_sigil_token3, + ACTIONS(3172), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3174), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -272949,28 +273408,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126828] = 5, + [127561] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4444), 1, - aux_sym_sigil_token3, + ACTIONS(3176), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3178), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273013,28 +273471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126897] = 5, + [127628] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4446), 1, - aux_sym_sigil_token3, + ACTIONS(3180), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3182), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273077,28 +273534,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [126966] = 5, + [127695] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4448), 1, - aux_sym_sigil_token3, + ACTIONS(3184), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3186), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273141,28 +273597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127035] = 5, + [127762] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4450), 1, - aux_sym_sigil_token3, + ACTIONS(3188), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3190), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273205,28 +273660,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127104] = 5, + [127829] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4452), 1, - aux_sym_sigil_token3, + ACTIONS(3192), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3194), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273269,28 +273723,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127173] = 5, + [127896] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4454), 1, - aux_sym_sigil_token3, + ACTIONS(3240), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3242), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273333,28 +273786,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127242] = 5, + [127963] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4456), 1, - aux_sym_sigil_token3, + ACTIONS(3236), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3238), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273397,28 +273849,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127311] = 5, + [128030] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4458), 1, - aux_sym_sigil_token3, + ACTIONS(3162), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3164), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273461,28 +273912,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127380] = 5, + [128097] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4460), 1, - aux_sym_sigil_token3, + ACTIONS(3232), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3234), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273525,28 +273975,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127449] = 5, + [128164] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4462), 1, - aux_sym_sigil_token3, + ACTIONS(3224), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3226), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273589,28 +274038,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127518] = 5, + [128231] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4464), 1, - aux_sym_sigil_token3, + ACTIONS(3432), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3434), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273653,28 +274101,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127587] = 5, + [128298] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4466), 1, - aux_sym_sigil_token3, + ACTIONS(3204), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3206), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273717,20 +274164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [127656] = 4, + [128365] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3402), 2, + ACTIONS(3200), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3404), 52, + ACTIONS(3202), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273783,17 +274228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [127723] = 4, + [128432] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3438), 2, + ACTIONS(3196), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3440), 52, + ACTIONS(3198), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -273846,19 +274291,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [127790] = 4, + [128499] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 4, + ACTIONS(3004), 3, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 50, + ACTIONS(3006), 51, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -273909,24 +274354,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [127857] = 4, + [128566] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 4, + ACTIONS(3244), 5, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_RPAREN, + ACTIONS(3246), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -273969,29 +274415,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [127924] = 4, + [128633] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3383), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3385), 52, + ACTIONS(3000), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3002), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274034,27 +274477,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [127991] = 4, + anon_sym_do, + [128700] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3379), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3381), 52, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274097,27 +274540,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [128058] = 4, + anon_sym_do, + [128767] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3375), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3008), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3377), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3010), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274161,18 +274605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128125] = 4, + anon_sym_do, + [128834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 4, + ACTIONS(3268), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 51, + ACTIONS(3270), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -274223,27 +274669,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [128192] = 4, + [128901] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3072), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3264), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3074), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3266), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274287,20 +274731,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128259] = 4, + anon_sym_do, + [128968] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3260), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(3262), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274350,18 +274795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [128326] = 4, + [129035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 4, + ACTIONS(3256), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 51, + ACTIONS(3258), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -274412,27 +274858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [128393] = 4, + [129102] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3098), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3252), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3100), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3254), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274476,26 +274920,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128460] = 4, + anon_sym_do, + [129169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3076), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3248), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3078), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3250), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274539,21 +274983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128527] = 4, + anon_sym_do, + [129236] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3367), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3138), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3369), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3140), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274602,21 +275046,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128594] = 4, + anon_sym_do, + [129303] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3363), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3240), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3365), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3242), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274665,21 +275109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128661] = 4, + anon_sym_do, + [129370] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3359), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3236), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3361), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3238), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274728,21 +275172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128728] = 4, + anon_sym_do, + [129437] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3349), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3232), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3351), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3234), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274791,21 +275235,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128795] = 4, + anon_sym_do, + [129504] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3345), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3228), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3347), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3230), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274854,17 +275298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128862] = 4, + anon_sym_do, + [129571] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3341), 2, + ACTIONS(2996), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3343), 52, + ACTIONS(2998), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -274873,7 +275319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -274917,21 +275362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128929] = 4, + [129638] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3337), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3142), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3339), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3144), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -274980,24 +275424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [128996] = 4, + anon_sym_do, + [129705] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2631), 4, + ACTIONS(3224), 5, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 50, - anon_sym_RPAREN, + ACTIONS(3226), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275040,23 +275486,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [129063] = 4, + [129772] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2627), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2629), 50, + ACTIONS(3002), 52, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -275103,21 +275550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [129130] = 4, + [129839] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(3432), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(3434), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -275168,19 +275614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [129197] = 4, + [129906] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, + ACTIONS(3204), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 51, + ACTIONS(3206), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -275231,22 +275677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [129264] = 4, + [129973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3329), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3200), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3331), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3202), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -275295,89 +275739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [129331] = 4, + anon_sym_do, + [130040] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3325), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3327), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [129398] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3321), 2, + ACTIONS(3024), 3, + sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3323), 52, + ACTIONS(3026), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275420,27 +275800,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [129465] = 4, + anon_sym_do, + [130107] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4391), 1, + sym__newline_before_do, + STATE(4145), 1, + sym_do_block, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2986), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3319), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2988), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275484,26 +275869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [129532] = 4, + [130180] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3108), 52, + ACTIONS(3032), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3034), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275546,27 +275929,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [129599] = 4, + anon_sym_do, + [130247] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3110), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3112), 52, + ACTIONS(3036), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3038), 51, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275609,27 +275992,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [129666] = 4, + anon_sym_do, + [130314] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3114), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4393), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3116), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275673,26 +276058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [129733] = 4, + anon_sym_do, + [130383] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3102), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4395), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3104), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275736,26 +276122,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [129800] = 4, + anon_sym_do, + [130452] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4397), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3120), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275799,22 +276186,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [129867] = 4, + anon_sym_do, + [130521] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3058), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4399), 1, + sym__newline_before_do, + STATE(4087), 1, + sym_do_block, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2986), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3060), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2988), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -275862,24 +276253,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [129934] = 4, + [130594] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4401), 1, + sym__newline_before_do, + STATE(4058), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, - sym__newline_before_do, + ACTIONS(3074), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 51, + ACTIONS(3076), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275923,28 +276319,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - anon_sym_end, - [130001] = 4, + [130667] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3122), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4403), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3124), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -275988,26 +276382,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130068] = 4, + anon_sym_do, + [130736] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4405), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3128), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276051,26 +276446,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130135] = 4, + anon_sym_do, + [130805] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4407), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3132), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276114,26 +276510,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130202] = 4, + anon_sym_do, + [130874] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4409), 1, + sym__newline_before_do, + STATE(4131), 1, + sym_do_block, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2986), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3136), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2988), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276177,81 +276577,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130269] = 25, + [130947] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3188), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3190), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3739), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3741), 1, anon_sym_COLON_COLON, - ACTIONS(3743), 1, anon_sym_EQ_GT, - ACTIONS(3745), 1, anon_sym_EQ, - ACTIONS(3755), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3757), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3759), 1, anon_sym_SLASH_SLASH, - ACTIONS(3761), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3763), 1, anon_sym_DOT, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(3767), 1, - sym__not_in, - ACTIONS(4468), 1, - aux_sym__terminator_token1, + anon_sym_do, + [131014] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(522), 1, + anon_sym_do, + ACTIONS(4411), 1, + sym__newline_before_do, + STATE(4330), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3731), 2, + ACTIONS(3058), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3060), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3735), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3737), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3747), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3749), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3727), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3751), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3733), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4470), 6, - anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - ACTIONS(3753), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -276261,26 +276695,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [130378] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [131087] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3138), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4413), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3140), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276324,21 +276769,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130445] = 4, + anon_sym_do, + [131156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3150), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3196), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3152), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3198), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -276387,26 +276832,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130512] = 4, + anon_sym_do, + [131223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3154), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3004), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3156), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3006), 50, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276450,17 +276895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130579] = 4, + anon_sym_do, + [131290] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3181), 2, + ACTIONS(3070), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3183), 52, + ACTIONS(3072), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -276469,7 +276916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276513,26 +276959,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130646] = 4, + [131357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3185), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3002), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131424] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3239), 1, + sym_do_block, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2986), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3187), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2988), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276576,21 +277085,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130713] = 4, + anon_sym_do, + [131493] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3201), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2998), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3192), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3203), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3194), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -276639,17 +277211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130780] = 4, + anon_sym_do, + [131627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3395), 2, + ACTIONS(3004), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3397), 52, + ACTIONS(3006), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -276658,7 +277232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -276702,19 +277275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [130847] = 4, + [131694] = 5, ACTIONS(5), 1, sym_comment, + STATE(3048), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3042), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3044), 51, - anon_sym_LPAREN, + ACTIONS(2988), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -276765,19 +277339,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [130914] = 4, + [131763] = 27, ACTIONS(5), 1, sym_comment, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4421), 1, + anon_sym_COMMA, + ACTIONS(4429), 1, + anon_sym_when, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, + STATE(2521), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3274), 2, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4427), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3272), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4439), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131876] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3051), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3038), 3, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3040), 51, - anon_sym_LPAREN, + ACTIONS(3076), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -276828,18 +277489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [130981] = 4, + [131945] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3022), 3, + ACTIONS(3054), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3024), 51, + ACTIONS(3056), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -276891,20 +277552,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131048] = 4, + [132012] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4459), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3058), 3, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -276951,22 +277614,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131115] = 4, + [132081] = 5, ACTIONS(5), 1, sym_comment, + STATE(3044), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3076), 3, + ACTIONS(3058), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3078), 51, - anon_sym_LPAREN, + ACTIONS(3060), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277017,17 +277680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131182] = 4, + [132150] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3209), 2, + ACTIONS(3082), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3211), 52, + ACTIONS(3084), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -277036,7 +277700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -277080,19 +277743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [131249] = 4, + [132217] = 5, ACTIONS(5), 1, sym_comment, + STATE(3052), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3098), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3100), 51, - anon_sym_LPAREN, + ACTIONS(2988), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277143,20 +277807,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131316] = 4, + [132286] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4461), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3072), 3, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -277203,27 +277869,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131383] = 4, + [132355] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4463), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 51, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -277268,146 +277935,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [131450] = 4, + [132424] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3094), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3096), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, + ACTIONS(588), 1, anon_sym_do, - [131517] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3205), 2, + ACTIONS(4465), 1, + sym__newline_before_do, + STATE(4214), 1, + sym_do_block, + ACTIONS(2986), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3207), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [131584] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 51, - anon_sym_LPAREN, + ACTIONS(2988), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277457,21 +278001,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [131651] = 4, + [132497] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4467), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2996), 3, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -277518,27 +278063,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131718] = 4, + [132566] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3080), 3, + ACTIONS(3162), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 51, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3164), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -277581,87 +278126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [131785] = 5, + [132633] = 7, ACTIONS(5), 1, sym_comment, - STATE(3052), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2986), 3, + ACTIONS(588), 1, + anon_sym_do, + ACTIONS(4469), 1, sym__newline_before_do, + STATE(4213), 1, + sym_do_block, + ACTIONS(2986), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2988), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [131854] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(3051), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3052), 50, + ACTIONS(2988), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -277711,19 +278194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [131923] = 4, + [132706] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3172), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(3174), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -277774,23 +278257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [131990] = 4, + [132773] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3022), 2, + ACTIONS(588), 1, + anon_sym_do, + ACTIONS(4471), 1, + sym__newline_before_do, + STATE(4208), 1, + sym_do_block, + ACTIONS(3058), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3024), 52, - anon_sym_LPAREN, + ACTIONS(3060), 49, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -277837,22 +278321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [132057] = 4, + [132846] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4473), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3068), 5, + ACTIONS(3166), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3070), 50, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -277901,110 +278387,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [132124] = 25, + [132915] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3158), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4066), 1, - anon_sym_PIPE, - ACTIONS(4078), 1, - anon_sym_when, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - ACTIONS(4082), 1, - anon_sym_EQ_GT, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(4094), 1, - anon_sym_in, - ACTIONS(4096), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4098), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4100), 1, - anon_sym_STAR_STAR, - ACTIONS(4102), 1, - sym__not_in, - ACTIONS(4068), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4074), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4076), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4086), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4088), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4064), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3160), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, + ACTIONS(588), 1, anon_sym_do, - ACTIONS(4090), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4072), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4092), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [132233] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3225), 2, + ACTIONS(4475), 1, + sym__newline_before_do, + STATE(4218), 1, + sym_do_block, + ACTIONS(2986), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3227), 52, + ACTIONS(2988), 49, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -278047,22 +278451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [132300] = 4, + [132988] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3221), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3176), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3223), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3178), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -278111,26 +278515,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [132367] = 4, + anon_sym_do, + [133055] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3217), 2, - sym__not_in, - anon_sym_LBRACK2, + STATE(3047), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3219), 52, + ACTIONS(2986), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2988), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -278173,51 +278577,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [132434] = 6, + anon_sym_do, + [133124] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(4472), 1, - anon_sym_COMMA, - STATE(2631), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3237), 5, + ACTIONS(3272), 1, sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3239), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4479), 1, anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_COMMA, + ACTIONS(4491), 1, + anon_sym_when, + ACTIONS(4493), 1, + anon_sym_COLON_COLON, + ACTIONS(4495), 1, + anon_sym_EQ_GT, + ACTIONS(4497), 1, + anon_sym_EQ, + ACTIONS(4507), 1, + anon_sym_in, + ACTIONS(4509), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4511), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4513), 1, + anon_sym_STAR_STAR, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(4519), 1, + sym__not_in, + STATE(2396), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4481), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4489), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3274), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4477), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4485), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -278227,37 +278666,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [132505] = 4, + [133237] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 5, + ACTIONS(3180), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 50, + ACTIONS(3182), 50, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -278302,83 +278729,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [132572] = 27, + [133304] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4476), 1, - anon_sym_PIPE, - ACTIONS(4480), 1, - anon_sym_COMMA, - ACTIONS(4488), 1, - anon_sym_when, - ACTIONS(4490), 1, - anon_sym_COLON_COLON, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - ACTIONS(4494), 1, - anon_sym_EQ, - ACTIONS(4504), 1, - anon_sym_in, - ACTIONS(4506), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(588), 1, + anon_sym_do, + ACTIONS(4521), 1, + sym__newline_before_do, + STATE(4217), 1, + sym_do_block, + ACTIONS(3074), 2, sym__not_in, - STATE(2772), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(3076), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4486), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3287), 3, - anon_sym_SEMI, - anon_sym_do, - anon_sym_end, - ACTIONS(4496), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4500), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4502), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -278388,18 +278783,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [132685] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [133377] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 4, + ACTIONS(3146), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 51, + ACTIONS(3148), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -278450,28 +278858,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [132752] = 6, + [133444] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4516), 1, - anon_sym_COMMA, - STATE(2915), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 4, + ACTIONS(3184), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 49, + ACTIONS(3186), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -278515,26 +278921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [132823] = 5, + [133511] = 4, ACTIONS(5), 1, sym_comment, - STATE(3044), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3012), 3, + ACTIONS(3188), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 50, - anon_sym_RPAREN, + ACTIONS(3190), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -278577,30 +278982,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [132892] = 6, + [133578] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4518), 1, - anon_sym_COMMA, - STATE(2621), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3237), 3, + ACTIONS(3154), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 49, - anon_sym_RPAREN, + ACTIONS(3156), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -278642,22 +279045,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [132963] = 4, + [133645] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3006), 3, + ACTIONS(3102), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3008), 51, - anon_sym_LPAREN, + ACTIONS(3104), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -278708,21 +279109,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [133030] = 4, + [133711] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + anon_sym_end, + [133803] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3084), 5, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3086), 50, + ACTIONS(3520), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -278771,26 +279246,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133097] = 5, + [133869] = 4, ACTIONS(5), 1, sym_comment, - STATE(3048), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2986), 3, + ACTIONS(3008), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2988), 50, - anon_sym_RPAREN, + ACTIONS(3010), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -278832,24 +279306,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [133166] = 4, + [133935] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3088), 5, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3090), 50, + ACTIONS(3520), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -278898,26 +279370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133233] = 5, + [134001] = 4, ACTIONS(5), 1, sym_comment, - STATE(3047), 1, - sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2986), 3, + ACTIONS(3320), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2988), 50, - anon_sym_RPAREN, + ACTIONS(3322), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -278959,30 +279430,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [133302] = 4, + [134067] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3213), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3215), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3324), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3326), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -279025,27 +279493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [133369] = 6, + anon_sym_do, + [134133] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4516), 1, - anon_sym_COMMA, - STATE(2916), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 4, + aux_sym__terminator_token1, + ACTIONS(3328), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 49, - anon_sym_SEMI, + ACTIONS(3330), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -279089,28 +279556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [133440] = 6, + [134199] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4520), 1, - anon_sym_COMMA, - STATE(2916), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + aux_sym__terminator_token1, + ACTIONS(3334), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 49, - anon_sym_SEMI, + ACTIONS(3336), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -279154,28 +279618,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [133511] = 4, + [134265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3042), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3044), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3208), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3210), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -279218,27 +279679,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [133578] = 4, + anon_sym_do, + [134331] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3038), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3040), 52, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3346), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3348), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -279281,102 +279741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [133645] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4504), 1, - anon_sym_in, - ACTIONS(4506), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4514), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4478), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4498), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4474), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4500), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4502), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, anon_sym_do, - anon_sym_end, - [133739] = 5, + [134397] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3840), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3356), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3358), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -279418,20 +279802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [133807] = 4, + anon_sym_do, + [134463] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3130), 3, + ACTIONS(3372), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3132), 50, + ACTIONS(3374), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279482,18 +279866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133873] = 4, + [134529] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3134), 3, + ACTIONS(3376), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3136), 50, + ACTIONS(3378), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279544,18 +279928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [133939] = 4, + [134595] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3138), 3, + ACTIONS(3380), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3140), 50, + ACTIONS(3382), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279606,18 +279990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134005] = 4, + [134661] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3150), 3, + ACTIONS(3384), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3152), 50, + ACTIONS(3386), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279668,18 +280052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134071] = 4, + [134727] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3154), 3, + ACTIONS(3388), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3156), 50, + ACTIONS(3390), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279730,18 +280114,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134137] = 4, + [134793] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3181), 3, + ACTIONS(3392), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3183), 50, + ACTIONS(3394), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279792,18 +280176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134203] = 4, + [134859] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3185), 3, + ACTIONS(3396), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3187), 50, + ACTIONS(3398), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279854,18 +280238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134269] = 4, + [134925] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3201), 3, + ACTIONS(3400), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3203), 50, + ACTIONS(3402), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279916,18 +280300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134335] = 4, + [134991] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3205), 3, + ACTIONS(3404), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3207), 50, + ACTIONS(3406), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -279978,23 +280362,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134401] = 4, + [135057] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3209), 3, + ACTIONS(3012), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3211), 50, + ACTIONS(3014), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -280040,23 +280424,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134467] = 4, + [135123] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3213), 3, + ACTIONS(3016), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3215), 50, + ACTIONS(3018), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -280102,23 +280486,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134533] = 4, + [135189] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3217), 3, + ACTIONS(3020), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3219), 50, + ACTIONS(3022), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -280164,25 +280548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134599] = 4, + [135255] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3221), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 50, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280226,25 +280610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134665] = 4, + [135321] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3225), 3, + ACTIONS(3220), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3227), 50, + ACTIONS(3222), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280286,27 +280669,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134731] = 4, + [135387] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3022), 3, + ACTIONS(3216), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3024), 50, - anon_sym_LPAREN, + ACTIONS(3218), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280348,27 +280731,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134797] = 4, + [135453] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3038), 3, + ACTIONS(3212), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3040), 50, - anon_sym_LPAREN, + ACTIONS(3214), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280410,27 +280793,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [134863] = 4, + [135519] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3042), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 50, - anon_sym_LPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -280474,81 +280858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [134929] = 4, + [135585] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3259), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3261), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [134995] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3255), 3, - sym__newline_before_do, - sym__not_in, anon_sym_LBRACK2, - ACTIONS(3257), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -280595,22 +280918,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135061] = 4, + [135651] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3251), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -280657,87 +280980,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135127] = 29, + [135717] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_end, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4523), 1, + ACTIONS(9), 1, aux_sym__terminator_token1, - ACTIONS(4526), 1, + ACTIONS(1721), 1, + ts_builtin_sym_end, + ACTIONS(4523), 1, anon_sym_SEMI, - ACTIONS(4531), 1, + ACTIONS(4527), 1, anon_sym_PIPE, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4543), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4545), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4547), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4557), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4559), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + ACTIONS(4559), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, sym__not_in, - STATE(348), 1, + STATE(354), 1, sym__terminator, - STATE(1032), 1, + STATE(1031), 1, aux_sym__terminator_repeat1, - STATE(5737), 1, + STATE(5429), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + ACTIONS(4529), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4537), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4539), 2, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4549), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, + ACTIONS(4525), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4553), 5, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, + ACTIONS(4531), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4555), 9, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -280747,20 +281069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [135243] = 4, + [135833] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3574), 5, + aux_sym__terminator_token1, + ACTIONS(3086), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3576), 49, - anon_sym_SEMI, + ACTIONS(3088), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -280807,20 +281128,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135309] = 4, + [135899] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3030), 3, + ACTIONS(3096), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 50, + ACTIONS(3098), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280871,18 +281193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135375] = 4, + [135965] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2990), 3, + ACTIONS(3096), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2992), 50, + ACTIONS(3098), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280933,18 +281255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135441] = 4, + [136031] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2990), 3, + ACTIONS(3086), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2992), 50, + ACTIONS(3088), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -280995,18 +281317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135507] = 4, + [136097] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3030), 3, + ACTIONS(3102), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 50, + ACTIONS(3104), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281057,18 +281379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135573] = 4, + [136163] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3142), 3, + ACTIONS(3150), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3144), 50, + ACTIONS(3152), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281119,18 +281441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135639] = 4, + [136229] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3142), 3, + ACTIONS(3150), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3144), 50, + ACTIONS(3152), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281181,18 +281503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135705] = 4, + [136295] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3146), 3, + ACTIONS(3150), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3148), 50, + ACTIONS(3152), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281243,19 +281565,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135771] = 4, + [136361] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3146), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -281302,21 +281625,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135837] = 4, + [136427] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1525), 1, + ts_builtin_sym_end, + ACTIONS(4527), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_when, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(4567), 1, + anon_sym_SEMI, + STATE(424), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5795), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136543] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3146), 3, + ACTIONS(2980), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3148), 50, + ACTIONS(2982), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281367,19 +281776,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135903] = 4, + [136609] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2968), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -281426,30 +281836,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [135969] = 6, + [136675] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4569), 1, - anon_sym_COMMA, - STATE(2953), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3281), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 48, - anon_sym_LBRACE, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -281493,18 +281900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136039] = 4, + [136741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3165), 3, + ACTIONS(3114), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3167), 50, + ACTIONS(3116), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281555,18 +281962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136105] = 4, + [136807] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3165), 3, + ACTIONS(3114), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3167), 50, + ACTIONS(3116), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281617,18 +282024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136171] = 4, + [136873] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3263), 3, + ACTIONS(3478), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3265), 50, + ACTIONS(3480), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -281679,27 +282086,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136237] = 6, + [136939] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4572), 1, - anon_sym_COMMA, - STATE(2953), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3387), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 48, - anon_sym_LBRACE, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -281743,27 +282148,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136307] = 6, + [137005] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4572), 1, - anon_sym_COMMA, - STATE(2957), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3353), 3, + ACTIONS(2635), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3355), 48, - anon_sym_LBRACE, + ACTIONS(2637), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -281807,19 +282210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136377] = 4, + [137071] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2627), 4, + ACTIONS(2631), 4, sym__newline_before_do, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2629), 49, + ACTIONS(2633), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -281869,25 +282272,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [136443] = 4, + [137137] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2631), 4, + ACTIONS(3408), 3, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 49, + ACTIONS(3410), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -281929,86 +282331,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136509] = 29, + [137203] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(1721), 1, - ts_builtin_sym_end, - ACTIONS(4574), 1, - anon_sym_SEMI, - ACTIONS(4578), 1, + ACTIONS(3412), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3414), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4588), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4590), 1, anon_sym_COLON_COLON, - ACTIONS(4592), 1, anon_sym_EQ_GT, - ACTIONS(4594), 1, anon_sym_EQ, - ACTIONS(4604), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4606), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4612), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, - STATE(354), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(5429), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, + anon_sym_do, + [137269] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4580), 2, + aux_sym__terminator_token1, + ACTIONS(3424), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3426), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4586), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4596), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4602), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [137335] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3428), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3430), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -282018,80 +282507,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [136625] = 25, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [137401] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4476), 1, + ACTIONS(3664), 1, + sym__newline_before_do, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4488), 1, + ACTIONS(4491), 1, anon_sym_when, - ACTIONS(4490), 1, + ACTIONS(4493), 1, anon_sym_COLON_COLON, - ACTIONS(4492), 1, + ACTIONS(4495), 1, anon_sym_EQ_GT, - ACTIONS(4494), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4504), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3158), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4486), 2, + ACTIONS(4489), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4496), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, - anon_sym_SEMI, + ACTIONS(3666), 4, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_do, - anon_sym_end, - ACTIONS(4474), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -282101,18 +282603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [136733] = 4, + [137509] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3177), 3, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3179), 50, + ACTIONS(3430), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -282163,18 +282665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136799] = 4, + [137575] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(3428), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3189), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3191), 50, + ACTIONS(3430), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -282223,20 +282728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [136865] = 4, + [137645] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3193), 3, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3195), 50, + ACTIONS(3430), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -282287,18 +282791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136931] = 4, + [137711] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3197), 3, + ACTIONS(3272), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3199), 50, + ACTIONS(3274), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -282349,102 +282853,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [136997] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3699), 1, - sym__newline_before_do, - ACTIONS(4225), 1, - anon_sym_PIPE, - ACTIONS(4237), 1, - anon_sym_when, - ACTIONS(4239), 1, - anon_sym_COLON_COLON, - ACTIONS(4241), 1, - anon_sym_EQ_GT, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_in, - ACTIONS(4255), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, - anon_sym_STAR_STAR, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(4265), 1, - sym__not_in, - ACTIONS(4227), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4233), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4235), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4245), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4247), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3701), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4223), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4249), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4251), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [137105] = 4, + [137777] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -282491,86 +282913,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [137171] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4261), 1, anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(3197), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_do, - [137241] = 4, + [137843] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -282617,25 +282975,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [137307] = 6, + [137909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2357), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3518), 5, + sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 48, + ACTIONS(3520), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -282684,109 +283038,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [137377] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1303), 1, - anon_sym_end, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4531), 1, - anon_sym_PIPE, - ACTIONS(4541), 1, - anon_sym_when, - ACTIONS(4543), 1, - anon_sym_COLON_COLON, - ACTIONS(4545), 1, - anon_sym_EQ_GT, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, - sym__not_in, - ACTIONS(4618), 1, - aux_sym__terminator_token1, - ACTIONS(4621), 1, - anon_sym_SEMI, - STATE(349), 1, - sym__terminator, - STATE(1032), 1, - aux_sym__terminator_repeat1, - STATE(5638), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4539), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4549), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4551), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [137493] = 6, + anon_sym_do, + [137975] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2395), 1, - sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3518), 5, + sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 48, + ACTIONS(3520), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -282835,27 +283100,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [137563] = 6, + anon_sym_do, + [138041] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4624), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3281), 3, + ACTIONS(3110), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3283), 48, + ACTIONS(3112), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -282897,29 +283160,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [137633] = 6, + [138107] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4627), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3158), 3, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3160), 48, + ACTIONS(3076), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -282961,25 +283222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [137703] = 6, + [138173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2384), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3416), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2970), 48, - anon_sym_SEMI, + ACTIONS(3418), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283026,23 +283284,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [137773] = 6, + anon_sym_do, + [138239] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + aux_sym__terminator_token1, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3373), 49, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3418), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283089,24 +283346,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - [137843] = 6, + [138305] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4512), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(3416), 2, sym__newline_before_do, sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 49, - anon_sym_SEMI, + ACTIONS(3418), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283153,20 +283411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_do, - anon_sym_end, - [137913] = 4, + [138375] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3277), 3, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3279), 50, + ACTIONS(3418), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -283217,22 +283475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [137979] = 6, + [138441] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + aux_sym__terminator_token1, + ACTIONS(3420), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3199), 49, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3422), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283279,27 +283534,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - [138049] = 4, + [138507] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3122), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 50, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -283343,19 +283599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138115] = 4, + [138573] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283402,30 +283659,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138181] = 6, + [138639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4630), 1, - anon_sym_COMMA, - STATE(2983), 1, - aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3158), 3, + ACTIONS(2623), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3160), 48, - anon_sym_LBRACE, + ACTIONS(2625), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -283469,19 +283723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138251] = 4, + [138705] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3058), 3, + ACTIONS(2627), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3060), 50, - anon_sym_LPAREN, + ACTIONS(2629), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283531,19 +283785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138317] = 4, + [138771] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283590,22 +283845,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138383] = 4, + [138837] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283652,24 +283907,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138449] = 6, + [138903] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(3293), 2, - sym__newline_before_do, - sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 49, + ACTIONS(3452), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3454), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -283718,19 +283969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [138519] = 4, + [138969] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3293), 3, + ACTIONS(3456), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3295), 50, + ACTIONS(3458), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -283781,19 +284033,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138585] = 4, + [139035] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 50, - anon_sym_RPAREN, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -283840,30 +284093,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [138651] = 6, + [139101] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4633), 1, - anon_sym_COMMA, - STATE(2983), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3237), 3, + ACTIONS(3518), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 48, - anon_sym_LBRACE, + ACTIONS(3520), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -283907,110 +284157,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138721] = 27, + [139167] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4637), 1, - anon_sym_PIPE, - ACTIONS(4641), 1, - anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_when, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - STATE(2990), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3287), 2, - anon_sym_LBRACE, - anon_sym_do, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4659), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [138833] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 4, + ACTIONS(3563), 5, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 49, + ACTIONS(3565), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284054,25 +284219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138899] = 4, + [139233] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2639), 4, + ACTIONS(3360), 5, sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 49, + ACTIONS(3362), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284116,19 +284281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [138965] = 4, + [139299] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 5, + ACTIONS(3342), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 49, + ACTIONS(3344), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -284178,19 +284343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139031] = 4, + [139365] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3574), 3, + ACTIONS(3604), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3576), 50, - anon_sym_RPAREN, + ACTIONS(3606), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284237,22 +284403,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [139097] = 4, + [139431] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3301), 3, + ACTIONS(3598), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3303), 50, - anon_sym_RPAREN, + ACTIONS(3600), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284299,22 +284465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [139163] = 4, + [139497] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3305), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3307), 50, - anon_sym_RPAREN, + aux_sym__terminator_token1, + ACTIONS(3476), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284361,21 +284529,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [139229] = 4, + anon_sym_end, + [139567] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3264), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2649), 50, + ACTIONS(3266), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284426,25 +284593,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139295] = 4, + [139633] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 3, + ACTIONS(3452), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 50, + ACTIONS(3454), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284488,18 +284655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139361] = 4, + [139699] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 3, + ACTIONS(3260), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2641), 50, + ACTIONS(3262), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284550,25 +284717,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139427] = 4, + [139765] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2635), 3, + ACTIONS(3590), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 50, + ACTIONS(3592), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284612,18 +284779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139493] = 4, + [139831] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2631), 3, + ACTIONS(3256), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2633), 50, + ACTIONS(3258), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284674,25 +284841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139559] = 4, + [139897] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2627), 3, + ACTIONS(3567), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 50, + ACTIONS(3569), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284736,19 +284903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139625] = 4, + [139963] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3289), 3, + ACTIONS(3567), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 50, - anon_sym_RPAREN, + ACTIONS(3569), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284795,21 +284963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [139691] = 4, + [140029] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3252), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3231), 50, + ACTIONS(3254), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -284860,25 +285027,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139757] = 4, + [140095] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3571), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 50, + ACTIONS(3573), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284922,25 +285089,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139823] = 4, + [140161] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3243), 3, + ACTIONS(3567), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 50, + ACTIONS(3569), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -284984,25 +285151,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139889] = 4, + [140227] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3247), 3, + ACTIONS(3559), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 50, + ACTIONS(3561), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285046,18 +285213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [139955] = 4, + [140293] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3173), 3, + ACTIONS(3248), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3175), 50, + ACTIONS(3250), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -285108,25 +285275,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140021] = 4, + [140359] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3169), 3, + ACTIONS(3460), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3171), 50, + ACTIONS(3462), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285168,22 +285334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140087] = 4, + [140425] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 5, + aux_sym__terminator_token1, + ACTIONS(3464), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 49, - anon_sym_SEMI, + ACTIONS(3466), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -285230,22 +285396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140153] = 4, + [140491] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3255), 5, + aux_sym__terminator_token1, + ACTIONS(3468), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3257), 49, - anon_sym_SEMI, + ACTIONS(3470), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -285292,19 +285458,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140219] = 4, + [140557] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3030), 2, + ACTIONS(3571), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 51, + ACTIONS(3573), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -285356,17 +285523,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [140285] = 4, + [140623] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(3567), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 51, + ACTIONS(3569), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -285418,25 +285585,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [140351] = 4, + [140689] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 5, + aux_sym__terminator_token1, + ACTIONS(3244), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, - anon_sym_SEMI, + ACTIONS(3246), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285480,20 +285647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140417] = 4, + [140755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 5, + aux_sym__terminator_token1, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 49, - anon_sym_SEMI, + ACTIONS(3476), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -285540,27 +285706,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140483] = 4, + [140821] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 5, + aux_sym__terminator_token1, + ACTIONS(3240), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 49, - anon_sym_SEMI, + ACTIONS(3242), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285604,24 +285771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140549] = 4, + [140887] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3309), 3, + ACTIONS(3236), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3311), 50, - anon_sym_RPAREN, + ACTIONS(3238), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285663,27 +285831,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140615] = 4, + [140953] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3313), 3, + ACTIONS(3232), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3315), 50, - anon_sym_RPAREN, + ACTIONS(3234), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285725,27 +285893,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140681] = 4, + [141019] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3333), 3, + ACTIONS(3228), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3335), 50, - anon_sym_RPAREN, + ACTIONS(3230), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285787,28 +285955,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140747] = 4, + [141085] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 5, + aux_sym__terminator_token1, + ACTIONS(3224), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 49, - anon_sym_SEMI, + ACTIONS(3226), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -285852,20 +286019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140813] = 4, + [141151] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 5, + aux_sym__terminator_token1, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 49, - anon_sym_SEMI, + ACTIONS(3476), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -285912,21 +286078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [140879] = 4, + [141217] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 5, + ACTIONS(3150), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 49, + ACTIONS(3152), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -285976,24 +286143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [140945] = 4, + [141283] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, + ACTIONS(3070), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 50, - anon_sym_RPAREN, + ACTIONS(3072), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286035,28 +286203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [141011] = 4, + [141349] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 5, + aux_sym__terminator_token1, + ACTIONS(3432), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 49, - anon_sym_SEMI, + ACTIONS(3434), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286100,25 +286267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141077] = 4, + [141415] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 5, + aux_sym__terminator_token1, + ACTIONS(3204), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 49, - anon_sym_SEMI, + ACTIONS(3206), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286162,26 +286329,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141143] = 4, + [141481] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3263), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3265), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3202), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286224,25 +286390,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [141209] = 4, + anon_sym_do, + [141547] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 5, + aux_sym__terminator_token1, + ACTIONS(3196), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3167), 49, - anon_sym_SEMI, + ACTIONS(3198), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286286,20 +286453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141275] = 4, + [141613] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3567), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 49, - anon_sym_SEMI, + ACTIONS(3569), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -286347,47 +286515,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [141341] = 4, + [141679] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3373), 50, + ACTIONS(1303), 1, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4569), 1, + aux_sym__terminator_token1, + ACTIONS(4572), 1, + anon_sym_SEMI, + ACTIONS(4577), 1, anon_sym_PIPE, + ACTIONS(4587), 1, + anon_sym_when, + ACTIONS(4589), 1, + anon_sym_COLON_COLON, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + STATE(346), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(5169), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4579), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4585), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -286397,60 +286602,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [141795] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1295), 1, + anon_sym_RPAREN, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4577), 1, + anon_sym_PIPE, + ACTIONS(4587), 1, + anon_sym_when, + ACTIONS(4589), 1, + anon_sym_COLON_COLON, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4603), 1, anon_sym_in, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(4611), 1, anon_sym_DOT, - anon_sym_do, - [141407] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3169), 5, - sym__newline_before_do, + ACTIONS(4613), 1, sym__not_in, - ts_builtin_sym_end, + ACTIONS(4615), 1, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 49, + ACTIONS(4618), 1, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + STATE(352), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(5163), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4579), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4585), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -286460,32 +286689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [141473] = 4, + [141911] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3173), 5, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 49, - anon_sym_SEMI, + ACTIONS(3476), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -286532,22 +286751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_DASH_GT, anon_sym_do, - [141539] = 4, + [141981] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 5, + aux_sym__terminator_token1, + ACTIONS(3484), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3179), 49, - anon_sym_SEMI, + ACTIONS(3486), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -286594,27 +286812,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [141605] = 4, + [142047] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 5, + aux_sym__terminator_token1, + ACTIONS(3162), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3191), 49, - anon_sym_SEMI, + ACTIONS(3164), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286658,25 +286877,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141671] = 4, + [142113] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 5, + aux_sym__terminator_token1, + ACTIONS(3004), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3195), 49, - anon_sym_SEMI, + ACTIONS(3006), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -286720,20 +286939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [141737] = 4, + [142179] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 5, + aux_sym__terminator_token1, + ACTIONS(3490), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 49, - anon_sym_SEMI, + ACTIONS(3492), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -286780,105 +286998,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [141803] = 25, + [142245] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_PIPE, - ACTIONS(4190), 1, - anon_sym_when, - ACTIONS(4192), 1, - anon_sym_COLON_COLON, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4188), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3699), 3, - sym__newline_before_do, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3701), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4198), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4200), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [141911] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 5, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 49, - anon_sym_SEMI, + ACTIONS(3476), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -286925,24 +287060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [141977] = 6, + [142311] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, + ACTIONS(4245), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3199), 48, + ACTIONS(3418), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -286991,21 +287126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_do, - [142047] = 6, + anon_sym_end, + [142381] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 49, + ACTIONS(3494), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3496), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -287054,19 +287187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [142117] = 4, + [142447] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3391), 3, + ACTIONS(3494), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3393), 50, + ACTIONS(3496), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -287117,25 +287251,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142183] = 4, + [142513] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3329), 3, + ACTIONS(3498), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3331), 50, + ACTIONS(3500), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -287177,83 +287310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142249] = 4, + [142579] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3197), 5, - sym__newline_before_do, + ACTIONS(3567), 2, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [142315] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3406), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3408), 50, + ACTIONS(3569), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287300,21 +287374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [142381] = 4, + [142645] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, + ACTIONS(3498), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 50, + ACTIONS(3500), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -287365,25 +287437,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142447] = 4, + [142711] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3118), 3, + ACTIONS(3494), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 50, + ACTIONS(3496), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -287425,20 +287496,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142513] = 4, + [142777] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(3506), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3412), 50, + ACTIONS(3508), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -287489,19 +287561,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142579] = 4, + [142843] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(3514), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 50, - anon_sym_RPAREN, + ACTIONS(3516), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287548,22 +287621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142645] = 4, + [142909] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3590), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3414), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3416), 50, + ACTIONS(3592), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287610,26 +287684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [142711] = 4, + [142975] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3102), 3, + ACTIONS(2651), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3104), 50, + ACTIONS(2653), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -287675,24 +287747,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [142777] = 4, + [143041] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3414), 3, + ACTIONS(2655), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3416), 50, - anon_sym_RPAREN, + ACTIONS(2657), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -287734,22 +287807,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142843] = 4, + [143107] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3412), 50, - anon_sym_RPAREN, + aux_sym__terminator_token1, + ACTIONS(3430), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -287796,27 +287871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_do, - [142909] = 4, + anon_sym_end, + [143177] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3430), 3, + ACTIONS(3000), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3432), 50, - anon_sym_RPAREN, + ACTIONS(3002), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -287858,26 +287933,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [142975] = 4, + [143243] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3114), 3, + ACTIONS(2996), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3116), 50, + ACTIONS(2998), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -287923,19 +287997,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [143041] = 4, + [143309] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 5, + ACTIONS(3272), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 49, + ACTIONS(3274), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -287985,25 +288059,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [143107] = 4, + [143375] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3598), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 49, + ACTIONS(3600), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -288046,26 +288121,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [143173] = 4, + [143441] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3604), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 4, - sym__newline_before_do, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 49, + ACTIONS(3606), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -288108,21 +288183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [143239] = 4, + [143507] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3342), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3052), 49, - anon_sym_SEMI, + ACTIONS(3344), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288170,21 +288245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [143305] = 4, + [143573] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3360), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 49, - anon_sym_SEMI, + ACTIONS(3362), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288232,21 +288307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [143371] = 4, + [143639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 5, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 49, - anon_sym_SEMI, + ACTIONS(3520), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288293,25 +288366,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [143437] = 6, + [143705] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3295), 48, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3520), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288358,21 +288428,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_do, - [143507] = 5, + [143771] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3834), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288422,20 +288492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [143575] = 5, + anon_sym_do, + [143837] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3836), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288485,20 +288554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [143643] = 5, + anon_sym_do, + [143903] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3838), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288548,25 +288616,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [143711] = 4, + anon_sym_do, + [143969] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3126), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3128), 50, + ACTIONS(3520), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -288608,20 +288676,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [143777] = 4, + [144035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288672,18 +288741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [143843] = 4, + [144101] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288734,18 +288803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [143909] = 4, + [144167] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288796,18 +288865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [143975] = 4, + [144233] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -288858,19 +288927,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [144041] = 4, + [144299] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3563), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3565), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288917,22 +288988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [144107] = 4, + [144365] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -288979,22 +289050,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [144173] = 4, + [144431] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289041,22 +289112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [144239] = 4, + [144497] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289103,22 +289174,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [144305] = 4, + [144563] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289165,22 +289236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [144371] = 4, + [144629] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289227,22 +289298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [144437] = 4, + [144695] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 5, + ACTIONS(3555), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 49, + ACTIONS(3557), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -289292,19 +289361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [144503] = 4, + [144761] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 5, + ACTIONS(3551), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 49, + ACTIONS(3553), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -289354,20 +289423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [144569] = 4, + [144827] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 49, - anon_sym_SEMI, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289415,22 +289485,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [144635] = 5, + [144893] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3712), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3436), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, + ACTIONS(3438), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289477,22 +289545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [144703] = 5, + anon_sym_do, + [144959] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3842), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289542,20 +289608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144771] = 5, + anon_sym_do, + [145025] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3844), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289605,20 +289670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144839] = 4, + anon_sym_do, + [145091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3251), 5, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 49, - anon_sym_SEMI, + ACTIONS(3520), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -289665,22 +289730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [144905] = 5, + [145157] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3848), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289730,20 +289794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [144973] = 5, + anon_sym_do, + [145223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3850), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289793,20 +289856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [145041] = 5, + anon_sym_do, + [145289] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3852), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289856,18 +289918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [145109] = 4, + anon_sym_do, + [145355] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289918,18 +289981,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145175] = 4, + [145421] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -289980,18 +290043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145241] = 4, + [145487] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290042,18 +290105,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145307] = 4, + [145553] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3520), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290104,18 +290167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145373] = 4, + [145619] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3563), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3565), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290166,18 +290229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145439] = 4, + [145685] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3360), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3362), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290228,18 +290291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145505] = 4, + [145751] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3342), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3344), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290290,18 +290353,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145571] = 4, + [145817] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3604), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3606), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290352,18 +290415,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145637] = 4, + [145883] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3598), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, + ACTIONS(3600), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290414,24 +290477,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145703] = 4, + [145949] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3192), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 50, - anon_sym_RPAREN, + ACTIONS(3194), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -290473,27 +290537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145769] = 4, + [146015] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3602), 3, + ACTIONS(3188), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3604), 50, - anon_sym_RPAREN, + ACTIONS(3190), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -290535,21 +290599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145835] = 4, + [146081] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3598), 3, + ACTIONS(3590), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3600), 50, + ACTIONS(3592), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290600,24 +290663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145901] = 4, + [146147] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3594), 3, + ACTIONS(3184), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3596), 50, - anon_sym_RPAREN, + ACTIONS(3186), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -290659,21 +290723,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [145967] = 4, + [146213] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3590), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3592), 50, + ACTIONS(3569), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290724,18 +290787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146033] = 4, + [146279] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3566), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3568), 50, + ACTIONS(3569), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290786,18 +290849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146099] = 4, + [146345] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3110), 3, + ACTIONS(3180), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3112), 50, + ACTIONS(3182), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -290848,25 +290911,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [146165] = 4, + [146411] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3571), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 50, + ACTIONS(3573), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -290908,20 +290970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146231] = 4, + [146477] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3558), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3560), 50, + ACTIONS(3569), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -290972,25 +291035,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146297] = 4, + [146543] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3317), 3, + ACTIONS(3559), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3319), 50, + ACTIONS(3561), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291032,21 +291094,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146363] = 4, + [146609] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3559), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3544), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3546), 50, + ACTIONS(3561), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291093,27 +291158,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [146429] = 4, + [146675] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3544), 3, + ACTIONS(3176), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3546), 50, - anon_sym_RPAREN, + ACTIONS(3178), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291155,21 +291219,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146495] = 4, + [146741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3321), 3, + ACTIONS(3172), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3323), 50, + ACTIONS(3174), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291220,24 +291283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [146561] = 4, + [146807] = 5, ACTIONS(5), 1, sym_comment, + STATE(3935), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3548), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3550), 50, - anon_sym_RPAREN, + ACTIONS(2988), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291279,27 +291344,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146627] = 4, + [146875] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3544), 3, + ACTIONS(3158), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3546), 50, - anon_sym_RPAREN, + ACTIONS(3160), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291341,27 +291406,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146693] = 4, + [146941] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3538), 3, + ACTIONS(3154), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3540), 50, - anon_sym_RPAREN, + ACTIONS(3156), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291403,87 +291468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [146759] = 5, + [147007] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3854), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 2, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [146827] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3856), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291530,28 +291531,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [146895] = 5, + [147073] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3858), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3146), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3148), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291593,86 +291592,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [146963] = 5, + anon_sym_do, + [147139] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3860), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3518), 2, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [147031] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3862), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291719,23 +291655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [147099] = 5, + [147205] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3864), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291782,23 +291717,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [147167] = 5, + [147271] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3866), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -291845,28 +291779,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [147235] = 5, + [147337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3868), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3142), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3144), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291908,28 +291840,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [147303] = 5, + anon_sym_do, + [147403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3870), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3138), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3140), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -291971,27 +291902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [147371] = 4, + anon_sym_do, + [147469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 5, + aux_sym__terminator_token1, + ACTIONS(3134), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3303), 49, - anon_sym_SEMI, + ACTIONS(3136), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -292035,25 +291966,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [147437] = 4, + [147535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3305), 5, + aux_sym__terminator_token1, + ACTIONS(3130), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3307), 49, - anon_sym_SEMI, + ACTIONS(3132), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -292097,25 +292028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [147503] = 4, + [147601] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3309), 5, + aux_sym__terminator_token1, + ACTIONS(3126), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3311), 49, - anon_sym_SEMI, + ACTIONS(3128), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -292159,20 +292090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [147569] = 4, + [147667] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3313), 5, + aux_sym__terminator_token1, + ACTIONS(3555), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3315), 49, - anon_sym_SEMI, + ACTIONS(3557), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -292219,22 +292149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [147635] = 4, + [147733] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3333), 5, + aux_sym__terminator_token1, + ACTIONS(3551), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3335), 49, - anon_sym_SEMI, + ACTIONS(3553), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -292281,48 +292211,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [147701] = 12, + [147799] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 4, + aux_sym__terminator_token1, + ACTIONS(3122), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3124), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -292352,92 +292265,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [147783] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4204), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [147871] = 4, + [147865] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3534), 3, + ACTIONS(3545), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3536), 50, + ACTIONS(3547), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -292488,19 +292338,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [147937] = 4, + [147931] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3522), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3524), 50, + ACTIONS(3520), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -292547,28 +292399,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [148003] = 4, + [147997] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3555), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3325), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3327), 50, + ACTIONS(3557), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -292611,20 +292462,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [148069] = 4, + [148063] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3551), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3466), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3468), 50, + ACTIONS(3553), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -292671,80 +292523,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [148135] = 22, + [148129] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_PIPE, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -292754,25 +292575,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [148237] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148195] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4621), 1, + anon_sym_COMMA, + STATE(3135), 1, + aux_sym_keywords_repeat1, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3373), 49, - anon_sym_SEMI, + ACTIONS(3120), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -292815,26 +292650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [148303] = 7, + [148265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, + ACTIONS(3545), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 47, - anon_sym_SEMI, + ACTIONS(3547), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -292880,43 +292710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [148375] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4212), 1, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, + [148331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_SEMI, + ACTIONS(3120), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -292948,32 +292766,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_do, - [148453] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, + [148397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 4, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 45, - anon_sym_SEMI, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -293014,80 +292833,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_do, - [148527] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4178), 1, - anon_sym_PIPE, - ACTIONS(4190), 1, - anon_sym_when, - ACTIONS(4192), 1, - anon_sym_COLON_COLON, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + [148463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293097,79 +292887,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [148633] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4178), 1, - anon_sym_PIPE, - ACTIONS(4190), 1, - anon_sym_when, - ACTIONS(4192), 1, - anon_sym_COLON_COLON, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + [148529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293179,25 +292949,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [148739] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148595] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 5, + aux_sym__terminator_token1, + ACTIONS(3024), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 49, - anon_sym_SEMI, + ACTIONS(3026), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -293241,78 +293022,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [148805] = 23, + [148661] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4178), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, - anon_sym_COLON_COLON, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293322,76 +293073,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [148909] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + [148727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293401,75 +293135,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [149009] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + [148793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4198), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293479,59 +293197,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [149107] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4206), 1, anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + [148859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + aux_sym__terminator_token1, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4200), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293541,82 +293259,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [149201] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4206), 1, anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + [148925] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4176), 4, + ACTIONS(3520), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 16, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -293629,26 +293305,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_do, - [149293] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148991] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 5, + aux_sym__terminator_token1, + ACTIONS(3032), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 49, - anon_sym_SEMI, + ACTIONS(3034), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -293692,62 +293394,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [149359] = 16, + [149057] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4176), 4, + ACTIONS(3036), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3038), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -293765,50 +293433,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_do, - [149449] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4206), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4208), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, - sym__not_in, + anon_sym_do, + [149123] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3456), 5, sym__newline_before_do, + sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, + anon_sym_LBRACK2, + ACTIONS(3458), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -293837,64 +293506,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [149535] = 11, + [149189] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4210), 1, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_when, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + ACTIONS(4451), 1, anon_sym_STAR_STAR, - ACTIONS(4214), 1, + ACTIONS(4453), 1, anon_sym_DOT, - ACTIONS(4216), 1, + ACTIONS(4455), 1, anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + ACTIONS(4419), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4186), 2, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 4, + ACTIONS(4427), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3532), 3, sym__newline_before_do, - sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, + ACTIONS(3534), 3, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + anon_sym_do, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -293904,28 +293601,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [149615] = 4, + [149297] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3440), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3337), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3339), 50, + ACTIONS(3442), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -293968,26 +293663,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [149681] = 4, + [149363] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3444), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3341), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3343), 50, + ACTIONS(3446), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -294030,26 +293725,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [149747] = 4, + [149429] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3345), 3, + ACTIONS(3150), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 50, + ACTIONS(3152), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -294093,25 +293787,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [149813] = 4, + [149495] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3506), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3349), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3351), 50, + ACTIONS(3508), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -294154,25 +293849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [149879] = 4, + [149561] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4624), 1, + anon_sym_COMMA, + STATE(3225), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3359), 3, + ACTIONS(3575), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3361), 50, + ACTIONS(3577), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294217,23 +293913,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [149945] = 4, + [149631] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(636), 1, + anon_sym_do, + ACTIONS(4626), 1, + sym__newline_before_do, + STATE(4438), 1, + sym_do_block, + ACTIONS(2986), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3363), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3365), 50, + ACTIONS(2988), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -294278,26 +293978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [150011] = 4, + [149703] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3494), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3367), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3369), 50, + ACTIONS(3496), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -294340,21 +294040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [150077] = 4, + [149769] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3498), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3245), 49, - anon_sym_SEMI, + ACTIONS(3500), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -294402,25 +294102,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [150143] = 4, + [149835] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3498), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3464), 51, - anon_sym_SEMI, + ACTIONS(3500), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294463,26 +294163,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [150209] = 4, + [149901] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3494), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3460), 51, - anon_sym_SEMI, + ACTIONS(3496), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294525,27 +294225,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [150275] = 4, + [149967] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3494), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3076), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3078), 50, - anon_sym_LPAREN, + ACTIONS(3496), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -294588,25 +294288,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [150341] = 4, + [150033] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3474), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3456), 51, - anon_sym_SEMI, + ACTIONS(3476), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294649,26 +294349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [150407] = 4, + [150099] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2909), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3452), 51, - anon_sym_SEMI, + ACTIONS(2982), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294713,24 +294414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [150473] = 4, + [150169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3490), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3448), 51, - anon_sym_SEMI, + ACTIONS(3492), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -294773,23 +294475,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [150539] = 4, + [150235] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3466), 2, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2902), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3468), 51, + ACTIONS(2982), 49, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -294836,26 +294538,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [150605] = 4, + [150305] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4628), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3444), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -294897,21 +294601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [150671] = 4, + anon_sym_do, + [150373] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4630), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3098), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3100), 50, - anon_sym_LPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -294961,21 +294666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [150737] = 4, + [150441] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2905), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3524), 51, + ACTIONS(2982), 49, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -295022,27 +294728,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [150803] = 4, + [150511] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3534), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4632), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3536), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295085,19 +294792,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [150869] = 4, + anon_sym_do, + [150579] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4634), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3072), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3074), 50, - anon_sym_LPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -295147,28 +294856,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [150935] = 6, + [150647] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(4636), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3373), 48, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295210,26 +294917,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [151005] = 4, + [150715] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4638), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3391), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3393), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295273,80 +294982,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [151071] = 25, + [150783] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4476), 1, - anon_sym_PIPE, - ACTIONS(4488), 1, - anon_sym_when, - ACTIONS(4490), 1, - anon_sym_COLON_COLON, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - ACTIONS(4494), 1, - anon_sym_EQ, - ACTIONS(4504), 1, - anon_sym_in, - ACTIONS(4506), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4514), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(4640), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3703), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4486), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4496), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3705), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(4474), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4500), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4502), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -295356,25 +295033,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [151179] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [150851] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4642), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3440), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295416,27 +295106,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151245] = 4, + anon_sym_do, + [150919] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4644), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3436), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295478,27 +295169,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151311] = 4, + anon_sym_do, + [150987] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4646), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3428), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295540,151 +295232,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151377] = 4, + anon_sym_do, + [151055] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3422), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3424), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4648), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [151443] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3420), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [151509] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3402), 3, + ACTIONS(3166), 3, + sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295726,26 +295295,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151575] = 4, + anon_sym_do, + [151123] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2869), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 3, + ACTIONS(2980), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 51, + ACTIONS(2982), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -295788,89 +295360,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151641] = 4, + [151193] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3383), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3385), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4650), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [151707] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3381), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295912,27 +295422,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151773] = 4, + anon_sym_do, + [151261] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4652), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3377), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -295974,27 +295485,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [151839] = 4, + anon_sym_do, + [151329] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4654), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3406), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3408), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296038,25 +295550,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [151905] = 4, + [151397] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4656), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296100,18 +295613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [151971] = 4, + [151465] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3169), 3, + ACTIONS(3364), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3171), 50, + ACTIONS(3366), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -296162,18 +295675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [152037] = 4, + [151531] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3173), 3, + ACTIONS(3368), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3175), 50, + ACTIONS(3370), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -296224,25 +295737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [152103] = 4, + [151597] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4658), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296286,25 +295800,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [152169] = 4, + [151665] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4660), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296348,25 +295863,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [152235] = 4, + [151733] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4662), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 5, + aux_sym__terminator_token1, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296410,23 +295926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [152301] = 4, + [151801] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4664), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3375), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3377), 50, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -296472,80 +295989,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [152367] = 25, + [151869] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4337), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4349), 1, + ACTIONS(4265), 1, anon_sym_when, - ACTIONS(4351), 1, + ACTIONS(4267), 1, anon_sym_COLON_COLON, - ACTIONS(4353), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4355), 1, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4367), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4375), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3699), 2, + ACTIONS(3664), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4345), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4347), 2, + ACTIONS(4263), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4357), 3, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3701), 4, + ACTIONS(3666), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_do, - ACTIONS(4335), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4361), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4363), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -296555,23 +296072,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [152475] = 4, + [151977] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4666), 1, + aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3379), 3, + ACTIONS(3166), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3381), 50, + ACTIONS(3168), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -296617,21 +296135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [152541] = 6, + [152045] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4373), 1, + ACTIONS(4289), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3428), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 49, + ACTIONS(3430), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -296681,25 +296199,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_do, - [152611] = 4, + [152115] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3484), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3383), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3385), 50, + ACTIONS(3486), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296742,26 +296261,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [152677] = 4, + [152181] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3474), 1, + sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3395), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3397), 50, + ACTIONS(3476), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -296803,19 +296325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [152743] = 4, + [152251] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3474), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3540), 51, + ACTIONS(3476), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -296867,20 +296387,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [152809] = 4, + [152317] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3474), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3416), 49, - anon_sym_SEMI, + ACTIONS(3476), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -296928,18 +296449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [152875] = 4, + [152383] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3468), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 51, + ACTIONS(3470), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -296991,48 +296511,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [152941] = 4, + [152449] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4265), 1, + anon_sym_when, + ACTIONS(4267), 1, + anon_sym_COLON_COLON, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(4281), 1, + anon_sym_in, + ACTIONS(4283), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4285), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(4291), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3668), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3550), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4255), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4263), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3670), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4251), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4259), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297042,36 +296594,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153007] = 4, + [152557] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4672), 1, + anon_sym_COMMA, + STATE(3135), 1, + aux_sym_keywords_repeat1, + ACTIONS(3581), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3402), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3404), 50, + ACTIONS(3583), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297114,18 +296658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [153073] = 4, + [152627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3464), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 51, + ACTIONS(3466), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -297177,21 +296720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153139] = 5, + [152693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3846), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3460), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 50, - anon_sym_SEMI, + ACTIONS(3462), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -297238,28 +296781,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [153207] = 4, + [152759] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297302,21 +296843,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153273] = 4, + anon_sym_do, + [152825] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3558), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3468), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3560), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3470), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -297364,23 +296905,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153339] = 4, + anon_sym_do, + [152891] = 5, ACTIONS(5), 1, sym_comment, + STATE(3936), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3418), 3, + ACTIONS(3074), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3420), 50, + ACTIONS(3076), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -297426,28 +296969,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [153405] = 4, + [152959] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3422), 3, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3424), 50, + aux_sym__terminator_token1, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -297478,38 +297036,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [153471] = 4, + anon_sym_end, + [153039] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3426), 3, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3428), 50, + aux_sym__terminator_token1, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -297540,38 +297105,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [153537] = 4, + anon_sym_end, + [153119] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3434), 3, + ACTIONS(3474), 2, sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3436), 50, + aux_sym__terminator_token1, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -297600,38 +297177,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_do, + anon_sym_end, + [153205] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(4235), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_do, - [153603] = 4, + anon_sym_end, + [153295] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3566), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3568), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3268), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3270), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -297674,29 +297314,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153669] = 4, + anon_sym_do, + [153361] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3590), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3592), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4231), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4207), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 14, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -297706,16 +297389,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_do, + anon_sym_end, + [153455] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4229), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297725,59 +297458,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + anon_sym_end, + [153553] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4243), 1, anon_sym_STAR_STAR, + ACTIONS(4245), 1, anon_sym_DOT, - [153735] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3594), 2, + ACTIONS(4247), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3596), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4211), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_end, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297787,59 +297548,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [153653] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4223), 1, + anon_sym_COLON_COLON, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4243), 1, anon_sym_STAR_STAR, + ACTIONS(4245), 1, anon_sym_DOT, - [153801] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3598), 2, + ACTIONS(4247), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3600), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4211), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + anon_sym_end, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297849,59 +297629,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [153757] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_when, + ACTIONS(4223), 1, + anon_sym_COLON_COLON, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4243), 1, anon_sym_STAR_STAR, + ACTIONS(4245), 1, anon_sym_DOT, - [153867] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3602), 2, + ACTIONS(4247), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3604), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4211), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -297911,36 +297711,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [153863] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_when, + ACTIONS(4223), 1, + anon_sym_COLON_COLON, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4229), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4231), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153933] = 4, + ACTIONS(4235), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [153969] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3476), 46, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -297981,32 +297857,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [153999] = 4, + anon_sym_do, + anon_sym_end, + [154043] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -298038,29 +297925,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154065] = 4, + anon_sym_do, + anon_sym_end, + [154121] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3476), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298106,50 +297990,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154131] = 4, + anon_sym_do, + anon_sym_end, + [154193] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4211), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_end, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -298159,40 +298072,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [154295] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154197] = 4, + ACTIONS(4235), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 26, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + anon_sym_end, + [154383] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4211), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -298222,33 +298213,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [154263] = 4, + anon_sym_do, + anon_sym_end, + [154465] = 5, ACTIONS(5), 1, sym_comment, + STATE(3938), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3438), 3, + ACTIONS(2986), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3440), 50, + ACTIONS(2988), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -298294,26 +298278,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [154329] = 4, + [154533] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, + STATE(3939), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2986), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2988), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -298356,21 +298340,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [154395] = 4, + anon_sym_do, + [154601] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3416), 3, + sym__newline_before_do, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3608), 51, + ACTIONS(3418), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298417,27 +298404,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [154461] = 4, + anon_sym_do, + [154671] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, + STATE(3942), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3058), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3060), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -298480,26 +298467,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [154527] = 4, + anon_sym_do, + [154739] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4624), 1, + anon_sym_COMMA, + STATE(3471), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3581), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3583), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -298542,20 +298531,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [154593] = 4, + anon_sym_do, + [154809] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3456), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3412), 49, - anon_sym_SEMI, + ACTIONS(3458), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298603,24 +298594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [154659] = 6, + [154875] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3452), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, - sym__newline_before_do, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 49, - anon_sym_SEMI, + ACTIONS(3454), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298667,21 +298655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [154729] = 4, + anon_sym_DOT, + [154941] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3436), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3430), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3432), 49, - anon_sym_SEMI, + ACTIONS(3438), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298729,20 +298718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [154795] = 4, + [155007] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3281), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3283), 50, + ACTIONS(3108), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298789,23 +298779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [154861] = 4, + [155073] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 5, + aux_sym__terminator_token1, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 49, - anon_sym_SEMI, + ACTIONS(3108), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298852,22 +298839,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [154927] = 4, + [155139] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 5, + aux_sym__terminator_token1, + ACTIONS(3436), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 49, - anon_sym_SEMI, + ACTIONS(3438), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298914,21 +298901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [154993] = 4, + [155205] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3464), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3466), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -298978,20 +298966,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155059] = 4, + [155271] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3420), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, + ACTIONS(3422), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299039,25 +299028,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [155125] = 4, + [155337] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4672), 1, + anon_sym_COMMA, + STATE(3198), 1, + aux_sym_keywords_repeat1, + ACTIONS(3575), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3247), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3249), 50, + ACTIONS(3577), 49, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299099,22 +299091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155191] = 4, + [155407] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3416), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3243), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3245), 50, + ACTIONS(3418), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299161,23 +299153,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [155257] = 4, + [155473] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3416), 1, + sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, + ACTIONS(3418), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299224,22 +299218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [155323] = 4, + [155543] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3416), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, + ACTIONS(3418), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299287,21 +299280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [155389] = 4, + [155609] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3416), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, + ACTIONS(3418), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299349,20 +299342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [155455] = 4, + [155675] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3494), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3496), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -299412,108 +299404,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155521] = 25, + [155741] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4476), 1, - anon_sym_PIPE, - ACTIONS(4488), 1, - anon_sym_when, - ACTIONS(4490), 1, - anon_sym_COLON_COLON, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - ACTIONS(4494), 1, - anon_sym_EQ, - ACTIONS(4504), 1, - anon_sym_in, - ACTIONS(4506), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(3074), 2, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3699), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4478), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4486), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4496), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4498), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3701), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_end, - ACTIONS(4474), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4500), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4502), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [155629] = 4, - ACTIONS(5), 1, - sym_comment, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3442), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3444), 50, + ACTIONS(3076), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299556,88 +299466,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [155695] = 4, + [155807] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3446), 3, - sym__newline_before_do, + ACTIONS(3110), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3448), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [155761] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3450), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3452), 50, + ACTIONS(3112), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299680,26 +299528,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [155827] = 4, + [155873] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3454), 3, + ACTIONS(3212), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 50, + ACTIONS(3214), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299743,90 +299590,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155893] = 4, + [155939] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3458), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3460), 50, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(3474), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [155959] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3462), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3464), 50, + ACTIONS(3476), 35, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -299856,36 +299659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [156025] = 4, + [156021] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4674), 1, + anon_sym_COMMA, + STATE(3244), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + aux_sym__terminator_token1, + ACTIONS(3532), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, + ACTIONS(3534), 48, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -299932,21 +299727,22 @@ static const uint16_t ts_small_parse_table[] = { [156091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3428), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3369), 51, - anon_sym_SEMI, + ACTIONS(3430), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -299989,26 +299785,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [156157] = 4, + [156157] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3428), 1, + sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3365), 51, - anon_sym_SEMI, + ACTIONS(3430), 50, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300051,26 +299850,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [156223] = 4, + [156227] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3428), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3361), 51, - anon_sym_SEMI, + ACTIONS(3430), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300113,26 +299911,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [156289] = 4, + [156293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3428), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3351), 51, - anon_sym_SEMI, + ACTIONS(3430), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300175,30 +299973,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [156355] = 6, + [156359] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4675), 1, - anon_sym_COMMA, - STATE(3248), 1, - aux_sym_keywords_repeat1, - ACTIONS(3281), 2, + ACTIONS(3424), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3283), 49, + ACTIONS(3426), 51, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -300244,14 +300039,14 @@ static const uint16_t ts_small_parse_table[] = { [156425] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3281), 2, + ACTIONS(3412), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3283), 51, + ACTIONS(3414), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -300306,21 +300101,22 @@ static const uint16_t ts_small_parse_table[] = { [156491] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3408), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3347), 51, - anon_sym_SEMI, + ACTIONS(3410), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300363,7 +300159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, [156557] = 4, ACTIONS(5), 1, @@ -300371,18 +300166,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 3, + ACTIONS(3086), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 51, + ACTIONS(3088), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300425,26 +300220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, + anon_sym_do, [156623] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 3, + ACTIONS(3096), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 51, + ACTIONS(3098), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300487,27 +300282,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, + anon_sym_do, [156689] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3368), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3094), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3096), 50, - anon_sym_LPAREN, + ACTIONS(3370), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -300550,94 +300346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [156755] = 11, + [156755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 4, + ACTIONS(3420), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_do, - [156835] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3325), 3, - sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 51, + ACTIONS(3422), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300680,26 +300406,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [156901] = 4, + anon_sym_do, + [156821] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3364), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3323), 51, - anon_sym_SEMI, + ACTIONS(3366), 51, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -300742,42 +300469,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [156967] = 12, + [156887] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, + ACTIONS(3476), 36, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -300814,43 +300540,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DASH_GT, anon_sym_do, - [157049] = 15, + [156969] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300860,7 +300586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, + ACTIONS(3476), 26, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -300887,68 +300613,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_DASH_GT, anon_sym_do, - [157137] = 22, + [157057] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4225), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4241), 1, + ACTIONS(4495), 1, anon_sym_EQ_GT, - ACTIONS(4243), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4245), 3, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 8, + ACTIONS(3476), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, @@ -300957,7 +300683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_do, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -300967,24 +300693,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [157239] = 4, + [157159] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 3, + ACTIONS(3416), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 51, + ACTIONS(3418), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -301027,25 +300753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [157305] = 7, + anon_sym_do, + [157225] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 48, + ACTIONS(3476), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -301094,36 +300820,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_DASH_GT, anon_sym_do, - [157377] = 10, + [157297] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 38, + ACTIONS(3476), 38, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -301162,26 +300888,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, anon_sym_DASH_GT, anon_sym_do, - [157455] = 8, + [157375] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 46, + ACTIONS(3476), 46, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -301228,79 +300954,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_DASH_GT, anon_sym_do, - [157529] = 24, + [157449] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4225), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4237), 1, + ACTIONS(4491), 1, anon_sym_when, - ACTIONS(4239), 1, + ACTIONS(4493), 1, anon_sym_COLON_COLON, - ACTIONS(4241), 1, + ACTIONS(4495), 1, anon_sym_EQ_GT, - ACTIONS(4243), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4245), 3, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, + ACTIONS(3476), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_DASH_GT, anon_sym_do, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301310,79 +301036,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [157635] = 24, + [157555] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4225), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4237), 1, + ACTIONS(4491), 1, anon_sym_when, - ACTIONS(4239), 1, + ACTIONS(4493), 1, anon_sym_COLON_COLON, - ACTIONS(4241), 1, + ACTIONS(4495), 1, anon_sym_EQ_GT, - ACTIONS(4243), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4245), 3, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, + ACTIONS(3476), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_DASH_GT, anon_sym_do, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301392,24 +301118,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [157741] = 4, + [157661] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 3, + ACTIONS(3416), 4, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 51, + ACTIONS(3418), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -301452,72 +301181,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [157807] = 23, + anon_sym_do, + [157731] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4225), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4239), 1, + ACTIONS(4493), 1, anon_sym_COLON_COLON, - ACTIONS(4241), 1, + ACTIONS(4495), 1, anon_sym_EQ_GT, - ACTIONS(4243), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4245), 3, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(3476), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, @@ -301525,7 +301253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_DASH_GT, anon_sym_do, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301535,66 +301263,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [157911] = 21, + [157835] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4241), 1, + ACTIONS(4495), 1, anon_sym_EQ_GT, - ACTIONS(4243), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4245), 3, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 9, + ACTIONS(3476), 9, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -301604,7 +301332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_do, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301614,64 +301342,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [158011] = 20, + [157935] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4243), 1, + ACTIONS(4497), 1, anon_sym_EQ, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4245), 3, + ACTIONS(4499), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301681,7 +301409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, + ACTIONS(3476), 10, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -301692,58 +301420,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_do, - [158109] = 18, + [158033] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4247), 3, + ACTIONS(4501), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301753,7 +301481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, + ACTIONS(3476), 14, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -301768,54 +301496,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DASH_GT, anon_sym_do, - [158203] = 17, + [158127] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4249), 5, + ACTIONS(4503), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301825,7 +301553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 17, + ACTIONS(3476), 17, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -301843,48 +301571,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_DASH_GT, anon_sym_do, - [158295] = 16, + [158219] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4223), 4, + ACTIONS(4477), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -301894,7 +301622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 22, + ACTIONS(3476), 22, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -301917,43 +301645,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_DASH_GT, anon_sym_do, - [158385] = 14, + [158309] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__newline_before_do, - ACTIONS(4253), 1, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4255), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(4265), 1, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3476), 35, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -301989,38 +301717,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_DASH_GT, anon_sym_do, - [158471] = 11, + [158395] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3476), 37, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -302058,38 +301786,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_DASH_GT, anon_sym_do, - [158551] = 11, + [158475] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4261), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4263), 1, + ACTIONS(4517), 1, anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, sym__not_in, - ACTIONS(4227), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4233), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4231), 6, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3476), 37, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -302127,21 +301855,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_DASH_GT, anon_sym_do, - [158631] = 6, + [158555] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4373), 1, + ACTIONS(4289), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 49, + ACTIONS(3476), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -302191,21 +301919,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_do, - [158701] = 4, + [158625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3416), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3418), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3416), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3418), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [158757] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3428), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3430), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [158827] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3074), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3076), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302253,26 +302168,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [158767] = 4, + anon_sym_do, + [158893] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4677), 1, + anon_sym_COMMA, + STATE(3244), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, + ACTIONS(3522), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3524), 48, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -302315,48 +302232,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [158833] = 4, + anon_sym_do, + [158963] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302366,40 +302280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158899] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3476), 25, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -302419,68 +302305,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + anon_sym_do, + [159051] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, anon_sym_in, + ACTIONS(4447), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4451), 1, anon_sym_STAR_STAR, + ACTIONS(4453), 1, anon_sym_DOT, - [158965] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(4455), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302490,37 +302386,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159031] = 5, + [159153] = 4, ACTIONS(5), 1, sym_comment, - STATE(3900), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3012), 3, + ACTIONS(3474), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 49, + ACTIONS(3476), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -302564,21 +302448,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [159099] = 4, + [159219] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3476), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302624,28 +302512,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [159165] = 4, + anon_sym_do, + [159291] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 50, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -302688,17 +302574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159231] = 4, + anon_sym_do, + [159357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3114), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 51, + ACTIONS(3116), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -302750,21 +302637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159297] = 4, + [159423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3110), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3112), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302812,21 +302698,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159363] = 4, + anon_sym_do, + [159489] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3428), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3430), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -302874,24 +302760,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [159429] = 4, + anon_sym_do, + [159555] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 3, + ACTIONS(3428), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 51, + ACTIONS(3430), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -302934,49 +302821,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [159495] = 4, + anon_sym_do, + [159621] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_when, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3000), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3002), 50, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4427), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3664), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3666), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -302986,36 +302906,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [159561] = 4, + [159729] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3476), 45, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -303056,28 +302971,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, + anon_sym_do, + [159803] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_when, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, anon_sym_STAR_STAR, + ACTIONS(4453), 1, anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4439), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_do, - [159627] = 4, + ACTIONS(4441), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [159909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3444), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3116), 51, - anon_sym_SEMI, + ACTIONS(3446), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -303122,25 +303115,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [159693] = 4, + anon_sym_do, + [159975] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2996), 3, + ACTIONS(3440), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2998), 50, - anon_sym_LPAREN, + ACTIONS(3442), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -303182,49 +303175,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [159759] = 4, + [160041] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_when, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3104), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -303234,31 +303260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [159825] = 4, + [160147] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3424), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_RPAREN, + ACTIONS(3426), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -303305,22 +303320,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [159891] = 4, + [160213] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3474), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 50, - anon_sym_RPAREN, + ACTIONS(3476), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -303367,31 +303382,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [159957] = 4, + [160279] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 4, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3120), 51, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -303423,28 +303451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [160023] = 4, + anon_sym_do, + [160357] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3150), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3152), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303494,106 +303514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160089] = 29, + [160423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1295), 1, - anon_sym_RPAREN, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4678), 1, - aux_sym__terminator_token1, - ACTIONS(4681), 1, - anon_sym_SEMI, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_when, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - ACTIONS(4702), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, - sym__not_in, - STATE(352), 1, - sym__terminator, - STATE(1029), 1, - aux_sym__terminator_repeat1, - STATE(5094), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4694), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4704), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4684), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4710), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [160205] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3412), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3414), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303643,19 +303576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160271] = 4, + [160489] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3408), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3410), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303705,19 +303638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160337] = 4, + [160555] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3102), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3104), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303767,19 +303700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160403] = 4, + [160621] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3102), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3104), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303829,19 +303762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160469] = 4, + [160687] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3086), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3088), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303891,19 +303824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160535] = 4, + [160753] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3096), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3098), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -303953,47 +303886,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [160601] = 4, + [160819] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_when, + ACTIONS(4223), 1, + anon_sym_COLON_COLON, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, + anon_sym_in, + ACTIONS(4239), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4243), 1, + anon_sym_STAR_STAR, + ACTIONS(4245), 1, + anon_sym_DOT, + ACTIONS(4247), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3664), 2, sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4211), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4219), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3666), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -304003,59 +303969,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [160927] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, + anon_sym_PIPE, + ACTIONS(4221), 1, + anon_sym_when, + ACTIONS(4223), 1, + anon_sym_COLON_COLON, + ACTIONS(4225), 1, + anon_sym_EQ_GT, + ACTIONS(4227), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_in, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4243), 1, anon_sym_STAR_STAR, + ACTIONS(4245), 1, anon_sym_DOT, - anon_sym_do, - [160667] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4247), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3668), 2, sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4211), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4219), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3670), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4207), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4215), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -304065,92 +304052,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [160733] = 25, + [161035] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4178), 1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4209), 1, anon_sym_PIPE, - ACTIONS(4190), 1, + ACTIONS(4221), 1, anon_sym_when, - ACTIONS(4192), 1, + ACTIONS(4223), 1, anon_sym_COLON_COLON, - ACTIONS(4194), 1, + ACTIONS(4225), 1, anon_sym_EQ_GT, - ACTIONS(4196), 1, + ACTIONS(4227), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4237), 1, anon_sym_in, - ACTIONS(4208), 1, + ACTIONS(4239), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, + ACTIONS(4241), 1, anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, + ACTIONS(4243), 1, anon_sym_STAR_STAR, - ACTIONS(4214), 1, + ACTIONS(4245), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, + ACTIONS(4247), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4180), 2, + ACTIONS(3532), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4211), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4186), 2, + ACTIONS(4217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4188), 2, + ACTIONS(4219), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3158), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3160), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4198), 3, + ACTIONS(4229), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4200), 3, + ACTIONS(4231), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4176), 4, + ACTIONS(3534), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4207), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4202), 5, + ACTIONS(4233), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, + ACTIONS(4215), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4204), 9, + ACTIONS(4235), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -304160,25 +304135,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [160841] = 4, + [161143] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3264), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3231), 51, + anon_sym_LBRACK2, + ACTIONS(3266), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -304221,22 +304195,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [160907] = 4, + [161209] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3216), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3235), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3218), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304284,20 +304258,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [160973] = 4, + anon_sym_do, + [161275] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, + ACTIONS(3116), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304345,20 +304321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161039] = 4, + [161341] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, + ACTIONS(3220), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3222), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -304408,20 +304383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [161105] = 4, + [161407] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3086), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3602), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3604), 49, - anon_sym_SEMI, + ACTIONS(3088), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304469,20 +304445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161171] = 4, + [161473] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3598), 5, + ACTIONS(3368), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3600), 49, + ACTIONS(3370), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -304532,19 +304507,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [161237] = 4, + [161539] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 5, + ACTIONS(3364), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3596), 49, + ACTIONS(3366), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -304594,47 +304569,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [161303] = 4, + [161605] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3590), 5, + ACTIONS(3272), 1, sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(3592), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4681), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(4685), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4693), 1, anon_sym_when, + ACTIONS(4695), 1, anon_sym_COLON_COLON, + ACTIONS(4697), 1, anon_sym_EQ_GT, + ACTIONS(4699), 1, anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + STATE(3281), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3274), 2, + anon_sym_LBRACE, + anon_sym_do, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4691), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -304644,32 +304654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [161369] = 4, + [161717] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3566), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3568), 49, - anon_sym_SEMI, + ACTIONS(2982), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304717,21 +304716,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161435] = 4, + [161783] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3096), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3558), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3560), 49, - anon_sym_SEMI, + ACTIONS(3098), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304779,21 +304778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161501] = 4, + [161849] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3478), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3546), 49, - anon_sym_SEMI, + ACTIONS(3480), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304841,21 +304840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161567] = 4, + [161915] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3150), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3546), 49, - anon_sym_SEMI, + ACTIONS(3152), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -304903,20 +304902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161633] = 4, + [161981] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3548), 5, + ACTIONS(3460), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3550), 49, + ACTIONS(3462), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -304966,19 +304964,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [161699] = 4, + [162047] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2875), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 5, - sym__newline_before_do, + ACTIONS(2980), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 49, + ACTIONS(2982), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -305027,27 +305028,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + [162117] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4417), 1, + anon_sym_PIPE, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4439), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_do, - [161765] = 5, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [162221] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(3865), 1, aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305089,28 +305170,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [161833] = 5, + [162289] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(3872), 1, aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305152,23 +305233,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [161901] = 4, + [162357] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3430), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3863), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3432), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305215,21 +305296,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [161967] = 4, + [162425] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3861), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3538), 5, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3540), 49, + ACTIONS(3168), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305276,19 +305359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [162033] = 4, + [162493] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3150), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 51, + ACTIONS(3152), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -305340,21 +305423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162099] = 4, + [162559] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3414), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3859), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3416), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305401,27 +305484,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [162165] = 5, + [162627] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4728), 1, - aux_sym_sigil_token3, + ACTIONS(3150), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3152), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305464,18 +305548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [162233] = 4, + [162693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3414), 2, + ACTIONS(3102), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3416), 51, + ACTIONS(3104), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -305527,17 +305610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162299] = 4, + [162759] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3102), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 51, + ACTIONS(3104), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -305589,17 +305672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162365] = 4, + [162825] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3086), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 51, + ACTIONS(3088), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -305651,17 +305734,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162431] = 4, + [162891] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3857), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [162959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3096), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 51, + ACTIONS(3098), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -305713,17 +305859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162497] = 4, + [163025] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3406), 2, + ACTIONS(3212), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3408), 51, + ACTIONS(3214), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -305775,26 +305921,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [162563] = 5, + [163091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4730), 1, - aux_sym_sigil_token3, + ACTIONS(3216), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3218), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305837,27 +305983,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [162631] = 5, + [163157] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4732), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(4719), 1, + anon_sym_COMMA, + STATE(3339), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [163227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3220), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3222), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -305900,21 +306109,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [162699] = 5, + [163293] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4734), 1, - aux_sym_sigil_token3, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3086), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3088), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305964,20 +306172,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [162767] = 5, + [163361] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4736), 1, - aux_sym_sigil_token3, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3514), 3, + ACTIONS(3096), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3098), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -306027,21 +306235,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [162835] = 4, + [163429] = 29, ACTIONS(5), 1, sym_comment, - ACTIONS(3391), 2, - sym__not_in, + ACTIONS(1295), 1, + anon_sym_end, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4722), 1, + aux_sym__terminator_token1, + ACTIONS(4725), 1, + anon_sym_SEMI, + ACTIONS(4730), 1, + anon_sym_PIPE, + ACTIONS(4740), 1, + anon_sym_when, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_EQ_GT, + ACTIONS(4746), 1, + anon_sym_EQ, + ACTIONS(4756), 1, + anon_sym_in, + ACTIONS(4758), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(4766), 1, + sym__not_in, + STATE(348), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(5889), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4748), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4750), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163545] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3853), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3393), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -306088,25 +306383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [162901] = 6, + [163613] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3851), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 50, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -306153,26 +306446,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [162971] = 5, + anon_sym_DASH_GT, + anon_sym_DOT, + [163681] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(3849), 1, aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306214,49 +306509,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163039] = 4, + [163749] = 20, ACTIONS(5), 1, sym_comment, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3536), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306266,31 +306589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [163105] = 4, + [163847] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 5, + ACTIONS(3428), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 49, + ACTIONS(3430), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -306340,24 +306651,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [163171] = 4, + [163913] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3466), 5, - sym__newline_before_do, + ACTIONS(3404), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 49, + ACTIONS(3406), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -306400,49 +306711,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163237] = 4, + [163979] = 18, ACTIONS(5), 1, sym_comment, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4419), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306452,61 +306775,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [164073] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1303), 1, + anon_sym_end, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4730), 1, + anon_sym_PIPE, + ACTIONS(4740), 1, + anon_sym_when, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_EQ_GT, + ACTIONS(4746), 1, + anon_sym_EQ, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4762), 1, anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - anon_sym_do, - [163303] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4744), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(4766), 1, + sym__not_in, + ACTIONS(4768), 1, + aux_sym__terminator_token1, + ACTIONS(4771), 1, + anon_sym_SEMI, + STATE(349), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(5601), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3387), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3389), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -306516,32 +306876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [163373] = 4, + [164189] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 5, + aux_sym__terminator_token1, + ACTIONS(3514), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 49, - anon_sym_SEMI, + ACTIONS(3516), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -306588,28 +306935,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [163439] = 5, + [164255] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(3847), 1, aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306651,28 +306999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163507] = 5, + [164323] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4748), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3400), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3402), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306714,28 +307061,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163575] = 5, + [164389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4750), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3396), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3398), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306777,28 +307123,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163643] = 5, + [164455] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4752), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3392), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3394), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306840,28 +307185,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163711] = 5, + [164521] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4754), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3388), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3390), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306903,28 +307247,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163779] = 5, + [164587] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4756), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3384), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3386), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -306966,28 +307309,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163847] = 5, + [164653] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4758), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3380), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3382), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307029,28 +307371,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163915] = 5, + [164719] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4760), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3376), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3378), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307092,28 +307433,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [163983] = 5, + [164785] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4762), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3372), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3374), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307155,28 +307495,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [164051] = 5, + [164851] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4764), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3356), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3358), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307218,28 +307557,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [164119] = 5, + [164917] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4766), 1, - aux_sym_sigil_token3, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + ACTIONS(3346), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3348), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307281,28 +307619,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [164187] = 5, + [164983] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4768), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3208), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3210), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, aux_sym_sigil_token3, - ACTIONS(3), 3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [165049] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3334), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3514), 3, - sym__newline_before_do, + anon_sym_LBRACK2, + ACTIONS(3336), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [165115] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3328), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3330), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -307344,26 +307805,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [164255] = 4, + [165181] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 5, - sym__newline_before_do, + ACTIONS(3324), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, + ACTIONS(3326), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307406,25 +307867,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [164321] = 4, + [165247] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3285), 3, - sym__newline_before_do, + ACTIONS(3320), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 50, + ACTIONS(3322), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307469,18 +307931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [164387] = 4, + [165313] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 3, + ACTIONS(3268), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 51, + ACTIONS(3270), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -307532,17 +307993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164453] = 4, + [165379] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 3, + ACTIONS(3192), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 51, + ACTIONS(3194), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -307594,17 +308055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164519] = 4, + [165445] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 3, + ACTIONS(3260), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 51, + ACTIONS(3262), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -307656,17 +308117,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164585] = 4, + [165511] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3256), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 51, + ACTIONS(3258), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -307718,17 +308179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164651] = 4, + [165577] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 3, + ACTIONS(3252), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3140), 51, + ACTIONS(3254), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -307780,21 +308241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164717] = 4, + [165643] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3845), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -307841,25 +308302,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [164783] = 4, + [165711] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3837), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3152), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -307904,17 +308367,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164849] = 4, + [165779] = 17, ACTIONS(5), 1, sym_comment, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 3, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4415), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4441), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [165871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3248), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 51, + ACTIONS(3250), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -307966,80 +308504,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [164915] = 25, + [165937] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3244), 3, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4337), 1, + ACTIONS(3246), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4349), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4351), 1, anon_sym_COLON_COLON, - ACTIONS(4353), 1, anon_sym_EQ_GT, - ACTIONS(4355), 1, anon_sym_EQ, - ACTIONS(4365), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4367), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, + [166003] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3703), 2, - sym__newline_before_do, + ACTIONS(3240), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4339), 2, + anon_sym_LBRACK2, + ACTIONS(3242), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4347), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4357), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3705), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4363), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3236), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3238), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -308049,24 +308678,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [165023] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166135] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4774), 1, anon_sym_COMMA, - STATE(3248), 1, + STATE(3339), 1, aux_sym_keywords_repeat1, - ACTIONS(3387), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3581), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3389), 49, + anon_sym_LBRACK2, + ACTIONS(3583), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -308112,25 +308752,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [165093] = 4, + [166205] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3835), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308175,24 +308817,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [165159] = 4, + [166273] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3779), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308237,25 +308880,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [165225] = 4, + [166341] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4776), 1, + anon_sym_COMMA, + STATE(3384), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3203), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3120), 48, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308297,26 +308942,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [165291] = 4, + anon_sym_do, + [166411] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3777), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3207), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308361,17 +309007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [165357] = 4, + [166479] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 3, + ACTIONS(3232), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3211), 51, + ACTIONS(3234), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -308423,25 +309069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [165423] = 4, + [166545] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3080), 3, - sym__newline_before_do, + ACTIONS(3228), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3082), 50, - anon_sym_LPAREN, + ACTIONS(3230), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308483,28 +309129,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [165489] = 5, + [166611] = 5, ACTIONS(5), 1, sym_comment, - STATE(3908), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3775), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2986), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 49, + ACTIONS(3168), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308546,26 +309192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [165557] = 4, + [166679] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, + ACTIONS(3440), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 51, + ACTIONS(3442), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308608,28 +309254,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [165623] = 5, + anon_sym_do, + [166745] = 4, ACTIONS(5), 1, sym_comment, - STATE(3907), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, + ACTIONS(3224), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 49, + ACTIONS(3226), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308671,28 +309316,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [165691] = 5, + [166811] = 4, ACTIONS(5), 1, sym_comment, - STATE(3905), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2986), 3, - sym__newline_before_do, + ACTIONS(3432), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 49, + ACTIONS(3434), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308734,28 +309378,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [165759] = 5, + [166877] = 4, ACTIONS(5), 1, sym_comment, - STATE(3903), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2986), 3, + ACTIONS(3114), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2988), 49, + ACTIONS(3116), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -308799,24 +309442,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [165827] = 4, + [166943] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3773), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 51, + ACTIONS(3168), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308861,24 +309505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [165893] = 4, + [167011] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 3, + ACTIONS(3114), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 51, + ACTIONS(3116), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -308921,19 +309565,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [165959] = 4, + anon_sym_do, + [167077] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 3, + ACTIONS(3204), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 51, + ACTIONS(3206), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -308985,87 +309629,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [166025] = 4, + [167143] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3259), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3261), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [166091] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3255), 2, + ACTIONS(3200), 3, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3257), 51, + anon_sym_LBRACK2, + ACTIONS(3202), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309108,26 +309689,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166157] = 4, + [167209] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3251), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3364), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3253), 51, + anon_sym_LBRACK2, + ACTIONS(3366), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309170,26 +309751,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166223] = 4, + [167275] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3368), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2992), 51, + anon_sym_LBRACK2, + ACTIONS(3370), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309232,26 +309813,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166289] = 4, + [167341] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3030), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3196), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3032), 51, + anon_sym_LBRACK2, + ACTIONS(3198), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309294,22 +309875,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166355] = 4, + [167407] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3444), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3144), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3446), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -309357,21 +309938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166421] = 4, + anon_sym_do, + [167473] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3771), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3144), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -309418,22 +310000,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166487] = 4, + [167541] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3769), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -309480,22 +310063,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166553] = 4, + [167609] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3855), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3148), 51, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -309542,29 +310126,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [166619] = 4, + [167677] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3068), 3, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3070), 50, - anon_sym_LPAREN, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4415), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4443), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 21, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [167767] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4445), 1, + anon_sym_in, + ACTIONS(4447), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -309593,33 +310273,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [166685] = 4, + [167853] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3247), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2880), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2980), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3249), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(2982), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -309667,30 +310338,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [166751] = 6, + [167923] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4744), 1, - anon_sym_COMMA, - STATE(3345), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3353), 3, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 4, sym__newline_before_do, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3355), 48, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -309721,27 +310406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [166821] = 4, + [168003] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, + ACTIONS(3172), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 51, + ACTIONS(3174), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -309793,25 +310469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [166887] = 4, + [168069] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2655), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3175), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2657), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309853,27 +310529,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [166953] = 4, + anon_sym_do, + [168135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3333), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3188), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3335), 51, + anon_sym_LBRACK2, + ACTIONS(3190), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -309916,27 +310591,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [167019] = 4, + [168201] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3313), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4779), 1, + anon_sym_COMMA, + STATE(3474), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3315), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3522), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3524), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -309979,80 +310656,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [167085] = 25, + anon_sym_do, + [168271] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3158), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3092), 3, sym__newline_before_do, - ACTIONS(4225), 1, - anon_sym_PIPE, - ACTIONS(4237), 1, - anon_sym_when, - ACTIONS(4239), 1, - anon_sym_COLON_COLON, - ACTIONS(4241), 1, - anon_sym_EQ_GT, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_in, - ACTIONS(4255), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, - anon_sym_STAR_STAR, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(4265), 1, sym__not_in, - ACTIONS(4227), 2, + anon_sym_LBRACK2, + ACTIONS(3094), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4233), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4235), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4245), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4247), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4223), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4249), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4251), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -310062,25 +310707,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [167193] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [168337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3309), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3184), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3311), 51, + anon_sym_LBRACK2, + ACTIONS(3186), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -310123,25 +310779,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [167259] = 4, + [168403] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3263), 5, - sym__newline_before_do, + ACTIONS(3180), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3265), 49, + ACTIONS(3182), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -310184,27 +310841,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [167325] = 4, + [168469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3084), 3, - sym__newline_before_do, + ACTIONS(3176), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3086), 50, - anon_sym_LPAREN, + ACTIONS(3178), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -310246,31 +310903,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [167391] = 4, + [168535] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(4449), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4451), 1, + anon_sym_STAR_STAR, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4419), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4425), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3608), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -310301,34 +310973,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [167457] = 4, + anon_sym_do, + [168615] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2655), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3148), 51, + anon_sym_LBRACK2, + ACTIONS(2657), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -310371,26 +311034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [167523] = 4, + [168681] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2651), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3148), 51, + anon_sym_LBRACK2, + ACTIONS(2653), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -310433,40 +311096,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [167589] = 11, + [168747] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3476), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -310502,40 +311167,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_do, - anon_sym_end, - [167669] = 11, + [168827] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3476), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -310571,45 +311236,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_do, - anon_sym_end, - [167749] = 14, + [168907] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [168973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3436), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3438), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [169039] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4504), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3476), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -310643,49 +311432,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_do, - anon_sym_end, - [167835] = 16, + [169125] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4504), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4474), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -310695,8 +311483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 22, + ACTIONS(3476), 22, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -310717,55 +311506,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_do, - anon_sym_end, - [167925] = 17, + [169215] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4504), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4474), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -310775,8 +311563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 17, + ACTIONS(3476), 17, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -310792,65 +311581,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_and, anon_sym_do, - anon_sym_end, - [168017] = 20, + [169307] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4494), 1, - anon_sym_EQ, - ACTIONS(4504), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4496), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4498), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -310860,8 +311642,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, + ACTIONS(3476), 14, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -310869,86 +311652,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_do, - anon_sym_end, - [168115] = 29, + [169401] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(9), 1, - aux_sym__terminator_token1, - ACTIONS(1525), 1, - ts_builtin_sym_end, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4588), 1, - anon_sym_when, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4604), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4606), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4612), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(4291), 1, sym__not_in, - ACTIONS(4772), 1, - anon_sym_SEMI, - STATE(424), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(5079), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4580), 2, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4586), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4596), 3, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4600), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4602), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -310958,67 +311724,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [168231] = 21, + ACTIONS(3476), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + [169499] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4492), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4494), 1, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4504), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4496), 3, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 9, + ACTIONS(3476), 9, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -311026,8 +311804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_do, - anon_sym_end, - ACTIONS(4502), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311037,82 +311814,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [168331] = 27, + [169599] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 1, - sym__newline_before_do, - ACTIONS(4776), 1, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4780), 1, - anon_sym_COMMA, - ACTIONS(4788), 1, - anon_sym_when, - ACTIONS(4790), 1, + ACTIONS(4267), 1, anon_sym_COLON_COLON, - ACTIONS(4792), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4794), 1, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4804), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4806), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4812), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, + ACTIONS(4291), 1, sym__not_in, - STATE(3495), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3287), 2, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4778), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4784), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4786), 2, + ACTIONS(4273), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4275), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4251), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4277), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4259), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, + anon_sym_when, + anon_sym_do, + ACTIONS(4279), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169703] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4265), 1, + anon_sym_when, + ACTIONS(4267), 1, + anon_sym_COLON_COLON, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(4281), 1, + anon_sym_in, + ACTIONS(4283), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4285), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(4291), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4796), 3, + ACTIONS(4255), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4798), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4774), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4800), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4802), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311122,78 +311977,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [168443] = 23, + [169809] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4476), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4490), 1, + ACTIONS(4265), 1, + anon_sym_when, + ACTIONS(4267), 1, anon_sym_COLON_COLON, - ACTIONS(4492), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4494), 1, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4504), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4496), 3, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(4279), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169915] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4255), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3476), 46, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, anon_sym_do, - anon_sym_end, - ACTIONS(4502), 9, + [169989] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4255), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4259), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311203,79 +312189,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [168547] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [170067] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4476), 1, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3476), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4488), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4490), 1, anon_sym_COLON_COLON, - ACTIONS(4492), 1, anon_sym_EQ_GT, - ACTIONS(4494), 1, anon_sym_EQ, - ACTIONS(4504), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [170139] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4271), 1, + anon_sym_EQ, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3474), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4496), 3, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, + ACTIONS(4259), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_do, - anon_sym_end, - ACTIONS(4482), 6, + ACTIONS(4279), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170241] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4281), 1, + anon_sym_in, + ACTIONS(4283), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4285), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(4291), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4255), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4259), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4279), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [170329] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_LBRACK2, + ACTIONS(4283), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4285), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4287), 1, + anon_sym_STAR_STAR, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4255), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + ACTIONS(3476), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311285,79 +312479,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [168653] = 24, + anon_sym_in, + anon_sym_do, + [170411] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(4453), 1, + anon_sym_DOT, + ACTIONS(4455), 1, anon_sym_LBRACK2, - ACTIONS(4476), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3476), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4488), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4490), 1, anon_sym_COLON_COLON, - ACTIONS(4492), 1, anon_sym_EQ_GT, - ACTIONS(4494), 1, anon_sym_EQ, - ACTIONS(4504), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [170481] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_EQ_GT, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(4445), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4447), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4449), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4451), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4453), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4419), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4496), 3, + ACTIONS(3474), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, + ACTIONS(4415), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4500), 5, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, + ACTIONS(4423), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_do, - anon_sym_end, - ACTIONS(4482), 6, + ACTIONS(4443), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [170647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3082), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3084), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311367,30 +312736,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [168759] = 8, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [170713] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(4774), 1, + anon_sym_COMMA, + STATE(3381), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3575), 3, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4510), 1, + ACTIONS(3577), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3), 2, + [170783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4478), 2, + aux_sym__terminator_token1, + ACTIONS(3448), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3450), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, anon_sym_STAR, - ACTIONS(3371), 3, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [170849] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3506), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 46, + anon_sym_LBRACK2, + ACTIONS(3508), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -311431,27 +312932,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - [168833] = 4, + [170915] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3364), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3249), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3366), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311493,27 +312996,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [168899] = 4, + anon_sym_do, + [170981] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3368), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3245), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3370), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311555,31 +313058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [168965] = 7, + anon_sym_do, + [171047] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - ACTIONS(4818), 1, - sym__newline_before_do, - STATE(4472), 1, - sym_do_block, - ACTIONS(3012), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3014), 48, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311622,27 +313121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169037] = 7, + anon_sym_do, + [171113] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - ACTIONS(4820), 1, - sym__newline_before_do, - STATE(4470), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2988), 48, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -311687,41 +313183,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [169109] = 10, + anon_sym_do, + [171179] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4478), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3448), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 38, + anon_sym_LBRACK2, + ACTIONS(3450), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -311753,31 +313237,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - [169187] = 7, + [171245] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + aux_sym__terminator_token1, + ACTIONS(3436), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3373), 48, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3438), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -311818,79 +313305,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - [169259] = 22, + [171311] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4476), 1, - anon_sym_PIPE, - ACTIONS(4492), 1, - anon_sym_EQ_GT, - ACTIONS(4494), 1, - anon_sym_EQ, - ACTIONS(4504), 1, - anon_sym_in, - ACTIONS(4506), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, - anon_sym_STAR_STAR, - ACTIONS(4512), 1, - anon_sym_DOT, - ACTIONS(4514), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(3444), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3446), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4496), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4498), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4474), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4500), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - anon_sym_end, - ACTIONS(4502), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311900,43 +313358,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [169361] = 15, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [171377] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4504), 1, + ACTIONS(3668), 1, + sym__newline_before_do, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4491), 1, + anon_sym_when, + ACTIONS(4493), 1, + anon_sym_COLON_COLON, + ACTIONS(4495), 1, + anon_sym_EQ_GT, + ACTIONS(4497), 1, + anon_sym_EQ, + ACTIONS(4507), 1, anon_sym_in, - ACTIONS(4506), 1, + ACTIONS(4509), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4512), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(4519), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4478), 2, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4482), 6, + ACTIONS(4489), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4499), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4501), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3670), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4477), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4503), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4502), 9, + ACTIONS(4505), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -311946,12 +313453,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, - anon_sym_SEMI, + [171485] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_COMMA, + STATE(3384), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3581), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3583), 48, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -311971,47 +313496,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_do, - anon_sym_end, - [169449] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4506), 1, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, anon_sym_CARET_CARET_CARET, - ACTIONS(4508), 1, anon_sym_SLASH_SLASH, - ACTIONS(4510), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4512), 1, anon_sym_DOT, - ACTIONS(3), 2, + anon_sym_do, + [171555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4478), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4484), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + aux_sym__terminator_token1, + ACTIONS(3440), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4482), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, + anon_sym_LBRACK2, + ACTIONS(3442), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -312041,24 +313568,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_end, - [169531] = 6, + [171621] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2549), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3118), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2970), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312105,27 +313639,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [169601] = 4, + anon_sym_do, + [171687] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2970), 51, + anon_sym_LBRACK2, + ACTIONS(3124), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312168,26 +313701,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [169667] = 4, + [171753] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3165), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3126), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3167), 51, + anon_sym_LBRACK2, + ACTIONS(3128), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312230,26 +313763,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [169733] = 4, + [171819] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3165), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3167), 51, + anon_sym_LBRACK2, + ACTIONS(3132), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312292,27 +313825,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [169799] = 6, + [171885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2544), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2970), 49, + anon_sym_LBRACK2, + ACTIONS(3136), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312357,26 +313889,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [169869] = 6, + [171951] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2543), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2970), 49, + anon_sym_LBRACK2, + ACTIONS(3140), 51, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312421,21 +313951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [169939] = 4, + [172017] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3490), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3171), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3492), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -312483,28 +314012,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170005] = 6, + anon_sym_do, + [172083] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4770), 1, - anon_sym_COMMA, - STATE(3370), 1, - aux_sym_keywords_repeat1, - ACTIONS(3353), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3476), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [172149] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3355), 49, + anon_sym_LBRACK2, + ACTIONS(3164), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -312546,26 +314135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170075] = 4, + [172215] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3173), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3444), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3175), 51, + anon_sym_LBRACK2, + ACTIONS(3446), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312608,26 +314197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170141] = 4, + [172281] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3177), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3440), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3179), 51, + anon_sym_LBRACK2, + ACTIONS(3442), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312670,26 +314259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170207] = 4, + [172347] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3189), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3158), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3191), 51, + anon_sym_LBRACK2, + ACTIONS(3160), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312732,26 +314321,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170273] = 4, + [172413] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3193), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3156), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [172479] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3195), 51, + anon_sym_LBRACK2, + ACTIONS(3148), 51, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -312794,18 +314445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [170339] = 4, + [172545] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, + ACTIONS(3142), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 51, + ACTIONS(3144), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -312857,29 +314509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [170405] = 7, + [172611] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - ACTIONS(4822), 1, - sym__newline_before_do, - STATE(4468), 1, - sym_do_block, - ACTIONS(2986), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3484), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2988), 48, + anon_sym_LBRACK2, + ACTIONS(3486), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -312922,26 +314570,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170477] = 4, + anon_sym_do, + [172677] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4783), 1, + anon_sym_COMMA, + STATE(3471), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -312984,21 +314634,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170543] = 4, + anon_sym_do, + [172747] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3498), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3199), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3500), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -313046,24 +314696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170609] = 6, + anon_sym_do, + [172813] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3498), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3199), 50, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3500), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -313110,26 +314757,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [170679] = 4, + anon_sym_DOT, + anon_sym_do, + [172879] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4786), 1, + anon_sym_COMMA, + STATE(3474), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3532), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3534), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313172,26 +314822,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [170745] = 5, + anon_sym_do, + [172949] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3030), 3, + ACTIONS(3494), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 49, + ACTIONS(3496), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313235,26 +314885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [170813] = 5, + [173015] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2990), 3, - sym__newline_before_do, + ACTIONS(2627), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, + ACTIONS(2629), 51, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -313296,19 +314945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [170881] = 4, + [173081] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 3, + ACTIONS(2623), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(2625), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -313360,24 +315009,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [170947] = 4, + [173147] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 3, + ACTIONS(3545), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 51, + ACTIONS(3547), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -313420,46 +315069,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [171013] = 11, + anon_sym_do, + [173213] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4369), 1, + ACTIONS(3532), 1, + sym__newline_before_do, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4491), 1, + anon_sym_when, + ACTIONS(4493), 1, + anon_sym_COLON_COLON, + ACTIONS(4495), 1, + anon_sym_EQ_GT, + ACTIONS(4497), 1, + anon_sym_EQ, + ACTIONS(4507), 1, + anon_sym_in, + ACTIONS(4509), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4511), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + ACTIONS(4513), 1, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4339), 2, + ACTIONS(4517), 1, + anon_sym_LBRACK2, + ACTIONS(4519), 1, + sym__not_in, + ACTIONS(4481), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4345), 2, + ACTIONS(4487), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, + ACTIONS(4489), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4343), 6, + ACTIONS(4499), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4501), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3534), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4477), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4503), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4485), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(4505), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [173321] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3478), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3480), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -313490,45 +315206,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - [171093] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4369), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, anon_sym_DOT, + anon_sym_do, + [173387] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3494), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, + anon_sym_LBRACK2, + ACTIONS(3496), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -313559,50 +315268,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - [171173] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, anon_sym_DOT, - ACTIONS(4375), 1, + anon_sym_do, + [173453] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(636), 1, + anon_sym_do, + ACTIONS(4789), 1, + sym__newline_before_do, + STATE(4545), 1, + sym_do_block, + ACTIONS(3074), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3076), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -313631,63 +315332,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_do, - [171259] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4365), 1, anon_sym_in, - ACTIONS(4367), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, + [173525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4335), 4, + ACTIONS(2635), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2637), 50, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 22, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -313705,24 +315382,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [171349] = 7, + [173591] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(636), 1, anon_sym_do, - ACTIONS(4824), 1, + ACTIONS(4791), 1, sym__newline_before_do, - STATE(4466), 1, + STATE(4431), 1, sym_do_block, - ACTIONS(3050), 2, + ACTIONS(2986), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3052), 48, + ACTIONS(2988), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -313771,14 +315470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171421] = 7, + [173663] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(636), 1, anon_sym_do, - ACTIONS(4826), 1, + ACTIONS(4793), 1, sym__newline_before_do, - STATE(4465), 1, + STATE(4425), 1, sym_do_block, ACTIONS(2986), 2, sym__not_in, @@ -313836,68 +315535,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [171493] = 17, + [173735] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4335), 4, + ACTIONS(2631), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2633), 50, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 17, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -313910,59 +315569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_do, - [171585] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4359), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -313972,79 +315585,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [171679] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4355), 1, - anon_sym_EQ, - ACTIONS(4365), 1, anon_sym_in, - ACTIONS(4367), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, anon_sym_DOT, - ACTIONS(4375), 1, + anon_sym_do, + [173801] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(636), 1, + anon_sym_do, + ACTIONS(4795), 1, + sym__newline_before_do, + STATE(4420), 1, + sym_do_block, + ACTIONS(3058), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, + ACTIONS(3060), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4357), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -314054,87 +315651,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - [171777] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4353), 1, - anon_sym_EQ_GT, - ACTIONS(4355), 1, - anon_sym_EQ, - ACTIONS(4365), 1, anon_sym_in, - ACTIONS(4367), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, + [173873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, + ACTIONS(2623), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2625), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4357), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4363), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -314144,78 +315712,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [171877] = 23, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [173939] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(3660), 1, anon_sym_LBRACK2, - ACTIONS(4337), 1, + ACTIONS(4253), 1, anon_sym_PIPE, - ACTIONS(4351), 1, + ACTIONS(4265), 1, + anon_sym_when, + ACTIONS(4267), 1, anon_sym_COLON_COLON, - ACTIONS(4353), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4355), 1, + ACTIONS(4271), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(4281), 1, anon_sym_in, - ACTIONS(4367), 1, + ACTIONS(4283), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, + ACTIONS(4285), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + ACTIONS(4287), 1, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + ACTIONS(4289), 1, anon_sym_DOT, - ACTIONS(4375), 1, + ACTIONS(4291), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3532), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4339), 2, + ACTIONS(4255), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4345), 2, + ACTIONS(4261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4357), 3, + ACTIONS(4263), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4273), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, + ACTIONS(4275), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4335), 4, + ACTIONS(3534), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4251), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4361), 5, + ACTIONS(4277), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, + ACTIONS(4259), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4363), 9, + ACTIONS(4279), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -314225,79 +315807,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [171981] = 24, + [174047] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4337), 1, + ACTIONS(4417), 1, anon_sym_PIPE, - ACTIONS(4349), 1, + ACTIONS(4429), 1, anon_sym_when, - ACTIONS(4351), 1, + ACTIONS(4431), 1, anon_sym_COLON_COLON, - ACTIONS(4353), 1, + ACTIONS(4433), 1, anon_sym_EQ_GT, - ACTIONS(4355), 1, + ACTIONS(4435), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(4445), 1, anon_sym_in, - ACTIONS(4367), 1, + ACTIONS(4447), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, + ACTIONS(4449), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + ACTIONS(4451), 1, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + ACTIONS(4453), 1, anon_sym_DOT, - ACTIONS(4375), 1, + ACTIONS(4455), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4339), 2, + ACTIONS(4419), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4345), 2, + ACTIONS(4425), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4357), 3, + ACTIONS(4427), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3668), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3670), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4437), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, + ACTIONS(4439), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4335), 4, + ACTIONS(4415), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4361), 5, + ACTIONS(4441), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4343), 6, + ACTIONS(4423), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4363), 9, + ACTIONS(4443), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -314307,25 +315890,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [172087] = 4, + [174155] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2627), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2629), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314367,49 +315950,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [172153] = 4, + anon_sym_do, + [174221] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3229), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 51, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3272), 1, + sym__newline_before_do, + ACTIONS(4799), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(4803), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4811), 1, anon_sym_when, + ACTIONS(4813), 1, anon_sym_COLON_COLON, + ACTIONS(4815), 1, anon_sym_EQ_GT, + ACTIONS(4817), 1, anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + STATE(3411), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3274), 2, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4809), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -314419,39 +316037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [172219] = 6, + [174333] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - STATE(3471), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 3, + ACTIONS(2980), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 49, + ACTIONS(2982), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314493,107 +316097,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [172289] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4337), 1, - anon_sym_PIPE, - ACTIONS(4349), 1, - anon_sym_when, - ACTIONS(4351), 1, - anon_sym_COLON_COLON, - ACTIONS(4353), 1, - anon_sym_EQ_GT, - ACTIONS(4355), 1, - anon_sym_EQ, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4357), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4359), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, anon_sym_do, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [172395] = 6, + [174399] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4781), 1, anon_sym_COMMA, - STATE(3468), 1, + STATE(3453), 1, aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3575), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3283), 49, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3577), 48, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -314639,33 +316161,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [172465] = 8, + anon_sym_do, + [174469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(2635), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 46, + anon_sym_LBRACK2, + ACTIONS(2637), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -314706,43 +316221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_do, - [172539] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4371), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + anon_sym_DASH_GT, anon_sym_DOT, + [174535] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(2631), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 38, + anon_sym_LBRACK2, + ACTIONS(2633), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -314774,28 +316278,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_do, - [172617] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [174601] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - STATE(3468), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3389), 49, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2653), 50, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -314837,114 +316347,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [172687] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4178), 1, - anon_sym_PIPE, - ACTIONS(4190), 1, - anon_sym_when, - ACTIONS(4192), 1, - anon_sym_COLON_COLON, - ACTIONS(4194), 1, - anon_sym_EQ_GT, - ACTIONS(4196), 1, - anon_sym_EQ, - ACTIONS(4206), 1, - anon_sym_in, - ACTIONS(4208), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4210), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4212), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, anon_sym_DOT, - ACTIONS(4216), 1, - anon_sym_LBRACK2, - ACTIONS(4218), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4180), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4186), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4188), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3703), 3, - sym__newline_before_do, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(3705), 3, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_do, - ACTIONS(4198), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4200), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4176), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4202), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4184), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4204), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [172795] = 7, + [174667] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3432), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 48, + anon_sym_LBRACK2, + ACTIONS(3434), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -314986,124 +316408,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [172867] = 22, + anon_sym_STAR_STAR, + anon_sym_DOT, + [174732] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(4337), 1, - anon_sym_PIPE, - ACTIONS(4353), 1, - anon_sym_EQ_GT, - ACTIONS(4355), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(3757), 1, anon_sym_in, - ACTIONS(4367), 1, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - ACTIONS(4373), 1, + ACTIONS(3765), 1, anon_sym_DOT, - ACTIONS(4375), 1, + ACTIONS(3767), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4339), 2, + ACTIONS(3730), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4345), 2, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4357), 3, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4359), 3, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4335), 4, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4361), 5, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4363), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [172969] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4343), 6, + ACTIONS(3734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4363), 9, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315113,11 +316476,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, + ACTIONS(3476), 10, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -315125,61 +316486,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_do, - [173057] = 12, + anon_sym_DASH_GT, + [174829] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__newline_before_do, + ACTIONS(3122), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, + anon_sym_LBRACK2, + ACTIONS(3124), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -315209,109 +316538,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [173139] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3703), 1, - sym__newline_before_do, - ACTIONS(4225), 1, - anon_sym_PIPE, - ACTIONS(4237), 1, - anon_sym_when, - ACTIONS(4239), 1, - anon_sym_COLON_COLON, - ACTIONS(4241), 1, - anon_sym_EQ_GT, - ACTIONS(4243), 1, - anon_sym_EQ, - ACTIONS(4253), 1, - anon_sym_in, - ACTIONS(4255), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4257), 1, anon_sym_SLASH_SLASH, - ACTIONS(4259), 1, - anon_sym_STAR_STAR, - ACTIONS(4261), 1, - anon_sym_DOT, - ACTIONS(4263), 1, - anon_sym_LBRACK2, - ACTIONS(4265), 1, - sym__not_in, - ACTIONS(4227), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4233), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4235), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4245), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4247), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3705), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - ACTIONS(4223), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4249), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4231), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4251), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [173247] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [174894] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3088), 3, - sym__newline_before_do, + ACTIONS(2627), 5, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3090), 50, - anon_sym_LPAREN, + ACTIONS(2629), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -315354,18 +316609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [173313] = 4, + [174959] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 3, + ACTIONS(3126), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2641), 51, + ACTIONS(3128), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -315415,19 +316669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173379] = 4, + [175024] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 3, + ACTIONS(3130), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2637), 51, + ACTIONS(3132), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -315477,23 +316730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [173445] = 4, + [175089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3277), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2623), 5, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3279), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2625), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -315541,21 +316792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [173511] = 4, + [175154] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3008), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3052), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3010), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -315603,84 +316853,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [173577] = 29, + [175219] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(1303), 1, - anon_sym_RPAREN, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_when, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - ACTIONS(4702), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, - sym__not_in, - ACTIONS(4833), 1, - aux_sym__terminator_token1, - ACTIONS(4836), 1, - anon_sym_SEMI, - STATE(346), 1, - sym__terminator, - STATE(1029), 1, - aux_sym__terminator_repeat1, - STATE(5614), 1, - aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4694), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4704), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4710), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -315690,25 +316903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [173693] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [175284] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 51, + anon_sym_LBRACK2, + ACTIONS(3140), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -315752,25 +316975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [173759] = 4, + [175349] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3142), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 51, + anon_sym_LBRACK2, + ACTIONS(3144), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -315814,89 +317036,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [173825] = 6, + [175414] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 50, + anon_sym_LBRACK2, + ACTIONS(3148), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - [173895] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3293), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -315940,25 +317097,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [173961] = 4, + [175479] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3154), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3299), 51, + anon_sym_LBRACK2, + ACTIONS(3156), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -316002,107 +317158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [174027] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3690), 1, - anon_sym_LBRACK2, - ACTIONS(4337), 1, - anon_sym_PIPE, - ACTIONS(4349), 1, - anon_sym_when, - ACTIONS(4351), 1, - anon_sym_COLON_COLON, - ACTIONS(4353), 1, - anon_sym_EQ_GT, - ACTIONS(4355), 1, - anon_sym_EQ, - ACTIONS(4365), 1, - anon_sym_in, - ACTIONS(4367), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4369), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4371), 1, - anon_sym_STAR_STAR, - ACTIONS(4373), 1, - anon_sym_DOT, - ACTIONS(4375), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3158), 2, - sym__newline_before_do, - aux_sym__terminator_token1, - ACTIONS(4339), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4345), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4347), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4357), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4359), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3160), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4361), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4343), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4363), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [174135] = 4, + [175544] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4841), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 3, + ACTIONS(3166), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(3168), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -316145,19 +317219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [174201] = 4, + [175611] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 3, + ACTIONS(3158), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 51, + ACTIONS(3160), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -316207,85 +317280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [174267] = 4, + [175676] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3243), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4843), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3245), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [174333] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3301), 2, + ACTIONS(3166), 4, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3303), 51, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316333,25 +317343,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [174399] = 4, + [175743] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3305), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3307), 51, + anon_sym_LBRACK2, + ACTIONS(3164), 50, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -316395,27 +317404,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [174465] = 6, + [175808] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_COMMA, - STATE(2975), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3237), 3, - sym__newline_before_do, + ACTIONS(3172), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 48, + ACTIONS(3174), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316458,20 +317465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [174535] = 4, + [175873] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3006), 3, + ACTIONS(3272), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3008), 50, - anon_sym_LPAREN, + ACTIONS(3274), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316521,19 +317526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [174601] = 4, + [175938] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4845), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 5, - sym__newline_before_do, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 49, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -316582,18 +317588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [174667] = 4, + [176005] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3176), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3235), 50, + anon_sym_LBRACK2, + ACTIONS(3178), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -316642,25 +317648,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [174732] = 4, + [176070] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4847), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, + ACTIONS(3166), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 50, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -316704,25 +317711,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [174797] = 4, + [176137] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2996), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4849), 1, + anon_sym_COMMA, + STATE(3520), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3118), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2998), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3120), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -316764,22 +317773,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [174862] = 4, + [176206] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4852), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 4, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 49, + ACTIONS(3168), 48, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316827,19 +317836,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [174927] = 4, + [176273] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3000), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4854), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3002), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316886,22 +317897,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [174992] = 4, + [176340] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4856), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3076), 4, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3078), 49, + ACTIONS(3168), 48, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -316949,27 +317960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175057] = 6, + [176407] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3457), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3184), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2970), 48, + anon_sym_LBRACK2, + ACTIONS(3186), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317012,27 +318021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175126] = 6, + [176472] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3443), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4858), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2970), 48, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317075,43 +318083,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175195] = 11, + [176539] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4669), 1, + ACTIONS(3056), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, + anon_sym_DOT, + [176604] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3188), 3, sym__not_in, - ACTIONS(4639), 2, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3190), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176669] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3192), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4643), 6, + anon_sym_LBRACK2, + ACTIONS(3194), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176734] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3244), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3246), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -317142,20 +318317,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_do, - [175274] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [176799] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 4, + ACTIONS(3196), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3369), 49, + ACTIONS(3198), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317204,20 +318388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175339] = 4, + [176864] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3096), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3080), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3082), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3098), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317264,25 +318448,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [175404] = 4, + [176931] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3086), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3365), 49, - anon_sym_SEMI, + ACTIONS(3088), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -317325,25 +318510,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [175469] = 4, + [176998] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4860), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 4, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 49, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -317387,19 +318574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175534] = 4, + [177065] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 4, + ACTIONS(3200), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 49, + ACTIONS(3202), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317448,24 +318635,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175599] = 4, + [177130] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4862), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 49, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -317509,24 +318697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175664] = 4, + [177197] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3169), 3, - sym__newline_before_do, + ACTIONS(3204), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 49, + ACTIONS(3206), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317569,20 +318758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [175729] = 4, + [177262] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + ACTIONS(3224), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 49, + ACTIONS(3226), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317631,19 +318819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175794] = 4, + [177327] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 4, + ACTIONS(3228), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 49, + ACTIONS(3230), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317692,25 +318880,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175859] = 4, + [177392] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3156), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3331), 49, - anon_sym_SEMI, + ACTIONS(2982), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -317753,19 +318943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175924] = 4, + [177461] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 4, + ACTIONS(3232), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 49, + ACTIONS(3234), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317814,18 +319004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [175989] = 4, + [177526] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3484), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3173), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3175), 49, + ACTIONS(2982), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317874,20 +319067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [176054] = 4, + [177595] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 4, + ACTIONS(3236), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 49, + ACTIONS(3238), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -317936,18 +319128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176119] = 4, + [177660] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 4, + ACTIONS(3320), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3323), 49, + ACTIONS(3322), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -317997,27 +319189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176184] = 6, + [177725] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3424), 1, - sym__call_arguments_with_parentheses, - ACTIONS(2968), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3240), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2970), 48, + anon_sym_LBRACK2, + ACTIONS(3242), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -318060,25 +319250,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176253] = 5, + [177790] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4841), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3324), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3326), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318122,25 +319311,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176320] = 5, + [177855] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4843), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3268), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3270), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318184,24 +319372,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176387] = 4, + [177920] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3094), 2, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3485), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2980), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3096), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2982), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -318243,21 +319434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176452] = 4, + [177989] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 4, + ACTIONS(3244), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 49, + ACTIONS(3246), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318306,18 +319496,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176517] = 4, + [178054] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 4, + ACTIONS(3264), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3319), 49, + ACTIONS(3266), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -318367,86 +319557,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176582] = 4, + [178119] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3281), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3283), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [176647] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4845), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3260), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3262), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318490,24 +319618,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176714] = 4, + [178184] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 5, + ACTIONS(3248), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 48, + ACTIONS(3250), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318551,23 +319679,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176779] = 4, + [178249] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2643), 3, + ACTIONS(3252), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 49, + ACTIONS(3254), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318610,25 +319739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176844] = 4, + [178314] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3256), 4, sym__not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 49, - anon_sym_RPAREN, + ACTIONS(3258), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318671,20 +319800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [176909] = 4, + [178379] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3252), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 49, + ACTIONS(3254), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -318734,19 +319862,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [176974] = 4, + [178444] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3256), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 49, + ACTIONS(3258), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -318795,103 +319923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177039] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4855), 1, - anon_sym_COMMA, - ACTIONS(4863), 1, - anon_sym_when, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - STATE(6170), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4847), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4861), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [177148] = 5, + [178509] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(4864), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -318940,23 +319985,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177215] = 4, + [178576] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3462), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4866), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3464), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -318999,26 +320046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177280] = 4, + [178643] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4868), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 4, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3116), 49, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -319062,19 +320109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177345] = 4, + [178710] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 4, + ACTIONS(3260), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 49, + ACTIONS(3262), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -319123,45 +320170,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177410] = 12, + [178775] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3180), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(3182), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -319191,59 +320221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [177491] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4663), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, - anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178840] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4870), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -319263,77 +320273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_do, - [177578] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4637), 1, - anon_sym_PIPE, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4659), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4663), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -319343,25 +320282,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [177679] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [178907] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4872), 1, + anon_sym_COMMA, + STATE(3562), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 4, + ACTIONS(3118), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3104), 49, + ACTIONS(3120), 48, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -319404,18 +320356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177744] = 4, + [178976] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3458), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3248), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3460), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3250), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -319463,20 +320416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [177809] = 4, + [179041] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(2996), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 49, + ACTIONS(2998), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -319526,28 +320478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [177874] = 7, + [179106] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3268), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 47, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(3270), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -319589,42 +320537,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [177945] = 10, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179171] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3320), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(3322), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -319656,18 +320592,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_do, - [178022] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179236] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3454), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3324), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3456), 50, + anon_sym_LBRACK2, + ACTIONS(3326), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -319716,32 +320660,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [178087] = 8, + [179301] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(4875), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 45, - anon_sym_LBRACE, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -319782,79 +320720,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_do, - [178160] = 24, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179368] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3328), 3, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4637), 1, + ACTIONS(3330), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4649), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4651), 1, anon_sym_COLON_COLON, - ACTIONS(4653), 1, anon_sym_EQ_GT, - ACTIONS(4655), 1, anon_sym_EQ, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -319864,78 +320773,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [178265] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4637), 1, - anon_sym_PIPE, - ACTIONS(4649), 1, - anon_sym_when, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, anon_sym_in, - ACTIONS(4667), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + anon_sym_DOT, + [179433] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4877), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, sym__not_in, - ACTIONS(4639), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -319945,77 +320835,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [178370] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4637), 1, - anon_sym_PIPE, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, anon_sym_in, - ACTIONS(4667), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + anon_sym_DOT, + [179500] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4879), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, sym__not_in, - ACTIONS(4639), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -320025,24 +320897,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [178473] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179567] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 4, + ACTIONS(3334), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 49, + ACTIONS(3336), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -320086,75 +320969,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178538] = 21, + [179632] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(4881), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, sym__not_in, - ACTIONS(4639), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -320164,74 +321020,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [178637] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, anon_sym_in, - ACTIONS(4667), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + anon_sym_DOT, + [179699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3244), 4, sym__not_in, - ACTIONS(4639), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3246), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4657), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -320241,19 +321081,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [178734] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179764] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4883), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 5, + ACTIONS(3166), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2637), 48, + ACTIONS(3168), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -320302,26 +321154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [178799] = 6, + [179831] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_COMMA, - STATE(3556), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, + ACTIONS(3208), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 48, + ACTIONS(3210), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320364,27 +321215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [178868] = 6, + [179896] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4894), 1, - anon_sym_COMMA, - STATE(3556), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 3, + ACTIONS(3334), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 48, + ACTIONS(3336), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320427,49 +321276,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [178937] = 6, + [179961] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(4894), 1, - anon_sym_COMMA, - STATE(3557), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3353), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3355), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4889), 1, anon_sym_PIPE, + ACTIONS(4893), 1, + anon_sym_COMMA, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + STATE(6046), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4885), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -320479,36 +321359,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [179006] = 4, + [180070] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3574), 3, - sym__newline_before_do, + ACTIONS(3208), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3576), 49, + ACTIONS(3210), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320551,19 +321420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [179071] = 4, + [180135] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + ACTIONS(3346), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 49, + ACTIONS(3348), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -320613,24 +321481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [179136] = 4, + [180200] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3522), 3, - sym__newline_before_do, + ACTIONS(3356), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 49, + ACTIONS(3358), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -320673,26 +321542,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [179201] = 5, + [180265] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4896), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3372), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3374), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -320736,17 +321603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [179268] = 4, + [180330] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3450), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3346), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3452), 50, + anon_sym_LBRACK2, + ACTIONS(3348), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -320795,20 +321663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179333] = 4, + [180395] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3446), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3376), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3448), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3378), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -320856,19 +321724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179398] = 4, + [180460] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3442), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3356), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3444), 50, + anon_sym_LBRACK2, + ACTIONS(3358), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -320917,19 +321785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179463] = 4, + [180525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3438), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3372), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3440), 50, + anon_sym_LBRACK2, + ACTIONS(3374), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -320978,19 +321846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179528] = 4, + [180590] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3434), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3376), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3436), 50, + anon_sym_LBRACK2, + ACTIONS(3378), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -321039,19 +321907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179593] = 4, + [180655] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3426), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3380), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3428), 50, + anon_sym_LBRACK2, + ACTIONS(3382), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -321100,20 +321968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179658] = 4, + [180720] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3422), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3380), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3424), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3382), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -321161,27 +322029,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179723] = 4, + [180785] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4927), 1, + anon_sym_COMMA, + STATE(3562), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3072), 4, + ACTIONS(3581), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3074), 49, + ACTIONS(3583), 48, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321224,18 +322093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [179788] = 4, + [180854] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3402), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3328), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3404), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -321283,25 +322153,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179853] = 4, + [180919] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3395), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2631), 5, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3397), 50, - anon_sym_RPAREN, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -321344,20 +322214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179918] = 4, + [180984] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3383), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3240), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3385), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3242), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -321405,22 +322275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [179983] = 5, + [181049] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4898), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2635), 5, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(2637), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -321469,25 +322337,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180050] = 5, + [181114] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4900), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3384), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3386), 50, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -321531,24 +322398,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180117] = 4, + [181179] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3259), 3, - sym__newline_before_do, + ACTIONS(3236), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 49, + ACTIONS(3238), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321591,25 +322459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180182] = 4, + [181244] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3255), 3, - sym__newline_before_do, + ACTIONS(3264), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3257), 49, + ACTIONS(3266), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321652,28 +322520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180247] = 6, + [181309] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4902), 1, - anon_sym_COMMA, - STATE(3578), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, + ACTIONS(3392), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 48, + ACTIONS(3394), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321716,24 +322581,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180316] = 4, + [181374] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3251), 3, - sym__newline_before_do, + ACTIONS(3232), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 49, + ACTIONS(3234), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321776,19 +322642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180381] = 4, + [181439] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 4, + ACTIONS(3388), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 49, + ACTIONS(3390), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -321838,17 +322703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180446] = 4, + [181504] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3379), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3396), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3381), 50, + anon_sym_LBRACK2, + ACTIONS(3398), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -321897,26 +322763,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [180511] = 4, + [181569] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(4929), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3030), 3, - sym__newline_before_do, + ACTIONS(3166), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 49, + ACTIONS(3168), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -321959,25 +322826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180576] = 4, + [181636] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2990), 3, - sym__newline_before_do, + ACTIONS(3162), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, + ACTIONS(3164), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322020,25 +322887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180641] = 4, + [181701] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2990), 3, - sym__newline_before_do, + ACTIONS(3392), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, + ACTIONS(3394), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322081,25 +322948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180706] = 4, + [181766] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3030), 3, - sym__newline_before_do, + ACTIONS(2655), 5, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3032), 49, + ACTIONS(2657), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322142,25 +323009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180771] = 4, + [181831] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3142), 3, - sym__newline_before_do, + ACTIONS(3400), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 49, + ACTIONS(3402), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322203,25 +323070,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180836] = 4, + [181896] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3142), 3, - sym__newline_before_do, + ACTIONS(3228), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3144), 49, + ACTIONS(3230), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322264,26 +323131,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [180901] = 4, + [181961] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4927), 1, + anon_sym_COMMA, + STATE(3590), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 5, + ACTIONS(3575), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2629), 48, + ACTIONS(3577), 48, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322326,17 +323194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180966] = 4, + [182030] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3375), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3404), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3377), 50, + anon_sym_LBRACK2, + ACTIONS(3406), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322385,81 +323254,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [181031] = 25, + [182095] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3703), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3396), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4637), 1, + ACTIONS(3398), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4649), 1, - anon_sym_when, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4647), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3705), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4657), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -322469,106 +323305,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [181138] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3158), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4637), 1, - anon_sym_PIPE, - ACTIONS(4649), 1, - anon_sym_when, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, anon_sym_in, - ACTIONS(4667), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3160), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(4657), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4659), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4663), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [181245] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [182160] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 4, + ACTIONS(3400), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 49, + ACTIONS(3402), 49, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -322612,24 +323377,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181310] = 4, + [182225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3466), 3, - sym__newline_before_do, + ACTIONS(3404), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 49, + ACTIONS(3406), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322672,80 +323438,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [181375] = 25, + [182290] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3703), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(3792), 1, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(3794), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(3796), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(3806), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(3808), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(4925), 1, sym__not_in, - ACTIONS(4905), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3705), 4, - anon_sym_SEMI, + ACTIONS(3534), 4, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3775), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -322755,24 +323519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [181482] = 4, + [182395] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3247), 3, - sym__newline_before_do, + ACTIONS(3388), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 49, + ACTIONS(3390), 50, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -322815,80 +323580,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [181547] = 25, + [182460] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3699), 1, - sym__newline_before_do, - ACTIONS(4039), 1, + ACTIONS(4107), 1, anon_sym_DOT, - ACTIONS(4041), 1, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(4637), 1, - anon_sym_PIPE, - ACTIONS(4649), 1, - anon_sym_when, - ACTIONS(4651), 1, - anon_sym_COLON_COLON, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - ACTIONS(4655), 1, - anon_sym_EQ, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, + ACTIONS(4715), 1, anon_sym_STAR_STAR, - ACTIONS(4673), 1, + ACTIONS(3474), 2, + sym__newline_before_do, sym__not_in, - ACTIONS(4639), 2, + ACTIONS(4683), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4645), 2, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4647), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3701), 3, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_do, - ACTIONS(4657), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4659), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -322898,24 +323645,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [181654] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [182539] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 4, + ACTIONS(2651), 5, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3124), 49, + ACTIONS(2653), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -322959,28 +323709,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [181719] = 4, + [182604] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3128), 49, - anon_sym_SEMI, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323011,37 +323776,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_do, + [182683] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [181784] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3130), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3132), 49, - anon_sym_SEMI, + ACTIONS(3476), 34, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323070,39 +323847,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_do, + [182768] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, anon_sym_in, + ACTIONS(4711), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4715), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [181849] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3136), 49, - anon_sym_SEMI, + ACTIONS(4679), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 21, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323120,8 +323920,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_do, + [182857] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4705), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -323131,39 +323978,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 16, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [182948] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, anon_sym_in, + ACTIONS(4711), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4715), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [181914] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3140), 49, - anon_sym_SEMI, + ACTIONS(4703), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4679), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 13, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323173,16 +324069,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_do, + [183041] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4701), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -323192,58 +324147,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [183138] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4697), 1, + anon_sym_EQ_GT, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(4709), 1, anon_sym_in, + ACTIONS(4711), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4715), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - [181979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3152), 49, - anon_sym_SEMI, + ACTIONS(4701), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4703), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4679), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_LBRACE, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4707), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [183237] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4681), 1, + anon_sym_PIPE, + ACTIONS(4695), 1, + anon_sym_COLON_COLON, + ACTIONS(4697), 1, anon_sym_EQ_GT, + ACTIONS(4699), 1, anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -323253,57 +324305,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [182044] = 4, + [183340] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3590), 3, + ACTIONS(3474), 1, sym__newline_before_do, - sym__not_in, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(3592), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4681), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4693), 1, anon_sym_when, + ACTIONS(4695), 1, anon_sym_COLON_COLON, + ACTIONS(4697), 1, anon_sym_EQ_GT, + ACTIONS(4699), 1, anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -323313,58 +324386,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [182109] = 4, + [183445] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4681), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4693), 1, anon_sym_when, + ACTIONS(4695), 1, anon_sym_COLON_COLON, + ACTIONS(4697), 1, anon_sym_EQ_GT, + ACTIONS(4699), 1, anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -323374,36 +324467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [182174] = 4, + [183550] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3289), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3291), 49, + ACTIONS(3476), 45, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323443,31 +324531,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [182239] = 4, + [183623] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_SEMI, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323499,28 +324598,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [182304] = 4, + anon_sym_do, + [183700] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3072), 2, - sym__not_in, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3074), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3476), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -323566,49 +324662,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [182369] = 4, + anon_sym_do, + [183771] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2639), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(2641), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4681), 1, anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_EQ_GT, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -323618,41 +324742,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [183872] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4709), 1, anon_sym_in, + ACTIONS(4711), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [182434] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4907), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3514), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 48, - anon_sym_SEMI, + ACTIONS(4707), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 25, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323672,47 +324813,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, + anon_sym_do, + [183959] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4711), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [182501] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2635), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_SEMI, + ACTIONS(3476), 35, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -323742,35 +324882,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [182566] = 4, + anon_sym_do, + [184040] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3243), 3, - sym__newline_before_do, + ACTIONS(3384), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 49, + ACTIONS(3386), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -323813,20 +324944,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [182631] = 4, + [184105] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3098), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3012), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3100), 50, + anon_sym_LBRACK2, + ACTIONS(3014), 49, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -323873,19 +325004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [182696] = 4, + [184170] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 3, + ACTIONS(3224), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 50, + ACTIONS(3226), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -323935,25 +325066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [182761] = 4, + [184235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3020), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3444), 49, - anon_sym_SEMI, + ACTIONS(3022), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -323996,24 +325125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [182826] = 4, + [184300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 3, + ACTIONS(3016), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 50, + ACTIONS(3018), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324057,21 +325188,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [182891] = 5, + [184365] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4007), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3020), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3022), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324119,21 +325249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [182958] = 5, + [184430] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4005), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3016), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3018), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324180,19 +325308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [183025] = 4, + [184495] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3076), 2, + ACTIONS(3012), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3078), 50, + ACTIONS(3014), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -324243,24 +325371,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [183090] = 5, + [184560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4003), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3404), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3406), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324303,26 +325430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [183157] = 5, + [184625] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4001), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3400), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3402), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324365,26 +325491,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [183224] = 5, + [184690] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3999), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3396), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3398), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324427,26 +325552,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [183291] = 5, + [184755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3997), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3392), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3394), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324489,109 +325613,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [183358] = 4, + [184820] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3367), 2, - sym__not_in, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(3664), 1, aux_sym__terminator_token1, - ACTIONS(3369), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3728), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3743), 1, anon_sym_COLON_COLON, + ACTIONS(3745), 1, anon_sym_EQ_GT, + ACTIONS(3747), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3765), 1, anon_sym_DOT, - [183423] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3363), 2, + ACTIONS(3767), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4931), 1, + anon_sym_when, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3365), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3666), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -324601,30 +325697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [183488] = 4, + [184927] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3359), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3172), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3361), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3174), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324672,26 +325757,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [183553] = 4, + [184992] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3146), 3, - sym__newline_before_do, + ACTIONS(3196), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3148), 49, + ACTIONS(3198), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -324734,25 +325819,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [183618] = 4, + [185057] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3146), 3, - sym__newline_before_do, + ACTIONS(3428), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3148), 49, + aux_sym__terminator_token1, + ACTIONS(3430), 49, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -324794,25 +325881,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [183683] = 4, + anon_sym_DASH_GT, + [185126] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3349), 2, - sym__not_in, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3416), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3351), 50, + ACTIONS(3418), 49, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -324856,19 +325945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, - [183748] = 4, + [185195] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3345), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3188), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3347), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3190), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -324916,19 +326005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [183813] = 4, + [185260] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3341), 2, + ACTIONS(3388), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3343), 50, + ACTIONS(3390), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -324979,168 +326067,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [183878] = 4, + [185325] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3337), 2, - sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3339), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4889), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4901), 1, anon_sym_when, + ACTIONS(4903), 1, anon_sym_COLON_COLON, + ACTIONS(4905), 1, anon_sym_EQ_GT, + ACTIONS(4907), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [183943] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3426), 4, + ACTIONS(4925), 1, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3428), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4891), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3670), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [184008] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3329), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3331), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325150,37 +326148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [184073] = 5, + [185430] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4909), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3192), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3194), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -325224,17 +326209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [184140] = 4, + [185495] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3325), 2, + ACTIONS(3384), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3327), 50, + ACTIONS(3386), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325285,17 +326270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [184205] = 4, + [185560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3321), 2, + ACTIONS(3380), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3323), 50, + ACTIONS(3382), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325346,17 +326331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [184270] = 4, + [185625] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 2, + ACTIONS(3376), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3319), 50, + ACTIONS(3378), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325407,17 +326392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [184335] = 4, + [185690] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3372), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3108), 50, + ACTIONS(3374), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325468,85 +326453,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [184400] = 4, + [185755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3395), 4, + ACTIONS(3356), 2, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [184465] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3146), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3148), 49, + ACTIONS(3358), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -325588,20 +326512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [184530] = 4, + [185820] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3110), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3154), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3112), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3156), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325649,20 +326574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [184595] = 4, + [185885] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3114), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3432), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3116), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3434), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325710,20 +326635,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [184660] = 4, + [185950] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3102), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3204), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3104), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3206), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325771,21 +326696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [184725] = 4, + [186015] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3346), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3452), 49, - anon_sym_SEMI, + ACTIONS(3348), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -325833,25 +326756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [184790] = 4, + [186080] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3208), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2968), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2970), 49, + ACTIONS(3210), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -325893,80 +326817,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [184855] = 24, + [186145] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(3334), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3336), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4863), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4865), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, anon_sym_EQ, - ACTIONS(4879), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4881), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + anon_sym_DASH_GT, + anon_sym_DOT, + [186210] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3328), 2, sym__not_in, - ACTIONS(4853), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3330), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3701), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325976,25 +326929,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [184960] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186275] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4911), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3324), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 48, - anon_sym_SEMI, + ACTIONS(3326), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -326037,10 +327000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [185027] = 4, + [186340] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4933), 1, + anon_sym_COMMA, + STATE(3667), 1, + aux_sym_keywords_repeat1, ACTIONS(3118), 2, sym__not_in, anon_sym_LBRACK2, @@ -326048,14 +327016,12 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3120), 50, + ACTIONS(3120), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -326099,23 +327065,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [185092] = 4, + [186409] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3058), 2, + ACTIONS(3320), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3060), 50, - anon_sym_LPAREN, + ACTIONS(3322), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -326160,24 +327126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [185157] = 4, + [186474] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3008), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3165), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3167), 49, + ACTIONS(3010), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -326219,26 +327185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [185222] = 4, + [186539] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3268), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3165), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3167), 49, + ACTIONS(3270), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -326280,26 +327246,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [185287] = 5, + [186604] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3142), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3144), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -326343,19 +327309,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [185354] = 4, + [186669] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3263), 3, + ACTIONS(3448), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3265), 49, + ACTIONS(3450), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326405,25 +327370,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [185419] = 5, + [186734] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3), 2, + ACTIONS(3264), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3266), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [186799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3260), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 48, - anon_sym_SEMI, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3262), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -326466,22 +327490,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [185486] = 5, + [186864] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3032), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 48, + ACTIONS(3034), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326529,19 +327553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185553] = 4, + [186929] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3256), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2629), 49, - anon_sym_SEMI, + ACTIONS(3258), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326589,24 +327612,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [185618] = 4, + [186994] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3122), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3036), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3124), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3038), 49, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -326649,21 +327674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [185683] = 4, + [187059] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3252), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2633), 49, - anon_sym_SEMI, + ACTIONS(3254), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326711,18 +327734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [185748] = 4, + [187124] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 2, + ACTIONS(3248), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3128), 50, + ACTIONS(3250), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -326773,17 +327797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [185813] = 4, + [187189] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 2, + ACTIONS(3240), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3132), 50, + ACTIONS(3242), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -326834,17 +327858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [185878] = 4, + [187254] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 2, + ACTIONS(3236), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3136), 50, + ACTIONS(3238), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -326895,18 +327919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [185943] = 4, + [187319] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3232), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 50, - anon_sym_SEMI, + ACTIONS(3234), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -326955,20 +327978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186008] = 4, + [187384] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3228), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3171), 49, - anon_sym_SEMI, + ACTIONS(3230), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -327016,29 +328039,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186073] = 4, + [187449] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 49, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -327068,37 +328109,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_DASH_GT, + [187530] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [186138] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3177), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3179), 49, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 26, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -327118,67 +328181,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [187617] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - anon_sym_do, - [186203] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3189), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3191), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327188,36 +328261,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [186268] = 4, + [187718] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3193), 3, - sym__newline_before_do, + ACTIONS(3474), 2, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3195), 49, + aux_sym__terminator_token1, + ACTIONS(3476), 48, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -327258,21 +328324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [186333] = 4, + anon_sym_DASH_GT, + [187789] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3224), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 50, - anon_sym_SEMI, + ACTIONS(3226), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327321,26 +328384,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186398] = 4, + [187854] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4936), 1, + anon_sym_COMMA, + STATE(3667), 1, + aux_sym_keywords_repeat1, + ACTIONS(3581), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3385), 49, - anon_sym_SEMI, + ACTIONS(3583), 48, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -327382,18 +328447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186463] = 4, + [187923] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3138), 2, + ACTIONS(3432), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3140), 50, + ACTIONS(3434), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327444,25 +328510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [186528] = 5, + [187988] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4913), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 48, - anon_sym_SEMI, + ACTIONS(3206), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327505,18 +328569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186595] = 4, + [188053] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3150), 2, + ACTIONS(3200), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3152), 50, + ACTIONS(3202), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327567,18 +328632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [186660] = 4, + [188118] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3196), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 50, - anon_sym_SEMI, + ACTIONS(3198), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327627,25 +328691,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186725] = 4, + [188183] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3004), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 50, - anon_sym_SEMI, + ACTIONS(3006), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327688,25 +328752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186790] = 4, + [188248] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3000), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3227), 50, - anon_sym_SEMI, + ACTIONS(3002), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327749,25 +328813,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186855] = 4, + [188313] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3223), 50, - anon_sym_SEMI, + ACTIONS(2998), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327810,25 +328874,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [186920] = 4, + [188378] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3219), 50, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3476), 46, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -327869,50 +328940,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [186985] = 4, + anon_sym_DASH_GT, + [188451] = 24, ACTIONS(5), 1, sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(4931), 1, + anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3215), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327922,58 +329022,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188556] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - [187050] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(4931), 1, + anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327983,58 +329103,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188661] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, + anon_sym_PIPE, + ACTIONS(3743), 1, + anon_sym_COLON_COLON, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - [187115] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3767), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -328044,36 +329183,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [188764] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3745), 1, + anon_sym_EQ_GT, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3749), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [187180] = 4, + ACTIONS(3476), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188863] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3514), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3203), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3516), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -328116,28 +329321,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [187245] = 4, + anon_sym_do, + [188928] = 18, ACTIONS(5), 1, sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3751), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3726), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 14, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328147,16 +329396,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_DASH_GT, + [189021] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -328166,39 +329453,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + [189112] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [187310] = 4, + ACTIONS(3755), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + [189201] = 14, ACTIONS(5), 1, sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3757), 1, + anon_sym_in, + ACTIONS(3759), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3767), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3183), 50, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328227,39 +329614,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [189286] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - [187375] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 3, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3156), 50, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328290,37 +329682,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [189365] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - [187440] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 3, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3152), 50, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -328351,33 +329750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [187505] = 4, + anon_sym_DASH_GT, + [189444] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3765), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 3, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3140), 50, + ACTIONS(3476), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -328420,25 +329813,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [187570] = 4, + anon_sym_DASH_GT, + [189513] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3082), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 50, + ACTIONS(3084), 49, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -328482,18 +329875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [187635] = 4, + [189578] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3192), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3130), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3132), 50, - anon_sym_SEMI, + ACTIONS(3194), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328542,19 +329934,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [187700] = 4, + [189643] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3188), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3128), 50, - anon_sym_SEMI, + ACTIONS(3190), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328603,19 +329995,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [187765] = 4, + [189708] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3184), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3124), 50, - anon_sym_SEMI, + ACTIONS(3186), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328664,19 +330056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [187830] = 4, + [189773] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3180), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3120), 50, - anon_sym_SEMI, + ACTIONS(3182), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328725,19 +330117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [187895] = 4, + [189838] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3176), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3104), 50, - anon_sym_SEMI, + ACTIONS(3178), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328786,25 +330178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [187960] = 4, + [189903] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, - sym__newline_before_do, + ACTIONS(2655), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 49, + ACTIONS(2657), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -328847,107 +330240,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [188025] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3699), 1, - sym__newline_before_do, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_when, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4792), 1, - anon_sym_EQ_GT, - ACTIONS(4794), 1, - anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4786), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3701), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4796), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4798), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4774), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [188132] = 4, + anon_sym_end, + [189968] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3197), 3, - sym__newline_before_do, + ACTIONS(2651), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3199), 49, + ACTIONS(2653), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -328990,28 +330301,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [188197] = 6, + anon_sym_end, + [190033] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3197), 2, - sym__newline_before_do, + ACTIONS(3172), 2, sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 48, + ACTIONS(3174), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329053,25 +330361,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [188266] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [190098] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3162), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3197), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3199), 49, + ACTIONS(3164), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329113,27 +330422,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [188331] = 5, + [190163] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4915), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(2627), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(2629), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -329177,24 +330484,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [188398] = 4, + anon_sym_end, + [190228] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3285), 3, - sym__newline_before_do, + ACTIONS(2623), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 49, + ACTIONS(2625), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329237,18 +330545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [188463] = 4, + anon_sym_end, + [190293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3154), 2, + ACTIONS(3158), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3156), 50, + ACTIONS(3160), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -329299,141 +330607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [188528] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4917), 1, - anon_sym_COMMA, - STATE(3578), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3387), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3389), 48, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [188597] = 4, + [190358] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3422), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3424), 49, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [188662] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3181), 2, + ACTIONS(3154), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3183), 50, + ACTIONS(3156), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -329484,7 +330668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [188727] = 4, + [190423] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -329496,7 +330680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2633), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -329545,19 +330728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [188792] = 4, + anon_sym_end, + [190488] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2627), 3, + ACTIONS(2635), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 50, + ACTIONS(2637), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -329606,18 +330789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [188857] = 4, + anon_sym_end, + [190553] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3146), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 50, - anon_sym_SEMI, + ACTIONS(3148), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -329665,20 +330849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [188922] = 4, + [190618] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3142), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 50, - anon_sym_SEMI, + ACTIONS(3144), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -329726,19 +330910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [188987] = 4, + [190683] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3185), 2, + ACTIONS(3138), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3187), 50, + ACTIONS(3140), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -329789,24 +330973,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [189052] = 4, + [190748] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3201), 2, + ACTIONS(4936), 1, + anon_sym_COMMA, + STATE(3689), 1, + aux_sym_keywords_repeat1, + ACTIONS(3575), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3203), 50, + ACTIONS(3577), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -329850,17 +331036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [189117] = 4, + [190817] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 3, + ACTIONS(3158), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 50, + ACTIONS(3160), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -329910,19 +331097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [189182] = 4, + [190882] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 50, - anon_sym_SEMI, + ACTIONS(3136), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -329970,20 +331156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [189247] = 4, + [190947] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3114), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3116), 50, - anon_sym_SEMI, + ACTIONS(3132), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -330032,19 +331217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189312] = 4, + [191012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3126), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 50, - anon_sym_SEMI, + ACTIONS(3128), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -330093,19 +331278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189377] = 4, + [191077] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3108), 50, - anon_sym_SEMI, + ACTIONS(3124), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -330154,25 +331339,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189442] = 4, + [191142] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4938), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3317), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3319), 50, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330215,25 +331401,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189507] = 4, + [191209] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2655), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3323), 50, - anon_sym_SEMI, + ACTIONS(2657), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330276,25 +331462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189572] = 4, + [191274] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2651), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3327), 50, - anon_sym_SEMI, + ACTIONS(2653), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330337,26 +331523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [189637] = 4, + [191339] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3331), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3120), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -330399,19 +331585,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [189702] = 4, + anon_sym_do, + [191404] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 3, + ACTIONS(3122), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 50, + ACTIONS(3124), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330460,23 +331647,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [189767] = 4, + [191469] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3205), 2, + ACTIONS(3024), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3207), 50, + ACTIONS(3026), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330521,23 +331708,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [189832] = 4, + [191534] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3209), 2, + ACTIONS(2918), 1, + anon_sym_LBRACK2, + ACTIONS(3763), 1, + anon_sym_STAR_STAR, + ACTIONS(3765), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3730), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [191611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3032), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3211), 50, + ACTIONS(3034), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -330582,19 +331836,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [189897] = 5, + [191676] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2990), 2, + ACTIONS(3036), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 49, + ACTIONS(3038), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -330644,17 +331897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [189964] = 4, + [191741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 3, + ACTIONS(2655), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 50, + ACTIONS(2657), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -330705,19 +331958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190029] = 4, + [191806] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 3, + ACTIONS(3228), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 50, + ACTIONS(3230), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330766,17 +332018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190094] = 4, + anon_sym_end, + [191871] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 3, + ACTIONS(2651), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3351), 50, + ACTIONS(2653), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -330827,17 +332080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190159] = 4, + [191936] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 3, + ACTIONS(2627), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3361), 50, + ACTIONS(2629), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -330888,17 +332141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190224] = 4, + [192001] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 3, + ACTIONS(2623), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3365), 50, + ACTIONS(2625), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -330949,24 +332202,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190289] = 4, + [192066] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 3, + aux_sym__terminator_token1, + ACTIONS(2635), 3, sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2637), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [192131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(2631), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3369), 50, - anon_sym_SEMI, + ACTIONS(2633), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331009,25 +332322,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [190354] = 5, + [192196] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3030), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2631), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(2633), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [192261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2635), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3032), 49, + anon_sym_LBRACK2, + ACTIONS(2637), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -331070,21 +332445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [190421] = 4, + [192326] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 3, + ACTIONS(3404), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3377), 50, + ACTIONS(3406), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331133,19 +332506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190486] = 4, + anon_sym_end, + [192391] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 3, + ACTIONS(3400), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 50, + ACTIONS(3402), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331194,19 +332567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190551] = 4, + anon_sym_end, + [192456] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 3, + ACTIONS(3396), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 50, + ACTIONS(3398), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331255,19 +332628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190616] = 4, + anon_sym_end, + [192521] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 3, + ACTIONS(3392), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 50, + ACTIONS(3394), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331316,19 +332689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190681] = 4, + anon_sym_end, + [192586] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 3, + ACTIONS(3388), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3404), 50, + ACTIONS(3390), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331377,19 +332750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190746] = 4, + anon_sym_end, + [192651] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 3, + ACTIONS(3384), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3420), 50, + ACTIONS(3386), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331438,19 +332811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190811] = 4, + anon_sym_end, + [192716] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 3, + ACTIONS(3380), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 50, + ACTIONS(3382), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331499,19 +332872,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190876] = 4, + anon_sym_end, + [192781] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 3, + ACTIONS(3376), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 50, + ACTIONS(3378), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [192846] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3372), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3374), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [192911] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3440), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3442), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [192976] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3356), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3358), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331560,19 +333116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [190941] = 4, + anon_sym_end, + [193041] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 3, + ACTIONS(3444), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 50, + ACTIONS(3446), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331621,19 +333177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191006] = 4, + anon_sym_end, + [193106] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 3, + ACTIONS(3436), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 50, + ACTIONS(3438), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331682,19 +333238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191071] = 4, + anon_sym_end, + [193171] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3442), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 50, + ACTIONS(3108), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331743,19 +333299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191136] = 4, + anon_sym_end, + [193236] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 3, + ACTIONS(3138), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3448), 50, + ACTIONS(3140), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331804,19 +333361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191201] = 4, + [193301] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3450), 3, + ACTIONS(3346), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3452), 50, + ACTIONS(3348), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331865,19 +333421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191266] = 4, + anon_sym_end, + [193366] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 3, + ACTIONS(3208), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3456), 50, + ACTIONS(3210), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331926,19 +333482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191331] = 4, + anon_sym_end, + [193431] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 3, + ACTIONS(3334), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 50, + ACTIONS(3336), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -331987,19 +333543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191396] = 4, + anon_sym_end, + [193496] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 3, + ACTIONS(3328), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 50, + ACTIONS(3330), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332048,24 +333604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191461] = 4, + anon_sym_end, + [193561] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 5, + ACTIONS(3368), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 48, + ACTIONS(3370), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332109,96 +333665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191526] = 12, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - [191607] = 6, + anon_sym_end, + [193626] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4919), 1, - anon_sym_COMMA, - STATE(3748), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3364), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 47, + ACTIONS(3366), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -332241,17 +333726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191676] = 4, + anon_sym_end, + [193691] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, + ACTIONS(3324), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 50, + ACTIONS(3326), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -332302,27 +333788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [191741] = 6, + [193756] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4917), 1, - anon_sym_COMMA, - STATE(3701), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 3, + ACTIONS(3320), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 48, + ACTIONS(3322), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -332365,24 +333848,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [191810] = 4, + anon_sym_end, + [193821] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3213), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4940), 1, + anon_sym_COMMA, + STATE(3776), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3215), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3120), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -332424,20 +333910,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [191875] = 4, + anon_sym_end, + [193890] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3217), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3268), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3219), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3270), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332485,26 +333971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [191940] = 5, + anon_sym_end, + [193955] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3993), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3264), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3266), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332549,24 +334034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [192007] = 5, + [194020] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3991), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3260), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3262), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332611,18 +334095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [192074] = 4, + [194085] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3256), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2649), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3258), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332670,19 +334154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192139] = 4, + anon_sym_end, + [194150] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2643), 2, + ACTIONS(2655), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2645), 50, + ACTIONS(2657), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -332733,24 +334217,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [192204] = 5, + [194215] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3989), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3252), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3254), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332795,24 +334278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [192271] = 5, + [194280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3987), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3248), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3250), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -332857,18 +334339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [192338] = 4, + [194345] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2639), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3244), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2641), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3246), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332916,20 +334398,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192403] = 4, + anon_sym_end, + [194410] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2635), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3240), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2637), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3242), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -332977,26 +334459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192468] = 5, + anon_sym_end, + [194475] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3985), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3236), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3238), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333041,24 +334522,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [192535] = 5, + [194540] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3983), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3232), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3234), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333103,17 +334583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [192602] = 4, + [194605] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 2, + ACTIONS(2651), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2633), 50, + ACTIONS(2653), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -333164,96 +334644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [192667] = 21, + [194670] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [192766] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2627), 2, + ACTIONS(3224), 3, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2629), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3226), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -333301,20 +334703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192831] = 4, + anon_sym_end, + [194735] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3221), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3432), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3223), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3434), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -333362,20 +334764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192896] = 4, + anon_sym_end, + [194800] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3225), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3204), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3227), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3206), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -333423,20 +334825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [192961] = 4, + anon_sym_end, + [194865] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 4, + ACTIONS(3200), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 49, + ACTIONS(3202), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -333486,78 +334887,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193026] = 24, + anon_sym_end, + [194930] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4943), 1, + anon_sym_COMMA, + STATE(3776), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3581), 3, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(3583), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4863), 1, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4865), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, anon_sym_EQ, - ACTIONS(4879), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4881), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + anon_sym_DOT, + anon_sym_end, + [194999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3000), 4, sym__not_in, - ACTIONS(4853), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3002), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3160), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -333567,29 +335001,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [193131] = 7, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [195064] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(2627), 2, sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, anon_sym_LBRACK2, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 48, + ACTIONS(2629), 50, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333631,18 +335070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [193202] = 4, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [195129] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 4, + ACTIONS(3196), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3183), 49, + ACTIONS(3198), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -333692,23 +335133,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193267] = 4, + anon_sym_end, + [195194] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3022), 2, + ACTIONS(2623), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3024), 50, - anon_sym_LPAREN, + ACTIONS(2625), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333753,23 +335195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [193332] = 4, + [195259] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3038), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3192), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3040), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3194), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -333812,20 +335254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [193397] = 4, + anon_sym_end, + [195324] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3185), 4, + ACTIONS(3188), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3187), 49, + ACTIONS(3190), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -333875,42 +335316,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193462] = 10, + anon_sym_end, + [195389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3184), 3, sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4853), 2, + ACTIONS(3186), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 38, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [195454] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3180), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3182), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -333942,24 +335430,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [193539] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [195519] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 5, + ACTIONS(3176), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2645), 48, + ACTIONS(3178), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334003,31 +335499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [193604] = 8, + anon_sym_end, + [195584] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3172), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 46, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3174), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -334068,77 +335557,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [193677] = 23, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [195649] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(3164), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4863), 1, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4865), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -334148,77 +335610,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [193780] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_when, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, anon_sym_in, - ACTIONS(4881), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + anon_sym_DOT, + anon_sym_end, + [195714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 3, sym__not_in, - ACTIONS(4853), 2, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -334228,24 +335671,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [193883] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [195779] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3277), 3, - sym__newline_before_do, + ACTIONS(3154), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 49, + ACTIONS(3156), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334288,19 +335743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [193948] = 4, + anon_sym_end, + [195844] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3418), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3420), 50, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3148), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -334348,26 +335803,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [194013] = 4, + anon_sym_end, + [195909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3050), 3, - sym__newline_before_do, + ACTIONS(3142), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 49, + ACTIONS(3144), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334410,25 +335865,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [194078] = 4, + anon_sym_end, + [195974] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, - sym__newline_before_do, + ACTIONS(3138), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 49, + ACTIONS(3140), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334471,25 +335926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [194143] = 4, + anon_sym_end, + [196039] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, - sym__newline_before_do, + ACTIONS(3134), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 49, + ACTIONS(3136), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334532,28 +335987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [194208] = 6, + anon_sym_end, + [196104] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3293), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 48, + anon_sym_LBRACK2, + ACTIONS(3132), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334595,25 +336047,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [194277] = 4, + anon_sym_DOT, + anon_sym_end, + [196169] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3293), 3, - sym__newline_before_do, + ACTIONS(3126), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 49, + ACTIONS(3128), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334656,25 +336109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [194342] = 4, + anon_sym_end, + [196234] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3297), 3, - sym__newline_before_do, + ACTIONS(3122), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 49, + ACTIONS(3124), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334717,26 +336170,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [194407] = 4, + anon_sym_end, + [196299] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2635), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3440), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2637), 49, - anon_sym_SEMI, + ACTIONS(3442), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334779,25 +336231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194472] = 4, + anon_sym_do, + [196364] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3444), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2641), 49, - anon_sym_SEMI, + ACTIONS(3446), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -334840,153 +336292,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [194537] = 22, + anon_sym_do, + [196429] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(2631), 2, sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(2633), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [194638] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4867), 1, + anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(4869), 1, anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -334996,95 +336342,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [194735] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, anon_sym_in, - ACTIONS(4881), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - [194830] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [196494] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2635), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 49, - anon_sym_SEMI, + ACTIONS(2637), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -335132,25 +336413,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [194895] = 4, + [196559] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4945), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3205), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335193,25 +336475,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [194960] = 4, + [196626] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4947), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3209), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3211), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335254,19 +336537,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [195025] = 4, + [196693] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4949), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 49, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -335316,20 +336601,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [195090] = 5, + [196760] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(4951), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -335376,22 +336661,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [195157] = 5, + [196827] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(4953), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -335438,25 +336723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [195224] = 4, + [196894] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3042), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3440), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3044), 50, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3442), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335499,27 +336785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [195289] = 5, + [196959] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3969), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3444), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3446), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335563,20 +336847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195356] = 5, + [197024] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3971), 1, + ACTIONS(4955), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -335624,22 +336907,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [195423] = 5, + [197091] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3973), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3004), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3006), 49, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -335687,20 +336970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195490] = 5, + [197156] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3975), 1, + ACTIONS(4957), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -335748,26 +337030,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [195557] = 5, + [197223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3977), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3436), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3438), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335811,25 +337093,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195624] = 5, + [197288] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3106), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3108), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335873,20 +337154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195691] = 5, + [197353] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(4959), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -335934,26 +337214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [195758] = 5, + [197420] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3983), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3368), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3370), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -335997,25 +337277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195825] = 5, + [197485] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3985), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3364), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3366), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -336059,20 +337338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [195892] = 5, + [197550] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3987), 1, + ACTIONS(4961), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -336120,20 +337398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [195959] = 5, + [197617] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3989), 1, + ACTIONS(3972), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -336183,19 +337462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196026] = 5, + [197684] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3991), 1, + ACTIONS(3954), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -336245,19 +337524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196093] = 5, + [197751] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(3956), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -336307,19 +337586,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196160] = 5, + [197818] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(3958), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -336369,21 +337648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196227] = 5, + [197885] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(3954), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336431,21 +337709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196294] = 5, + anon_sym_end, + [197952] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3999), 1, + ACTIONS(3956), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336493,21 +337771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196361] = 5, + anon_sym_end, + [198019] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(3958), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336555,21 +337833,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196428] = 5, + anon_sym_end, + [198086] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4003), 1, + ACTIONS(3960), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336617,21 +337895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196495] = 5, + anon_sym_end, + [198153] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(3962), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336679,21 +337957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196562] = 5, + anon_sym_end, + [198220] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4007), 1, + ACTIONS(3964), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -336741,20 +338019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196629] = 5, + anon_sym_end, + [198287] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(3966), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -336803,109 +338081,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196696] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3703), 1, - sym__newline_before_do, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_when, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4792), 1, - anon_sym_EQ_GT, - ACTIONS(4794), 1, - anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4786), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3705), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4796), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4798), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4774), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [196803] = 6, + anon_sym_end, + [198354] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4924), 1, - anon_sym_COMMA, - STATE(3748), 1, - aux_sym_keywords_repeat1, + ACTIONS(3968), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3387), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3389), 47, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -336948,20 +338143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196872] = 5, + anon_sym_end, + [198421] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(3970), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337010,19 +338205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [196939] = 4, + anon_sym_end, + [198488] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3972), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2627), 3, + ACTIONS(3166), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2629), 49, - anon_sym_RPAREN, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -337069,21 +338266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [197004] = 4, + anon_sym_end, + [198555] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3974), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2631), 3, + ACTIONS(3166), 3, sym__not_in, - aux_sym_quoted_keyword_token1, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 49, - anon_sym_RPAREN, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -337130,101 +338328,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [197069] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4659), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_do, - [197162] = 4, + anon_sym_end, + [198622] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3976), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 50, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337268,24 +338391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197227] = 4, + anon_sym_end, + [198689] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3978), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 50, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337329,24 +338453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197292] = 4, + anon_sym_end, + [198756] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3980), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3215), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337390,24 +338515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197357] = 4, + anon_sym_end, + [198823] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3982), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3219), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337451,85 +338577,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197422] = 4, + anon_sym_end, + [198890] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3243), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3245), 50, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3984), 1, aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [197487] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3249), 50, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337573,24 +338639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197552] = 4, + anon_sym_end, + [198957] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3986), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3245), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337634,24 +338701,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197617] = 4, + anon_sym_end, + [199024] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3988), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3223), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337695,24 +338763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197682] = 4, + anon_sym_end, + [199091] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3990), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3227), 49, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337756,24 +338825,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197747] = 4, + anon_sym_end, + [199158] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3992), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3175), 50, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -337817,25 +338887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197812] = 4, + anon_sym_end, + [199225] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3436), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3171), 50, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3438), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -337878,92 +338948,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [197877] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 16, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, anon_sym_do, - [197968] = 4, + [199290] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3301), 3, + ACTIONS(3106), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3303), 49, + ACTIONS(3108), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338013,108 +339010,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [198033] = 4, + [199355] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3022), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, + ACTIONS(2918), 1, anon_sym_LBRACK2, - ACTIONS(3024), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3668), 1, + aux_sym__terminator_token1, + ACTIONS(3728), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(3743), 1, anon_sym_COLON_COLON, + ACTIONS(3745), 1, anon_sym_EQ_GT, + ACTIONS(3747), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3757), 1, anon_sym_in, + ACTIONS(3759), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3761), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(3763), 1, anon_sym_STAR_STAR, + ACTIONS(3765), 1, anon_sym_DOT, - [198098] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(3767), 1, + sym__not_in, + ACTIONS(4931), 1, + anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3040), 49, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(3730), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(3736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3749), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(3751), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3670), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3726), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3753), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3755), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338124,31 +339092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [198163] = 4, + [199462] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3960), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3042), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3044), 49, + ACTIONS(3168), 49, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338196,21 +339154,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198228] = 5, + [199529] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(3962), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338258,24 +339216,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198295] = 4, + [199596] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3964), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3434), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3436), 49, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -338319,21 +339278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198360] = 5, + [199663] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4930), 1, + ACTIONS(3966), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338381,27 +339340,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198427] = 6, + [199730] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4924), 1, - anon_sym_COMMA, - STATE(3822), 1, - aux_sym_keywords_repeat1, + ACTIONS(3968), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3355), 47, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -338444,18 +339402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198496] = 4, + [199797] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3080), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3970), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3082), 50, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -338503,23 +339463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [198561] = 5, + [199864] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(3974), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, + ACTIONS(3166), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 48, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338567,20 +339526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [198628] = 5, + [199931] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3977), 1, + ACTIONS(4963), 1, aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338627,22 +339586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [198695] = 5, + [199998] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3975), 1, + ACTIONS(3976), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338690,21 +339650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [198762] = 5, + [200065] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3973), 1, + ACTIONS(3978), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3168), 49, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338752,25 +339712,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [198829] = 5, + [200132] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + sym__newline_before_do, + ACTIONS(4799), 1, + anon_sym_PIPE, + ACTIONS(4811), 1, + anon_sym_when, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, + anon_sym_EQ_GT, + ACTIONS(4817), 1, + anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4809), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3534), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4819), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4821), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [200239] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3971), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, + ACTIONS(3126), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3516), 49, + ACTIONS(3128), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -338814,26 +339855,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [198896] = 5, + [200304] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3969), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3368), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 49, - anon_sym_SEMI, + ACTIONS(3370), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -338876,19 +339915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [198963] = 4, + anon_sym_do, + [200369] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3305), 3, + ACTIONS(3364), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3307), 49, + ACTIONS(3366), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338938,56 +339977,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [199028] = 17, + [200434] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(3980), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 3, sym__not_in, - ACTIONS(4853), 2, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4873), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338997,12 +340028,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200501] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3982), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339012,79 +340071,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [199119] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3699), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, + [200568] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3054), 2, sym__not_in, - ACTIONS(4905), 1, - anon_sym_when, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(3056), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3787), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3798), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3701), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -339094,20 +340150,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [199226] = 6, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [200633] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3814), 1, - anon_sym_DOT, + ACTIONS(3984), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 2, + ACTIONS(3166), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 49, + anon_sym_LBRACK2, + ACTIONS(3168), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -339156,68 +340223,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [199295] = 16, + anon_sym_DOT, + [200700] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3986), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4849), 4, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 17, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339230,24 +340259,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [199384] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200767] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3988), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3534), 3, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3536), 49, + ACTIONS(3168), 49, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339290,62 +340348,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [199449] = 15, + [200834] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + ACTIONS(3990), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(4849), 4, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 22, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339363,48 +340388,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [199536] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4879), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4881), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200901] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3992), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339433,26 +340461,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [199619] = 5, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [200968] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4934), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 48, - anon_sym_SEMI, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339495,44 +340532,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199686] = 11, + anon_sym_do, + [201033] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3545), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3547), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339563,44 +340584,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [199765] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [201098] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4943), 1, + anon_sym_COMMA, + STATE(3793), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3575), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3577), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339631,25 +340647,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [199844] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [201167] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3551), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3404), 49, - anon_sym_SEMI, + ACTIONS(3553), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -339692,18 +340717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [199909] = 4, + anon_sym_do, + [201232] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3309), 3, + ACTIONS(3555), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3311), 49, + ACTIONS(3557), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339753,18 +340779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [199974] = 4, + [201297] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3313), 3, + ACTIONS(3559), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3315), 49, + ACTIONS(3561), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339814,18 +340840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [200039] = 4, + [201362] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3333), 3, + ACTIONS(3567), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3335), 49, + ACTIONS(3569), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -339875,45 +340901,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [200104] = 12, + [201427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3571), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3573), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -339943,59 +340951,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_do, - [200185] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + [201492] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, + ACTIONS(3567), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3569), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -340015,25 +341002,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [200272] = 4, + [201557] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 3, + ACTIONS(3567), 3, + sym__newline_before_do, sym__not_in, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2641), 49, - anon_sym_RPAREN, + ACTIONS(3569), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340075,23 +341082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [200337] = 5, + anon_sym_do, + [201622] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4936), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3070), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3516), 48, - anon_sym_SEMI, + ACTIONS(3072), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -340138,77 +341143,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [200404] = 22, + [201687] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3668), 1, sym__newline_before_do, - ACTIONS(4776), 1, + ACTIONS(4799), 1, anon_sym_PIPE, - ACTIONS(4792), 1, + ACTIONS(4811), 1, + anon_sym_when, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, anon_sym_EQ_GT, - ACTIONS(4794), 1, + ACTIONS(4817), 1, anon_sym_EQ, - ACTIONS(4804), 1, + ACTIONS(4827), 1, anon_sym_in, - ACTIONS(4806), 1, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(4812), 1, + ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4814), 1, + ACTIONS(4837), 1, anon_sym_LBRACK2, - ACTIONS(4816), 1, + ACTIONS(4839), 1, sym__not_in, - ACTIONS(4778), 2, + ACTIONS(4801), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4784), 2, + ACTIONS(4807), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4809), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4796), 3, + ACTIONS(3670), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4798), 3, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4774), 4, + ACTIONS(4797), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4800), 5, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, + ACTIONS(4805), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4802), 9, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -340218,24 +341227,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [200505] = 4, + [201794] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3364), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3373), 49, + ACTIONS(3366), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340277,31 +341286,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [200570] = 7, + [201859] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, + ACTIONS(3368), 2, sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 47, + ACTIONS(3370), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -340342,42 +341346,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_do, - [200641] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4810), 1, anon_sym_STAR_STAR, - ACTIONS(4812), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + [201924] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3590), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3592), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -340409,30 +341401,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [200718] = 8, + [201989] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 45, + ACTIONS(3598), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3600), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -340474,79 +341467,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [200791] = 24, + [202054] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3604), 3, sym__newline_before_do, - ACTIONS(4776), 1, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3606), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4788), 1, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4790), 1, anon_sym_COLON_COLON, - ACTIONS(4792), 1, anon_sym_EQ_GT, - ACTIONS(4794), 1, anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4796), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4798), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4774), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4800), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -340556,78 +341520,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [200896] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_when, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4792), 1, - anon_sym_EQ_GT, - ACTIONS(4794), 1, - anon_sym_EQ, - ACTIONS(4804), 1, anon_sym_in, - ACTIONS(4806), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + [202119] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4796), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4798), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4774), 4, + ACTIONS(3342), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3344), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_do, - ACTIONS(4800), 5, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -340637,18 +341581,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [201001] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [202184] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, + ACTIONS(3360), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3373), 49, + ACTIONS(3362), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -340698,77 +341654,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [201066] = 23, + [202249] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3563), 3, sym__newline_before_do, - ACTIONS(4776), 1, - anon_sym_PIPE, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4792), 1, - anon_sym_EQ_GT, - ACTIONS(4794), 1, - anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, sym__not_in, - ACTIONS(4778), 2, + anon_sym_LBRACK2, + ACTIONS(3565), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4796), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4798), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4774), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_do, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -340778,152 +341703,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [201169] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4792), 1, - anon_sym_EQ_GT, - ACTIONS(4794), 1, - anon_sym_EQ, - ACTIONS(4804), 1, anon_sym_in, - ACTIONS(4806), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + [202314] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4796), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4798), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4774), 4, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_do, - ACTIONS(4802), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [201268] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4794), 1, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4796), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4798), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4774), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(4802), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -340933,71 +341764,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [201365] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4804), 1, anon_sym_in, - ACTIONS(4806), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, + anon_sym_do, + [202379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3184), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4798), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4774), 4, + anon_sym_LBRACK2, + ACTIONS(3186), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -341007,55 +341807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_do, - [201458] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4804), 1, - anon_sym_in, - ACTIONS(4806), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4774), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4800), 5, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -341065,78 +341826,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 16, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_do, - [201549] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4804), 1, anon_sym_in, - ACTIONS(4806), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + [202444] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4774), 4, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4802), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -341154,49 +341875,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_do, - [201638] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4804), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4806), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(4816), 1, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + [202509] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -341225,44 +341947,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_do, - [201723] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4808), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4778), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_do, + [202574] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4782), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -341293,26 +342010,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [201802] = 4, + [202639] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3440), 49, - anon_sym_SEMI, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341355,26 +342080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [201867] = 5, + anon_sym_do, + [202704] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4938), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3514), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3516), 48, - anon_sym_SEMI, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341417,43 +342141,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [201934] = 11, + anon_sym_do, + [202769] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4808), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, - anon_sym_STAR_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, - ACTIONS(4778), 2, + anon_sym_LBRACK2, + ACTIONS(3520), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4784), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [202834] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4782), 6, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [202899] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -341484,22 +342315,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [202013] = 6, + [202964] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4812), 1, - anon_sym_DOT, - ACTIONS(4814), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 48, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -341547,26 +342384,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [202082] = 5, + [203029] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4940), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341608,26 +342445,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202149] = 5, + anon_sym_do, + [203094] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4942), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(4965), 1, + anon_sym_COMMA, + STATE(3520), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3581), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3583), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [203163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3146), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3148), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -341670,19 +342570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202216] = 4, + [203228] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, + ACTIONS(3106), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3171), 50, + ACTIONS(3108), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -341733,17 +342632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [202281] = 4, + [203293] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3173), 2, + ACTIONS(3436), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3175), 50, + ACTIONS(3438), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -341794,18 +342693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [202346] = 4, + [203358] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3391), 3, + ACTIONS(3460), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3393), 49, + ACTIONS(3462), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -341855,26 +342754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [202411] = 6, + [203423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_COMMA, - STATE(3898), 1, - aux_sym_keywords_repeat1, - ACTIONS(3281), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3283), 48, - anon_sym_RPAREN, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341916,27 +342813,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202480] = 5, + anon_sym_do, + [203488] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4947), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -341978,20 +342874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202547] = 4, + anon_sym_do, + [203553] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3406), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3408), 49, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342041,95 +342937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [202612] = 14, + [203618] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [202697] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3068), 2, + ACTIONS(3518), 3, + sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3070), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342171,20 +342996,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202762] = 4, + anon_sym_do, + [203683] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3412), 49, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342234,25 +343059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [202827] = 5, + [203748] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4949), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3518), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342294,20 +343118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [202894] = 4, + anon_sym_do, + [203813] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3410), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3412), 49, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342357,18 +343181,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [202959] = 4, + [203878] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3664), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, + anon_sym_LBRACK2, + ACTIONS(4681), 1, + anon_sym_PIPE, + ACTIONS(4693), 1, + anon_sym_when, + ACTIONS(4695), 1, + anon_sym_COLON_COLON, + ACTIONS(4697), 1, + anon_sym_EQ_GT, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4689), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4691), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3666), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4701), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4703), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [203985] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3414), 3, + ACTIONS(3518), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3416), 49, + ACTIONS(3520), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -342418,24 +343324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [203024] = 4, + [204050] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3414), 3, - sym__newline_before_do, + ACTIONS(3440), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 49, + ACTIONS(3442), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342478,25 +343385,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [203089] = 4, + [204115] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3410), 3, - sym__newline_before_do, + ACTIONS(3444), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3412), 49, + ACTIONS(3446), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342539,25 +343446,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [203154] = 4, + [204180] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3430), 3, - sym__newline_before_do, + ACTIONS(2655), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3432), 49, + ACTIONS(2657), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342600,26 +343507,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [203219] = 4, + [204245] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4965), 1, + anon_sym_COMMA, + STATE(3915), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2643), 4, + ACTIONS(3575), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2645), 49, + ACTIONS(3577), 47, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342662,24 +343570,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203284] = 5, + [204314] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4951), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2651), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2653), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -342722,27 +343630,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [203351] = 4, + [204379] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3506), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(2649), 49, - anon_sym_SEMI, + ACTIONS(3508), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342785,25 +343691,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203416] = 4, + anon_sym_do, + [204444] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3494), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 49, - anon_sym_SEMI, + ACTIONS(3496), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342846,25 +343752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203481] = 4, + anon_sym_do, + [204509] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3498), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3231), 49, - anon_sym_SEMI, + ACTIONS(3500), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342907,25 +343813,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [203546] = 5, + anon_sym_do, + [204574] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4953), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3498), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3500), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -342967,20 +343873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [203613] = 4, + anon_sym_do, + [204639] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3494), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3496), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343030,24 +343936,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [203678] = 4, + [204704] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3247), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3249), 50, - anon_sym_RPAREN, + ACTIONS(3494), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3496), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -343089,25 +343995,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [203743] = 4, + anon_sym_do, + [204769] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(3082), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3245), 50, + ACTIONS(3084), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -343152,18 +344058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [203808] = 4, + [204834] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3476), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343213,18 +344119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [203873] = 4, + [204899] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3490), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3492), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343274,18 +344180,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [203938] = 4, + [204964] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3484), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3486), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343335,18 +344241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [204003] = 4, + [205029] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3476), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343394,29 +344303,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [204068] = 4, + [205098] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -343447,38 +344371,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [204133] = 4, + [205177] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3084), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3086), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -343509,36 +344439,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_do, + [205256] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4833), 1, anon_sym_STAR_STAR, + ACTIONS(4835), 1, anon_sym_DOT, - [204198] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -343567,91 +344510,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_do, + [205341] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4827), 1, anon_sym_in, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [204263] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3158), 1, - sym__newline_before_do, - ACTIONS(4776), 1, + ACTIONS(4825), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 21, anon_sym_PIPE, - ACTIONS(4788), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4790), 1, anon_sym_COLON_COLON, - ACTIONS(4792), 1, anon_sym_EQ_GT, - ACTIONS(4794), 1, anon_sym_EQ, - ACTIONS(4804), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [205430] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4827), 1, anon_sym_in, - ACTIONS(4806), 1, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4808), 1, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - ACTIONS(4810), 1, + ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(4812), 1, + ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4814), 1, + ACTIONS(4837), 1, anon_sym_LBRACK2, - ACTIONS(4816), 1, + ACTIONS(4839), 1, sym__not_in, - ACTIONS(4778), 2, + ACTIONS(4801), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4784), 2, + ACTIONS(4807), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4786), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3160), 3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_do, - ACTIONS(4796), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4798), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4774), 4, + ACTIONS(4797), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4800), 5, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4782), 6, + ACTIONS(4805), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4802), 9, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -343661,28 +344641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [204370] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4955), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3476), 16, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -343695,13 +344657,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + anon_sym_do, + [205521] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4821), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -343711,60 +344719,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 13, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [205614] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4817), 1, + anon_sym_EQ, + ACTIONS(4827), 1, anon_sym_in, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4833), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(4835), 1, anon_sym_DOT, - [204437] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4957), 1, - anon_sym_COMMA, - STATE(3898), 1, - aux_sym_keywords_repeat1, - ACTIONS(3387), 2, - sym__not_in, + ACTIONS(4837), 1, anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3389), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -343774,30 +344810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [204506] = 4, + [205711] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3220), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3222), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -343847,46 +344871,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [204571] = 4, + [205776] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3474), 1, sym__newline_before_do, - sym__not_in, + ACTIONS(4815), 1, + anon_sym_EQ_GT, + ACTIONS(4817), 1, + anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4807), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -343896,58 +344949,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [205875] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4799), 1, + anon_sym_PIPE, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, + anon_sym_EQ_GT, + ACTIONS(4817), 1, + anon_sym_EQ, + ACTIONS(4827), 1, anon_sym_in, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4833), 1, anon_sym_STAR_STAR, + ACTIONS(4835), 1, anon_sym_DOT, - anon_sym_do, - [204636] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, + ACTIONS(4837), 1, anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4807), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -343957,37 +345029,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [204701] = 5, + [205978] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3474), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3476), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344029,49 +345088,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [204768] = 5, + anon_sym_do, + [206043] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4961), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4799), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4811), 1, anon_sym_when, + ACTIONS(4813), 1, anon_sym_COLON_COLON, + ACTIONS(4815), 1, anon_sym_EQ_GT, + ACTIONS(4817), 1, anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344081,30 +345171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [204835] = 4, + [206148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3216), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3218), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344154,24 +345232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [204900] = 4, + [206213] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3444), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3446), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344213,26 +345291,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [204965] = 4, + [206278] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3440), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3371), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3373), 49, + ACTIONS(3442), 50, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344274,26 +345352,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [205030] = 4, + [206343] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, + ACTIONS(3176), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3178), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344336,47 +345415,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [205095] = 4, + [206408] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3474), 1, sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4799), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4811), 1, anon_sym_when, + ACTIONS(4813), 1, anon_sym_COLON_COLON, + ACTIONS(4815), 1, anon_sym_EQ_GT, + ACTIONS(4817), 1, anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344386,37 +345496,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [205160] = 5, + [206513] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4963), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3476), 45, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344456,34 +345560,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [205227] = 6, + anon_sym_do, + [206586] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3814), 1, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 49, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -344515,34 +345627,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [205296] = 6, + anon_sym_do, + [206663] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(4957), 1, - anon_sym_COMMA, - STATE(3928), 1, - aux_sym_keywords_repeat1, - ACTIONS(3353), 2, - sym__not_in, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3355), 48, - anon_sym_RPAREN, + ACTIONS(3476), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -344583,21 +345691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [205365] = 4, + anon_sym_do, + [206734] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3474), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3476), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344647,46 +345753,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [205430] = 4, + [206799] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3474), 1, sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4799), 1, anon_sym_PIPE, + ACTIONS(4815), 1, + anon_sym_EQ_GT, + ACTIONS(4817), 1, + anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4807), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -344696,39 +345832,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [206900] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__newline_before_do, + ACTIONS(4827), 1, anon_sym_in, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4833), 1, anon_sym_STAR_STAR, + ACTIONS(4835), 1, anon_sym_DOT, - anon_sym_do, - [205495] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 25, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -344748,48 +345903,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, + anon_sym_do, + [206987] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4833), 1, anon_sym_STAR_STAR, + ACTIONS(4835), 1, anon_sym_DOT, - anon_sym_do, - [205560] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3474), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4807), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -344819,29 +345972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [205625] = 4, + [207068] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3468), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3470), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344891,18 +346034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [205690] = 4, + [207133] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3602), 3, + ACTIONS(3464), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3604), 49, + ACTIONS(3466), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -344952,24 +346095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [205755] = 4, + [207198] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(4967), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3598), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3600), 49, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -345011,20 +346155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [205820] = 4, + [207265] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3456), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 49, + ACTIONS(3458), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345074,18 +346218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [205885] = 4, + [207330] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3594), 3, + ACTIONS(3452), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3596), 49, + ACTIONS(3454), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345135,18 +346279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [205950] = 4, + [207395] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 4, + ACTIONS(3436), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3381), 49, + ACTIONS(3438), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -345196,28 +346340,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [206015] = 5, + [207460] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4965), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -345248,38 +346408,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206082] = 5, + [207539] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4967), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -345310,38 +346476,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206149] = 5, + [207618] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4969), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -345370,40 +346546,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [207701] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206216] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4971), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(4925), 1, sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 22, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -345421,8 +346618,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + [207788] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -345432,59 +346673,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [207877] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4911), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206283] = 4, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [207968] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2639), 5, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 48, - anon_sym_SEMI, + ACTIONS(4909), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4911), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, + [208063] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -345494,29 +346918,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [208160] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_PIPE, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4911), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [206348] = 4, + ACTIONS(3476), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [208261] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 4, + ACTIONS(3106), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3203), 49, + ACTIONS(3108), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -345566,47 +347058,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [206413] = 5, + [208326] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4973), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4889), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4901), 1, anon_sym_when, + ACTIONS(4903), 1, anon_sym_COLON_COLON, + ACTIONS(4905), 1, anon_sym_EQ_GT, + ACTIONS(4907), 1, anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -345616,58 +347138,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [208429] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206480] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3229), 2, + ACTIONS(4925), 1, sym__not_in, - anon_sym_LBRACK2, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3231), 50, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -345677,36 +347218,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206545] = 5, + [208532] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(3476), 46, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -345747,32 +347283,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206612] = 5, + [208605] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(4977), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 38, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -345804,29 +347350,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206679] = 5, + [208682] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(4979), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(3476), 48, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -345872,21 +347414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [206746] = 4, + [208753] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3462), 4, + ACTIONS(2627), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 49, + ACTIONS(2629), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -345936,46 +347475,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [206811] = 4, + [208818] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3566), 3, - sym__newline_before_do, - sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3568), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4889), 1, anon_sym_PIPE, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -345985,39 +347553,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [208917] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [206876] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3558), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3560), 49, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 26, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -346037,48 +347624,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [206941] = 4, + [209002] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3084), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3086), 50, - anon_sym_LPAREN, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -346108,35 +347693,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [207006] = 4, + [209083] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, - sym__newline_before_do, + ACTIONS(3200), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 49, + ACTIONS(3202), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -346179,25 +347754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [207071] = 4, + [209148] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3544), 3, - sym__newline_before_do, + ACTIONS(2623), 4, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3546), 49, + ACTIONS(2625), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -346240,19 +347815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [207136] = 4, + [209213] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3548), 3, + ACTIONS(3420), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3550), 49, + ACTIONS(3422), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -346302,18 +347876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [207201] = 4, + [209278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3544), 3, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3546), 49, + ACTIONS(3418), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -346363,18 +347937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [207266] = 4, + [209343] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4835), 1, + anon_sym_DOT, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3416), 2, + sym__newline_before_do, + sym__not_in, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3538), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3540), 49, + ACTIONS(3418), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -346422,20 +347999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_do, - [207331] = 4, + [209412] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3606), 3, + ACTIONS(3416), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3608), 49, + ACTIONS(3418), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -346485,24 +348061,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [207396] = 4, + [209477] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3225), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3416), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3227), 50, - anon_sym_SEMI, + ACTIONS(3418), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -346545,25 +348121,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [207461] = 4, + anon_sym_do, + [209542] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3221), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3074), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3223), 50, - anon_sym_SEMI, + ACTIONS(3076), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -346606,25 +348182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [207526] = 4, + anon_sym_do, + [209607] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3217), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3219), 50, - anon_sym_SEMI, + ACTIONS(3112), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -346667,25 +348243,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [207591] = 4, + anon_sym_do, + [209672] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3213), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3212), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3215), 50, - anon_sym_SEMI, + ACTIONS(3214), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -346728,230 +348304,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [207656] = 4, + anon_sym_do, + [209737] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3209), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3211), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4889), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4901), 1, anon_sym_when, + ACTIONS(4903), 1, anon_sym_COLON_COLON, + ACTIONS(4905), 1, anon_sym_EQ_GT, + ACTIONS(4907), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [207721] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3205), 3, + ACTIONS(4925), 1, sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3207), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4891), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [207786] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3201), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3203), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(3666), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [207851] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3185), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3187), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -346960,36 +348385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE, anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [207916] = 4, + anon_sym_LT_PIPE_GT, + [209842] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3181), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2623), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3183), 50, - anon_sym_SEMI, + ACTIONS(2625), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347032,19 +348445,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [207981] = 4, + [209907] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3154), 3, + ACTIONS(3130), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3156), 50, + ACTIONS(3132), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -347094,21 +348508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [208046] = 4, + [209972] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3068), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(2627), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3070), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(2629), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -347155,24 +348567,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [208111] = 4, + [210037] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4969), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3150), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3152), 50, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347215,25 +348629,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [208176] = 4, + [210104] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4971), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3138), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3140), 50, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -347276,19 +348691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [208241] = 4, + [210171] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3180), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 50, + ACTIONS(3182), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -347338,106 +348754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [208306] = 24, + [210236] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_when, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4861), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3705), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [208411] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3130), 3, + ACTIONS(3086), 3, + sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3132), 50, - anon_sym_SEMI, + ACTIONS(3088), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -347480,23 +348814,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [208476] = 6, + anon_sym_do, + [210301] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3814), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3070), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 49, + anon_sym_LBRACK2, + ACTIONS(3072), 49, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -347543,44 +348875,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [208545] = 11, + anon_sym_DOT, + [210366] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3024), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, + anon_sym_LBRACK2, + ACTIONS(3026), 49, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -347611,44 +348928,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [208624] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [210431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3098), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -347679,49 +348988,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [208703] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [210496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3098), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -347750,62 +349047,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - [208788] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, + anon_sym_do, + [210561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3775), 4, + aux_sym__terminator_token1, + ACTIONS(3086), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3088), 49, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 22, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -347823,54 +349097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - [208877] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -347880,245 +349108,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - [208968] = 18, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_DASH_GT, - [209061] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, anon_sym_DOT, - ACTIONS(3816), 1, + anon_sym_do, + [210626] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4973), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, + aux_sym__terminator_token1, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 10, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - anon_sym_DASH_GT, - [209158] = 21, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3798), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348128,103 +349170,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [209257] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [209360] = 4, + anon_sym_DOT, + [210693] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4975), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3128), 50, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -348267,80 +349242,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [209425] = 24, + [210760] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(4977), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, - ACTIONS(4905), 1, - anon_sym_when, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(3168), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3798), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348350,112 +349294,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [209530] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3792), 1, - anon_sym_COLON_COLON, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(4905), 1, - anon_sym_when, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3798), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(3800), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [209635] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3812), 1, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(3), 2, + [210827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3373), 46, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3104), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -348495,42 +349363,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, - [209708] = 10, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [210892] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(4979), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 38, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -348562,24 +349420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, - [209785] = 7, + anon_sym_DOT, + [210959] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, + ACTIONS(4981), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 48, - anon_sym_SEMI, + ACTIONS(3168), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -348626,25 +349488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, - [209856] = 4, + anon_sym_DOT, + [211026] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3428), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3124), 50, - anon_sym_SEMI, + ACTIONS(3430), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -348687,77 +349551,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [209921] = 22, + anon_sym_do, + [211091] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3794), 1, - anon_sym_EQ_GT, - ACTIONS(3796), 1, - anon_sym_EQ, - ACTIONS(3806), 1, - anon_sym_in, - ACTIONS(3808), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(3816), 1, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(3428), 2, + sym__newline_before_do, sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3779), 2, + aux_sym__terminator_token1, + ACTIONS(3430), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3798), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3800), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3775), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3802), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(3804), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348767,115 +349604,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [210022] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3806), 1, anon_sym_in, - ACTIONS(3808), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, - anon_sym_STAR_STAR, - ACTIONS(3814), 1, - anon_sym_DOT, - ACTIONS(3816), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3779), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3785), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3804), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DASH_GT, - [210109] = 11, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [211160] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(3371), 2, - sym__newline_before_do, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_LBRACE, + ACTIONS(3428), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3430), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -348906,65 +349666,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [210188] = 12, + [211225] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_LBRACK2, - ACTIONS(3808), 1, + ACTIONS(3664), 1, + sym__newline_before_do, + ACTIONS(4799), 1, + anon_sym_PIPE, + ACTIONS(4811), 1, + anon_sym_when, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, + anon_sym_EQ_GT, + ACTIONS(4817), 1, + anon_sym_EQ, + ACTIONS(4827), 1, + anon_sym_in, + ACTIONS(4829), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3810), 1, + ACTIONS(4831), 1, anon_sym_SLASH_SLASH, - ACTIONS(3812), 1, + ACTIONS(4833), 1, anon_sym_STAR_STAR, - ACTIONS(3814), 1, + ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(4837), 1, + anon_sym_LBRACK2, + ACTIONS(4839), 1, sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3779), 2, + ACTIONS(4801), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3785), 2, + ACTIONS(4807), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3783), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4809), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3666), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4819), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4821), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4823), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4805), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4825), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348974,26 +349758,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_DASH_GT, - [210269] = 4, + [211332] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3102), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 50, - anon_sym_SEMI, + ACTIONS(3104), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349036,26 +349818,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [210334] = 4, + anon_sym_do, + [211397] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3428), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3377), 49, - anon_sym_SEMI, + ACTIONS(3430), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349098,48 +349879,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [210399] = 14, + anon_sym_do, + [211462] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, - anon_sym_LBRACE, + ACTIONS(3424), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3426), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -349168,26 +349929,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [210484] = 4, + [211527] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(3412), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3096), 49, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3414), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349230,24 +350001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [210549] = 4, + anon_sym_do, + [211592] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3102), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3408), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3104), 50, - anon_sym_SEMI, + ACTIONS(3410), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349290,108 +350062,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [210614] = 4, + anon_sym_do, + [211657] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3114), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3668), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(3116), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4681), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4693), 1, anon_sym_when, + ACTIONS(4695), 1, anon_sym_COLON_COLON, + ACTIONS(4697), 1, anon_sym_EQ_GT, + ACTIONS(4699), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4709), 1, anon_sym_in, + ACTIONS(4711), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4715), 1, anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [210679] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3110), 3, + ACTIONS(4717), 1, sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3112), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4683), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4691), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3670), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -349401,29 +350145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [210744] = 4, + [211764] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 3, + ACTIONS(3368), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 50, + ACTIONS(3370), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -349473,47 +350206,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [210809] = 4, + [211829] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3317), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3532), 1, + sym__newline_before_do, + ACTIONS(4107), 1, + anon_sym_DOT, + ACTIONS(4109), 1, anon_sym_LBRACK2, - ACTIONS(3319), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4681), 1, anon_sym_PIPE, + ACTIONS(4693), 1, + anon_sym_when, + ACTIONS(4695), 1, + anon_sym_COLON_COLON, + ACTIONS(4697), 1, + anon_sym_EQ_GT, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_in, + ACTIONS(4711), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4715), 1, + anon_sym_STAR_STAR, + ACTIONS(4717), 1, + sym__not_in, + ACTIONS(4683), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4689), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4691), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3534), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4701), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4703), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4679), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4705), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4687), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4707), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -349523,36 +350288,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [210874] = 4, + [211936] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3321), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3150), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3323), 50, - anon_sym_SEMI, + ACTIONS(3152), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -349595,18 +350348,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [210939] = 4, + anon_sym_do, + [212001] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3325), 3, + ACTIONS(3364), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3327), 50, + ACTIONS(3366), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -349656,18 +350410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211004] = 4, + [212066] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3329), 3, + ACTIONS(2631), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3331), 50, + ACTIONS(2633), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -349717,91 +350471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211069] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__newline_before_do, - ACTIONS(4039), 1, - anon_sym_DOT, - ACTIONS(4041), 1, - anon_sym_LBRACK2, - ACTIONS(4665), 1, - anon_sym_in, - ACTIONS(4667), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4669), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4671), 1, - anon_sym_STAR_STAR, - ACTIONS(4673), 1, - sym__not_in, - ACTIONS(4639), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4645), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4635), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4643), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4663), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_LBRACE, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_do, - [211158] = 4, + [212131] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3337), 3, + ACTIONS(2635), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3339), 50, + ACTIONS(2637), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -349851,24 +350532,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211223] = 4, + [212196] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 3, + ACTIONS(3096), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 50, + ACTIONS(3098), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349912,24 +350594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211288] = 4, + [212263] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 3, + ACTIONS(3086), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 50, + ACTIONS(3088), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -349973,25 +350656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211353] = 4, + [212330] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3349), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3478), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3351), 50, - anon_sym_SEMI, + ACTIONS(3480), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350034,26 +350716,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211418] = 5, + anon_sym_do, + [212395] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4981), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, - anon_sym_RPAREN, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350095,26 +350776,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [211485] = 4, + anon_sym_do, + [212460] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3359), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3361), 50, - anon_sym_SEMI, + ACTIONS(3116), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350157,25 +350838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211550] = 4, + anon_sym_do, + [212525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3363), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3150), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3365), 50, - anon_sym_SEMI, + ACTIONS(3152), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350218,24 +350899,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211615] = 4, + anon_sym_do, + [212590] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4983), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3367), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3369), 50, - anon_sym_SEMI, + ACTIONS(3168), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350278,26 +350960,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [211680] = 4, + [212657] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3375), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3150), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3377), 50, - anon_sym_SEMI, + ACTIONS(3152), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350340,25 +351022,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211745] = 4, + anon_sym_do, + [212722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3379), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3381), 50, - anon_sym_SEMI, + ACTIONS(2982), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350401,18 +351083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211810] = 4, + anon_sym_do, + [212787] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3383), 3, + ACTIONS(3134), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3385), 50, + ACTIONS(3136), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -350462,24 +351145,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211875] = 4, + [212852] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3395), 3, + ACTIONS(3518), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3397), 50, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350523,24 +351205,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [211940] = 4, + [212916] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3474), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3402), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3404), 50, - anon_sym_SEMI, + ACTIONS(3476), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350583,26 +351263,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [212005] = 4, + [212980] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4985), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3418), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3420), 50, - anon_sym_SEMI, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -350645,24 +351326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [212070] = 4, + [213046] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3422), 3, + ACTIONS(3498), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3424), 50, + ACTIONS(3500), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350706,24 +351386,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [212135] = 4, + [213110] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3426), 3, + ACTIONS(3452), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3428), 50, + ACTIONS(3454), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350767,20 +351446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [212200] = 5, + [213174] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4983), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3456), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 49, + ACTIONS(3458), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -350830,84 +351506,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [212267] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3434), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3436), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [212332] = 4, + [213238] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3438), 3, + ACTIONS(3436), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3440), 50, + ACTIONS(3438), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -350951,85 +351566,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [212397] = 4, + [213302] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3442), 3, + ACTIONS(3452), 2, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3444), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [212462] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3446), 3, - sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3448), 50, - anon_sym_SEMI, + ACTIONS(3454), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351072,86 +351624,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, - [212527] = 4, + [213366] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3450), 3, - sym__not_in, - aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3452), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - anon_sym_end, - [212592] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3454), 3, + ACTIONS(3428), 2, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3456), 50, + ACTIONS(3430), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351194,25 +351687,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, anon_sym_end, - [212657] = 4, + [213434] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3458), 3, + ACTIONS(3498), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3460), 50, + ACTIONS(3500), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -351256,86 +351748,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [212722] = 4, + [213498] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3462), 3, + ACTIONS(3436), 2, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3464), 50, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_end, - [212787] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3229), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3231), 49, + ACTIONS(3438), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351377,26 +351806,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_do, - [212852] = 4, + [213562] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 2, + ACTIONS(3106), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2633), 49, + ACTIONS(3108), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351438,80 +351866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [212916] = 5, + [213626] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4985), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3516), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - [212982] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 4, + ACTIONS(3416), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 48, + ACTIONS(3418), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -351559,19 +351929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [213046] = 4, + anon_sym_end, + [213694] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 4, + ACTIONS(3567), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3416), 48, + ACTIONS(3569), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -351620,19 +351990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213110] = 4, + [213758] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3420), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3263), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3265), 48, - anon_sym_SEMI, + ACTIONS(3422), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -351679,18 +352048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [213174] = 4, + [213822] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3416), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, + ACTIONS(3418), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -351740,26 +352110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [213238] = 6, + [213886] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(4270), 1, - aux_sym_keywords_repeat1, - ACTIONS(3353), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3212), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3355), 47, + anon_sym_LBRACK2, + ACTIONS(3214), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -351802,18 +352170,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213306] = 4, + [213950] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3305), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3307), 49, - anon_sym_RPAREN, + ACTIONS(3476), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -351860,20 +352231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [213370] = 4, + anon_sym_end, + [214018] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3333), 4, + ACTIONS(3456), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3335), 48, + ACTIONS(3458), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -351922,17 +352292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213434] = 4, + [214082] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3301), 2, + ACTIONS(3416), 1, sym__not_in, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3303), 49, + ACTIONS(3418), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -351981,27 +352354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, - [213498] = 6, + [214150] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4989), 1, - anon_sym_COMMA, - STATE(4059), 1, - aux_sym_keywords_repeat1, - ACTIONS(3281), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3283), 47, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352044,18 +352414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213566] = 4, + [214214] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3243), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3245), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352102,20 +352473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [213630] = 4, + [214278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3169), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3171), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -352164,45 +352534,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213694] = 12, + [214342] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, + ACTIONS(3567), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, + anon_sym_LBRACK2, + ACTIONS(3569), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -352232,78 +352584,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [213774] = 25, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214406] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3703), 1, + ACTIONS(3664), 1, aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4686), 1, + ACTIONS(4577), 1, anon_sym_PIPE, - ACTIONS(4696), 1, + ACTIONS(4587), 1, anon_sym_when, - ACTIONS(4698), 1, + ACTIONS(4589), 1, anon_sym_COLON_COLON, - ACTIONS(4700), 1, + ACTIONS(4591), 1, anon_sym_EQ_GT, - ACTIONS(4702), 1, + ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4603), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(4613), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4694), 2, + ACTIONS(4585), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3705), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4704), 3, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4575), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352313,43 +352675,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [213880] = 11, + [214512] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3096), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_SEMI, + ACTIONS(3098), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -352380,24 +352727,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [213958] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214578] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3090), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3086), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3309), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3311), 48, - anon_sym_SEMI, + ACTIONS(3088), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352440,19 +352797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214022] = 4, + [214644] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, + ACTIONS(3428), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3412), 48, + ACTIONS(3430), 48, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352499,19 +352859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [214086] = 4, + [214712] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3281), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3283), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3108), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352558,50 +352918,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [214150] = 14, + [214776] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3518), 4, + sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 33, + anon_sym_LBRACK2, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -352630,48 +352968,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [214234] = 16, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214840] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, anon_sym_in, - ACTIONS(4606), 1, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4612), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(4613), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4576), 4, + ACTIONS(4597), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4575), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4582), 6, + ACTIONS(4599), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4602), 9, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352681,8 +353039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 20, + ACTIONS(3476), 13, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, @@ -352694,6 +353053,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + [214932] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2627), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2629), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, @@ -352702,23 +353091,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [214322] = 4, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214996] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3309), 2, + ACTIONS(4991), 1, + anon_sym_COMMA, + STATE(4086), 1, + aux_sym_keywords_repeat1, + ACTIONS(3575), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3311), 49, - anon_sym_RPAREN, + ACTIONS(3577), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352760,56 +353174,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [214386] = 17, + [215064] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(4995), 1, + anon_sym_PIPE, + ACTIONS(5005), 1, + anon_sym_when, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4606), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4576), 4, + ACTIONS(5003), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3670), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5013), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5015), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4600), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4602), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352819,39 +353255,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [214476] = 4, + [215168] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3313), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3315), 49, - anon_sym_RPAREN, + ACTIONS(2623), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2625), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -352893,60 +353314,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [214540] = 18, + [215232] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3598), 4, + sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4580), 2, + anon_sym_LBRACK2, + ACTIONS(3600), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4598), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352956,30 +353364,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [214632] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215296] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3333), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3416), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3335), 49, + ACTIONS(3418), 48, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -353027,46 +353437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [214696] = 12, + [215364] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(4991), 1, + anon_sym_COMMA, + STATE(4088), 1, + aux_sym_keywords_repeat1, + ACTIONS(3581), 2, sym__not_in, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, anon_sym_LBRACK2, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_RPAREN, + ACTIONS(3583), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353096,19 +353489,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_DASH_GT, - [214776] = 4, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215432] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3050), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3494), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3052), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3496), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353155,58 +353558,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [214840] = 14, + [215496] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(5031), 1, + anon_sym_COMMA, + STATE(4088), 1, + aux_sym_keywords_repeat1, + ACTIONS(3118), 2, sym__not_in, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, - anon_sym_RPAREN, + ACTIONS(3120), 47, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353226,19 +353601,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DASH_GT, - [214924] = 4, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215564] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3247), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3420), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3249), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3422), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353285,20 +353680,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [214988] = 4, + [215628] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3571), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3573), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -353347,42 +353741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215052] = 11, + [215692] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3416), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, + ACTIONS(3418), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353413,43 +353791,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_end, - [215130] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4561), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [215756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3416), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3418), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353480,48 +353851,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_end, - [215208] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 34, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [215820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3567), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3569), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353550,61 +353910,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_end, - [215292] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4557), 1, anon_sym_in, - ACTIONS(4559), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4565), 1, anon_sym_DOT, - ACTIONS(4567), 1, - sym__not_in, + [215884] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4529), 4, + ACTIONS(3086), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3088), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_SEMI, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353622,54 +353959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_end, - [215380] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4553), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -353679,10 +353970,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 16, - anon_sym_SEMI, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [215948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3074), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -353695,25 +354013,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_end, - [215470] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [216012] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(5034), 1, + anon_sym_COMMA, + STATE(4109), 1, + aux_sym_keywords_repeat1, + ACTIONS(3575), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, + ACTIONS(3577), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -353756,18 +354103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215534] = 4, + [216080] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3551), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3553), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -353816,57 +354163,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215598] = 18, + [216144] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(3110), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + aux_sym__terminator_token1, + ACTIONS(3112), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4551), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -353876,32 +354211,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_end, - [215690] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [216208] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3096), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3299), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3098), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353948,75 +354282,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [215754] = 20, + [216272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(3054), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + aux_sym__terminator_token1, + ACTIONS(3056), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4549), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_end, - ACTIONS(4555), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354026,18 +354332,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [215850] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216336] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3096), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3098), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -354086,74 +354403,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [215914] = 21, + [216400] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4545), 1, - anon_sym_EQ_GT, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(3412), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + aux_sym__terminator_token1, + ACTIONS(3414), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4549), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_end, - ACTIONS(4555), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354163,19 +354451,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216012] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [216464] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3428), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, + ACTIONS(3430), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354222,77 +354521,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [216076] = 23, + [216528] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4531), 1, - anon_sym_PIPE, - ACTIONS(4543), 1, - anon_sym_COLON_COLON, - ACTIONS(4545), 1, - anon_sym_EQ_GT, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(3428), 1, sym__not_in, - ACTIONS(3), 2, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + aux_sym__terminator_token1, + ACTIONS(3430), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4549), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_end, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354302,17 +354574,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216178] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [216596] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3428), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 49, + ACTIONS(3430), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -354362,79 +354645,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [216242] = 26, + [216660] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_GT_GT, - ACTIONS(5016), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(4995), 1, anon_sym_PIPE, - ACTIONS(5020), 1, - anon_sym_COMMA, - ACTIONS(5028), 1, + ACTIONS(5005), 1, anon_sym_when, - ACTIONS(5030), 1, + ACTIONS(5007), 1, anon_sym_COLON_COLON, - ACTIONS(5032), 1, + ACTIONS(5009), 1, anon_sym_EQ_GT, - ACTIONS(5034), 1, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(5044), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(5046), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + ACTIONS(5029), 1, sym__not_in, - STATE(6434), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(5018), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5024), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5026), 2, + ACTIONS(5003), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5036), 3, + ACTIONS(3666), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5038), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5014), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5040), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5042), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354444,22 +354725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216350] = 7, + [216764] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3428), 2, sym__not_in, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 47, + ACTIONS(3430), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -354506,18 +354782,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_DASH_GT, - [216420] = 4, + anon_sym_DOT, + [216828] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 2, + ACTIONS(3424), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3550), 49, + ACTIONS(3426), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -354567,77 +354845,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [216484] = 24, + [216892] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4531), 1, - anon_sym_PIPE, - ACTIONS(4541), 1, - anon_sym_when, - ACTIONS(4543), 1, - anon_sym_COLON_COLON, - ACTIONS(4545), 1, - anon_sym_EQ_GT, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(5034), 1, + anon_sym_COMMA, + STATE(4172), 1, + aux_sym_keywords_repeat1, + ACTIONS(3581), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + aux_sym__terminator_token1, + ACTIONS(3583), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4549), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(4553), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354647,36 +354896,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [216588] = 10, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [216960] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(5002), 1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4758), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(4764), 1, anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(4992), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4732), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4994), 6, + ACTIONS(4734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_RPAREN, + ACTIONS(3476), 35, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354710,33 +354974,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_DASH_GT, - [216664] = 8, + anon_sym_end, + [217040] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3440), 2, sym__not_in, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, anon_sym_LBRACK2, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 45, - anon_sym_RPAREN, + ACTIONS(3442), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354776,25 +355032,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_DASH_GT, - [216736] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217104] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3444), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, + ACTIONS(3446), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -354837,27 +355095,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [216800] = 4, + [217168] = 12, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -354887,43 +355163,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [216864] = 8, + [217248] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4563), 1, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, + ACTIONS(4611), 1, anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4533), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3373), 45, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 25, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -354943,156 +355234,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_end, - [216936] = 23, + [217334] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4577), 1, + anon_sym_PIPE, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(4613), 1, sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5062), 1, - anon_sym_when, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, + ACTIONS(4575), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(5074), 5, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [217038] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, + ACTIONS(3476), 7, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355102,23 +355312,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_end, - [217114] = 4, + [217434] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3476), 47, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355164,78 +355375,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [217178] = 23, + [217504] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, sym__not_in, - ACTIONS(5060), 1, + aux_sym__terminator_token1, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(5062), 1, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(5064), 1, anon_sym_COLON_COLON, - ACTIONS(5066), 1, anon_sym_EQ_GT, - ACTIONS(5068), 1, anon_sym_EQ, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_DASH_GT, - ACTIONS(5074), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355245,23 +355438,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [217280] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [217580] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3476), 45, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -355302,25 +355505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [217344] = 7, + [217652] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3416), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 47, + anon_sym_LBRACK2, + ACTIONS(3418), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -355367,76 +355563,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_end, - [217414] = 22, + anon_sym_STAR_STAR, + anon_sym_DOT, + [217716] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4531), 1, + ACTIONS(4577), 1, anon_sym_PIPE, - ACTIONS(4545), 1, + ACTIONS(4587), 1, + anon_sym_when, + ACTIONS(4589), 1, + anon_sym_COLON_COLON, + ACTIONS(4591), 1, anon_sym_EQ_GT, - ACTIONS(4547), 1, + ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4557), 1, + ACTIONS(4603), 1, anon_sym_in, - ACTIONS(4559), 1, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(4613), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4537), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4549), 3, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, + ACTIONS(4575), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4553), 5, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_end, - ACTIONS(4555), 9, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355446,42 +355645,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [217514] = 15, + [217820] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4557), 1, + ACTIONS(4577), 1, + anon_sym_PIPE, + ACTIONS(4587), 1, + anon_sym_when, + ACTIONS(4589), 1, + anon_sym_COLON_COLON, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4603), 1, anon_sym_in, - ACTIONS(4559), 1, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(4613), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4537), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4535), 6, + ACTIONS(4595), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4597), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4599), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4555), 9, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355491,89 +355725,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + [217924] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4577), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(4589), 1, anon_sym_COLON_COLON, + ACTIONS(4591), 1, anon_sym_EQ_GT, + ACTIONS(4593), 1, anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_end, - [217600] = 12, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [218026] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4559), 1, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, + ACTIONS(4611), 1, anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4533), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4537), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4535), 6, + ACTIONS(4595), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4597), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3476), 8, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_EQ_GT, + ACTIONS(4601), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [218124] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4593), 1, anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355583,24 +355957,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_end, - [217680] = 4, + [218220] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 49, + ACTIONS(3476), 45, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -355641,52 +356020,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, anon_sym_DASH_GT, - anon_sym_DOT, - [217744] = 6, + [218292] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, - sym__not_in, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4579), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355696,29 +356077,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [217812] = 4, + ACTIONS(3476), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [218382] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3216), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3218), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -355767,26 +356154,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [217876] = 4, + [218446] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, - sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 49, - anon_sym_RPAREN, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4575), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 21, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -355804,69 +356226,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + [218534] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_when, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, anon_sym_in, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4559), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(4561), 1, anon_sym_DOT, - [217940] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, + ACTIONS(3668), 2, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3670), 2, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355876,29 +356307,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [218640] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(4766), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [218004] = 4, + ACTIONS(4754), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 25, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_end, + [218726] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3494), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(3496), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -355947,27 +356438,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [218068] = 4, + [218790] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -355998,35 +356505,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [218132] = 4, + [218868] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 49, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -356057,88 +356572,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [218196] = 25, + [218946] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3474), 1, aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4686), 1, + ACTIONS(4730), 1, anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_when, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - ACTIONS(4700), 1, + ACTIONS(4744), 1, anon_sym_EQ_GT, - ACTIONS(4702), 1, + ACTIONS(4746), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4756), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(4762), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, + ACTIONS(4764), 1, anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(4766), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4732), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4694), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3701), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4704), 3, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4728), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(4734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356148,22 +356650,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [218302] = 6, + [219046] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4720), 1, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 2, + ACTIONS(3474), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 48, + ACTIONS(3476), 47, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356209,28 +356712,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - [218370] = 4, + anon_sym_end, + [219116] = 10, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 37, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -356262,25 +356778,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [218434] = 4, + anon_sym_end, + [219192] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3277), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3279), 49, + ACTIONS(3476), 48, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -356328,25 +356841,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [218498] = 4, + [219260] = 8, ACTIONS(5), 1, sym_comment, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, + ACTIONS(3474), 2, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3476), 45, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -356387,49 +356904,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [218562] = 4, + anon_sym_end, + [219332] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, + ACTIONS(3474), 1, aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4730), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4740), 1, anon_sym_when, + ACTIONS(4742), 1, anon_sym_COLON_COLON, + ACTIONS(4744), 1, anon_sym_EQ_GT, + ACTIONS(4746), 1, anon_sym_EQ, + ACTIONS(4756), 1, + anon_sym_in, + ACTIONS(4758), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(4766), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356439,57 +356985,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [219436] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4730), 1, + anon_sym_PIPE, + ACTIONS(4740), 1, + anon_sym_when, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_EQ_GT, + ACTIONS(4746), 1, + anon_sym_EQ, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4762), 1, anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - [218626] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4766), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3602), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3604), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356499,57 +357065,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [219540] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4730), 1, + anon_sym_PIPE, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_EQ_GT, + ACTIONS(4746), 1, + anon_sym_EQ, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4762), 1, anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - [218690] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4766), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3598), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3600), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356559,57 +357144,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [219642] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4746), 1, + anon_sym_EQ, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4762), 1, anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - [218754] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4766), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_end, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356619,57 +357220,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [219738] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4762), 1, anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - [218818] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4766), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3596), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356679,38 +357280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [218882] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3410), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3412), 48, + ACTIONS(3476), 13, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -356720,16 +357293,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + anon_sym_end, + [219830] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4756), 1, + anon_sym_in, + ACTIONS(4758), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(4766), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -356739,37 +357350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [218946] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3476), 16, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -356782,46 +357366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [219010] = 4, + anon_sym_end, + [219920] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3590), 4, + ACTIONS(3494), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3592), 48, + ACTIONS(3496), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -356870,18 +357427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [219074] = 4, + [219984] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, - sym__not_in, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3416), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 49, - anon_sym_RPAREN, + ACTIONS(3418), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -356928,28 +357489,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [219138] = 6, + [220052] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(2635), 2, sym__not_in, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 48, - anon_sym_RPAREN, + ACTIONS(2637), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -356991,18 +357548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [219206] = 4, + anon_sym_DOT, + [220116] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(2631), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3231), 49, + ACTIONS(2633), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357052,46 +357609,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [219270] = 4, + [220180] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, - sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4756), 1, + anon_sym_in, + ACTIONS(4758), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(4766), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3235), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357101,37 +357659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [219334] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3476), 21, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -357149,100 +357680,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [219398] = 24, + anon_sym_end, + [220268] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4756), 1, + anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, + ACTIONS(4762), 1, anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(4764), 1, anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(4766), 1, sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5062), 1, - anon_sym_when, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4732), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5076), 2, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3701), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(5070), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357252,23 +357750,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [219502] = 4, + anon_sym_end, + [220352] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 2, + ACTIONS(2623), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 49, - anon_sym_RPAREN, + ACTIONS(2625), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357310,25 +357810,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [219566] = 4, + [220416] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3193), 2, + ACTIONS(2627), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3195), 49, - anon_sym_RPAREN, + ACTIONS(2629), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357370,28 +357870,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [219630] = 4, + [220480] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3189), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3191), 49, - anon_sym_RPAREN, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -357422,36 +357937,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [219694] = 4, + anon_sym_end, + [220558] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3177), 2, - sym__not_in, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3179), 49, - anon_sym_RPAREN, + ACTIONS(4732), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4736), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -357482,33 +358004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [219758] = 4, + anon_sym_end, + [220636] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3173), 2, + ACTIONS(2651), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3175), 49, - anon_sym_RPAREN, + ACTIONS(2653), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357550,26 +358064,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [219822] = 4, + [220700] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2655), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3410), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3412), 48, - anon_sym_SEMI, + ACTIONS(2657), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357612,17 +358125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [219886] = 4, + [220764] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, + ACTIONS(3368), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3171), 49, + ACTIONS(3370), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -357672,24 +358185,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [219950] = 4, + [220828] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2627), 2, + ACTIONS(3460), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2629), 49, + ACTIONS(3462), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357731,18 +358243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [220014] = 4, + [220892] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3464), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 49, + ACTIONS(3466), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -357792,99 +358305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [220078] = 22, + [220956] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(3468), 2, sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [220178] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3765), 1, anon_sym_LBRACK2, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 48, - anon_sym_SEMI, + ACTIONS(3470), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -357932,24 +358363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [220246] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [221020] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2635), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3220), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2637), 49, + anon_sym_LBRACK2, + ACTIONS(3222), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -357992,24 +358425,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220310] = 4, + [221084] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2639), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3416), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2641), 49, + anon_sym_LBRACK2, + ACTIONS(3418), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358052,40 +358485,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220374] = 12, + [221148] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3474), 1, + sym__not_in, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4690), 6, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_SEMI, + ACTIONS(3476), 35, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -358120,42 +358552,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [220454] = 15, + anon_sym_DASH_GT, + [221228] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4712), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4690), 6, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358165,8 +358597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 25, - anon_sym_SEMI, + ACTIONS(3476), 25, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -358191,46 +358622,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [220540] = 4, + anon_sym_DASH_GT, + [221312] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(2643), 2, - sym__not_in, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2645), 49, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4995), 1, anon_sym_PIPE, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(4997), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4993), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358240,35 +358700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [220604] = 4, + [221410] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 2, + ACTIONS(3474), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2649), 49, + ACTIONS(3476), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358310,179 +358758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [220668] = 22, + [221474] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - ACTIONS(4702), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4704), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4684), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4710), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [220768] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(3590), 4, sym__not_in, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(5070), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [220864] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3243), 2, - sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3245), 49, + ACTIONS(3592), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358525,24 +358820,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [220928] = 4, + [221538] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3247), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3249), 49, + ACTIONS(3476), 47, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358583,76 +358882,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [220992] = 21, + anon_sym_DASH_GT, + [221608] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(3474), 1, + sym__not_in, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(5006), 1, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5070), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(3476), 37, anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - ACTIONS(5008), 9, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358662,24 +358945,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [221090] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [221684] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3217), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3416), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3219), 49, + anon_sym_LBRACK2, + ACTIONS(3418), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358722,18 +359009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [221154] = 4, + [221748] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3466), 4, + ACTIONS(3074), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3468), 48, + ACTIONS(3076), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -358782,41 +359069,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [221218] = 10, + [221812] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(5036), 1, + anon_sym_COMMA, + STATE(4172), 1, + aux_sym_keywords_repeat1, + ACTIONS(3118), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 37, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3120), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -358848,22 +359123,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [221294] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [221880] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3173), 2, + ACTIONS(3070), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3175), 49, + ACTIONS(3072), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -358908,24 +359191,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [221358] = 4, + [221944] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(4995), 1, + anon_sym_PIPE, + ACTIONS(5005), 1, + anon_sym_when, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5015), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4993), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(5017), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5019), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [222046] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, + ACTIONS(3408), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3171), 49, + ACTIONS(3410), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -358967,32 +359328,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [221422] = 8, + [222110] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3436), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3373), 45, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3438), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -359032,24 +359387,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [221494] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [222174] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3231), 48, - anon_sym_SEMI, + ACTIONS(3108), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -359092,73 +359450,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [221558] = 20, + [222238] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(4995), 1, + anon_sym_PIPE, + ACTIONS(5005), 1, + anon_sym_when, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(4604), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4606), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4596), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4600), 5, + ACTIONS(3476), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - ACTIONS(4602), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359168,66 +359529,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [221654] = 21, + [222340] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4744), 1, anon_sym_EQ_GT, - ACTIONS(4594), 1, + ACTIONS(4746), 1, anon_sym_EQ, - ACTIONS(4604), 1, + ACTIONS(4756), 1, anon_sym_in, - ACTIONS(4606), 1, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, + ACTIONS(4762), 1, anon_sym_STAR_STAR, - ACTIONS(4612), 1, + ACTIONS(4764), 1, anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(4766), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, + ACTIONS(4732), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4596), 3, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, + ACTIONS(4728), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4600), 5, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, + ACTIONS(4734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(3476), 8, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -359235,7 +359595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4602), 9, + anon_sym_end, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359245,18 +359606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [221752] = 4, + [222438] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3506), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 48, + ACTIONS(3508), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -359305,109 +359666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [221816] = 24, + [222502] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_when, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - ACTIONS(4702), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4704), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4706), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4684), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4708), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4710), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [221920] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 46, - anon_sym_SEMI, + ACTIONS(2631), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2633), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -359448,77 +359724,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [221990] = 24, + anon_sym_STAR_STAR, + anon_sym_DOT, + [222566] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4686), 1, + ACTIONS(4995), 1, anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_when, - ACTIONS(4698), 1, + ACTIONS(5007), 1, anon_sym_COLON_COLON, - ACTIONS(4700), 1, + ACTIONS(5009), 1, anon_sym_EQ_GT, - ACTIONS(4702), 1, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4704), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4708), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(3476), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359528,76 +359804,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [222094] = 23, + [222666] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - ACTIONS(4700), 1, + ACTIONS(5009), 1, anon_sym_EQ_GT, - ACTIONS(4702), 1, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4704), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4690), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(3476), 8, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359607,66 +359880,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [222196] = 21, + [222762] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - ACTIONS(4702), 1, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4704), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 8, - anon_sym_SEMI, + ACTIONS(3476), 9, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -359674,7 +359943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4710), 9, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359684,73 +359955,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [222294] = 20, + [222856] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(3368), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4702), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3370), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, anon_sym_EQ, - ACTIONS(4712), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4714), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4720), 1, anon_sym_DOT, - ACTIONS(4722), 1, + [222920] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3364), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, + aux_sym__terminator_token1, + ACTIONS(3366), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4704), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [222984] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2635), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2637), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(4710), 9, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359760,57 +360124,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [222390] = 18, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [223048] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4712), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4706), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359820,8 +360194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_SEMI, + ACTIONS(3476), 13, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -359834,53 +360207,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [222482] = 17, + anon_sym_DASH_GT, + [223138] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3545), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3765), 1, anon_sym_LBRACK2, - ACTIONS(4712), 1, + ACTIONS(3547), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - ACTIONS(4714), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4720), 1, anon_sym_DOT, - ACTIONS(4722), 1, - sym__not_in, + [223202] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(3559), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3561), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [223266] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4684), 4, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359890,8 +360383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 16, - anon_sym_SEMI, + ACTIONS(3476), 16, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -359907,47 +360399,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [222572] = 16, + anon_sym_DASH_GT, + [223354] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4712), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(5029), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4688), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4684), 4, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4690), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359957,8 +360449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_SEMI, + ACTIONS(3476), 21, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, @@ -359979,48 +360470,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [222660] = 14, + anon_sym_DASH_GT, + [223440] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4712), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, + ACTIONS(3110), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -360049,43 +360520,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [222744] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4716), 1, + anon_sym_in, + anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [223504] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5039), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -360116,24 +360583,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [222822] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4718), 1, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(4720), 1, anon_sym_DOT, + [223570] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3555), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 47, + anon_sym_LBRACK2, + ACTIONS(3557), 48, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -360179,21 +360650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [222892] = 6, + anon_sym_STAR_STAR, + anon_sym_DOT, + [223634] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3364), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3373), 48, - anon_sym_SEMI, + ACTIONS(3366), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -360241,27 +360710,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [222960] = 4, + anon_sym_DASH_GT, + anon_sym_DOT, + [223698] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3283), 48, - anon_sym_SEMI, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -360290,39 +360780,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [223024] = 5, + anon_sym_DASH_GT, + [223780] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(5078), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5001), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -360353,27 +360847,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [223858] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(4995), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(5041), 1, + anon_sym_RPAREN, + ACTIONS(5043), 1, + anon_sym_COMMA, + ACTIONS(5046), 1, + anon_sym_when, + ACTIONS(5049), 1, + anon_sym_DASH_GT, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5003), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5015), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4993), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [223090] = 4, + ACTIONS(5019), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [223966] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3086), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 48, + ACTIONS(3088), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -360422,77 +360990,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [223154] = 24, + [224030] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4588), 1, - anon_sym_when, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, + ACTIONS(3474), 1, + sym__not_in, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(4614), 1, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4596), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3373), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -360502,58 +361054,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [223258] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4604), 1, anon_sym_in, - ACTIONS(4606), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, + anon_sym_DASH_GT, + [224108] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__not_in, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(4614), 1, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 24, - anon_sym_SEMI, + ACTIONS(3476), 48, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -360573,24 +361099,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [223344] = 4, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [224176] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2627), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2629), 48, + ACTIONS(3116), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -360632,25 +361177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [223408] = 4, + [224240] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2631), 3, + ACTIONS(3102), 4, sym__not_in, - aux_sym_quoted_keyword_token1, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 48, + ACTIONS(3104), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -360693,78 +361239,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [223472] = 25, + [224304] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4588), 1, - anon_sym_when, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(3484), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3699), 2, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3701), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4580), 2, + ACTIONS(3486), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4586), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4596), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -360774,19 +361287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [223578] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [224368] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 48, - anon_sym_SEMI, + ACTIONS(2982), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -360833,22 +361357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [223642] = 6, + [224432] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 3, + ACTIONS(3102), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3199), 47, + anon_sym_LBRACK2, + ACTIONS(3104), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -360896,19 +361418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [223710] = 4, + anon_sym_DOT, + [224496] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3490), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 48, - anon_sym_SEMI, + ACTIONS(3492), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -360955,263 +361477,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [223774] = 19, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 9, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [223868] = 26, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2881), 1, - anon_sym_COMMA, - ACTIONS(2914), 1, anon_sym_DASH_GT, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(5080), 1, - anon_sym_when, - STATE(6139), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5076), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [223976] = 25, + [224560] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3703), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4531), 1, - anon_sym_PIPE, - ACTIONS(4541), 1, - anon_sym_when, - ACTIONS(4543), 1, - anon_sym_COLON_COLON, - ACTIONS(4545), 1, - anon_sym_EQ_GT, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4539), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3705), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - ACTIONS(4549), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4551), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [224082] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3181), 2, + ACTIONS(3150), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3183), 49, + ACTIONS(3152), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361253,18 +361537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [224146] = 4, + [224624] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3165), 2, + ACTIONS(3474), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3167), 49, + ACTIONS(3476), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361314,17 +361599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224210] = 4, + [224688] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3165), 2, + ACTIONS(3567), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3167), 49, + ACTIONS(3569), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361374,26 +361659,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224274] = 4, + [224752] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(2968), 2, - sym__not_in, + ACTIONS(3474), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(2970), 49, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -361422,31 +361729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [224338] = 4, + [224836] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3494), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, + ACTIONS(3496), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -361493,26 +361787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [224402] = 5, + [224900] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(3030), 2, + ACTIONS(3494), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 48, + ACTIONS(3496), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361554,26 +361847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [224468] = 5, + [224964] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, - ACTIONS(2990), 2, + ACTIONS(3498), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 48, + ACTIONS(3500), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -361615,18 +361907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [224534] = 4, + [225028] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(3150), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3148), 49, + ACTIONS(3152), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361676,17 +361969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224598] = 4, + [225092] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(3498), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3148), 49, + ACTIONS(3500), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361736,17 +362029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224662] = 4, + [225156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(3494), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3148), 49, + ACTIONS(3496), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361796,17 +362089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224726] = 4, + [225220] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3466), 2, + ACTIONS(3506), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3468), 49, + ACTIONS(3508), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361856,43 +362149,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224790] = 11, + [225284] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3150), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(4688), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, + ACTIONS(3152), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -361923,17 +362199,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [224868] = 4, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [225348] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 2, + ACTIONS(3102), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3144), 49, + ACTIONS(3104), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -361983,23 +362269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [224932] = 4, + [225412] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(5051), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3524), 49, - anon_sym_RPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -362041,20 +362329,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [224996] = 4, + [225478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3534), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3150), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3536), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3152), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362101,19 +362389,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [225060] = 4, + [225542] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3030), 2, + ACTIONS(3102), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 49, + ACTIONS(3104), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362163,110 +362450,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225124] = 24, + [225606] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4588), 1, - anon_sym_when, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(3440), 2, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4596), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4598), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3373), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [225228] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3371), 3, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 44, - anon_sym_SEMI, + ACTIONS(3442), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -362307,17 +362506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [225300] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [225670] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(3086), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 49, + ACTIONS(3088), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362367,19 +362570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225364] = 4, + [225734] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3096), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3165), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3167), 48, - anon_sym_SEMI, + ACTIONS(3098), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362426,18 +362628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [225428] = 4, + [225798] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(3096), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 49, + ACTIONS(3098), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362487,19 +362690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225492] = 4, + [225862] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3086), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, + ACTIONS(3088), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362546,18 +362748,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [225556] = 4, + [225926] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3030), 2, + ACTIONS(3212), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 49, + ACTIONS(3214), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362607,19 +362810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225620] = 4, + [225990] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3216), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3606), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3608), 48, - anon_sym_SEMI, + ACTIONS(3218), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -362666,18 +362868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [225684] = 4, + [226054] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3251), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3253), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362727,17 +362930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225748] = 4, + [226118] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3255), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3257), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362787,17 +362990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225812] = 4, + [226182] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3259), 2, + ACTIONS(3444), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3261), 49, + ACTIONS(3446), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362847,17 +363050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225876] = 4, + [226246] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3263), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3265), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -362907,24 +363110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [225940] = 4, + [226310] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3042), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3604), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3044), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3606), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -362967,24 +363170,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226004] = 4, + [226374] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3038), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3040), 49, - anon_sym_LPAREN, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363026,25 +363228,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [226068] = 4, + [226438] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3022), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3024), 49, - anon_sym_LPAREN, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363086,18 +363288,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [226132] = 4, + [226502] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3540), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -363147,24 +363350,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [226196] = 4, + [226566] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3225), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3227), 49, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363206,42 +363408,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [226260] = 10, + [226630] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, + ACTIONS(3518), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3371), 3, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_SEMI, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -363273,24 +363461,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [226336] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [226694] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3221), 2, + ACTIONS(3220), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 49, + ACTIONS(3222), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363332,25 +363528,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [226400] = 4, + [226758] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3020), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3414), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3416), 48, - anon_sym_SEMI, + ACTIONS(3022), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363393,24 +363590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226464] = 4, + [226822] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3016), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3430), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3432), 48, - anon_sym_SEMI, + ACTIONS(3018), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363453,22 +363650,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226528] = 4, + [226886] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3213), 2, + ACTIONS(3012), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3215), 49, + ACTIONS(3014), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -363513,17 +363710,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226592] = 4, + [226950] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3209), 2, + ACTIONS(3404), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3211), 49, + ACTIONS(3406), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363573,23 +363770,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226656] = 4, + [227014] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3400), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 49, - anon_sym_RPAREN, + ACTIONS(3402), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363631,24 +363829,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [226720] = 4, + [227078] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3205), 2, + ACTIONS(5053), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3207), 49, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -363693,22 +363891,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226784] = 4, + [227144] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3201), 2, + ACTIONS(5055), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3203), 49, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -363753,23 +363952,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [226848] = 4, + [227210] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3396), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 49, - anon_sym_RPAREN, + ACTIONS(3398), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363811,25 +364011,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [226912] = 4, + [227274] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3392), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3560), 49, - anon_sym_RPAREN, + ACTIONS(3394), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -363871,19 +364071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [226976] = 4, + [227338] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3185), 2, + ACTIONS(3388), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3187), 49, + ACTIONS(3390), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363933,17 +364132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227040] = 4, + [227402] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3154), 2, + ACTIONS(3384), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3156), 49, + ACTIONS(3386), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -363993,24 +364192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227104] = 4, + [227466] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3150), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3150), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3152), 49, + anon_sym_LBRACK2, + ACTIONS(3152), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364053,22 +364252,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227168] = 4, + [227530] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3138), 2, + ACTIONS(3082), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3140), 49, + ACTIONS(3084), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -364113,17 +364312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227232] = 4, + [227594] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 2, + ACTIONS(3380), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3136), 49, + ACTIONS(3382), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364173,17 +364372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227296] = 4, + [227658] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 2, + ACTIONS(3376), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3132), 49, + ACTIONS(3378), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364233,17 +364432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227360] = 4, + [227722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3126), 2, + ACTIONS(3372), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3128), 49, + ACTIONS(3374), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364293,17 +364492,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227424] = 4, + [227786] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3566), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3568), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -364353,24 +364552,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [227488] = 4, + [227850] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3122), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3124), 49, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364412,19 +364610,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [227552] = 4, + [227914] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3058), 2, + ACTIONS(5057), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3060), 49, - anon_sym_LPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -364473,23 +364673,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227616] = 4, + [227980] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3590), 2, + ACTIONS(5059), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3592), 49, - anon_sym_RPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364531,25 +364733,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [227680] = 4, + [228046] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3594), 2, + ACTIONS(5061), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3596), 49, - anon_sym_RPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364591,26 +364794,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [227744] = 4, + [228112] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3120), 49, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364652,25 +364853,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [227808] = 4, + [228176] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3102), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3104), 49, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364712,23 +364913,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [227872] = 4, + [228240] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3114), 2, + ACTIONS(5063), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3116), 49, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -364773,24 +364976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [227936] = 4, + [228306] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3110), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3112), 49, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364832,25 +365034,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [228000] = 4, + [228370] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3108), 49, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -364892,23 +365094,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [228064] = 4, + [228434] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3317), 2, + ACTIONS(5065), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3319), 49, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -364953,17 +365157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228128] = 4, + [228500] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3321), 2, + ACTIONS(3356), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3323), 49, + ACTIONS(3358), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365013,17 +365217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228192] = 4, + [228564] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3598), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3600), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -365073,17 +365277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [228256] = 4, + [228628] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3602), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3604), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -365133,17 +365337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [228320] = 4, + [228692] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, + ACTIONS(3520), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -365193,22 +365397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [228384] = 4, + [228756] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3325), 2, + ACTIONS(5067), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3327), 49, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -365253,19 +365458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228448] = 4, + [228822] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3566), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3568), 48, - anon_sym_SEMI, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365312,18 +365516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [228512] = 4, + [228886] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3563), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, + ACTIONS(3565), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -365373,23 +365578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [228576] = 4, + [228950] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(5069), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -365431,19 +365638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [228640] = 4, + [229016] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3329), 2, + ACTIONS(3346), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3331), 49, + ACTIONS(3348), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365493,25 +365699,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228704] = 6, + [229080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(4059), 1, - aux_sym_keywords_repeat1, - ACTIONS(3387), 2, + ACTIONS(3208), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3389), 47, + ACTIONS(3210), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -365555,23 +365759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228772] = 4, + [229144] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3334), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3336), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -365613,25 +365818,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [228836] = 4, + [229208] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3328), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3330), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -365673,19 +365878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [228900] = 4, + [229272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3337), 2, + ACTIONS(3324), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3339), 49, + ACTIONS(3326), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365735,17 +365939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [228964] = 4, + [229336] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3341), 2, + ACTIONS(3320), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3343), 49, + ACTIONS(3322), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365795,23 +365999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229028] = 4, + [229400] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(5071), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -365853,21 +366059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [229092] = 5, + [229466] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5083), 1, + ACTIONS(5073), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -365916,22 +366121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229158] = 4, + [229532] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3345), 2, + ACTIONS(3008), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3347), 49, + ACTIONS(3010), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -365976,24 +366181,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229222] = 4, + [229596] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(3349), 2, - sym__not_in, + ACTIONS(2881), 1, + anon_sym_COMMA, + ACTIONS(2914), 1, + anon_sym_DASH_GT, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, anon_sym_LBRACK2, + ACTIONS(4995), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(5075), 1, + anon_sym_when, + STATE(6121), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5003), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3351), 49, + ACTIONS(5013), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5015), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4993), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5019), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [229704] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3428), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3430), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366036,23 +366323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229286] = 4, + [229768] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3268), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3270), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366094,25 +366382,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [229350] = 4, + [229832] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3264), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3266), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366154,19 +366442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [229414] = 4, + [229896] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3360), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, + ACTIONS(3362), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -366216,24 +366503,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [229478] = 4, + [229960] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3359), 2, + ACTIONS(3342), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3361), 49, + ACTIONS(3344), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366275,25 +366561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [229542] = 4, + [230024] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3080), 2, + ACTIONS(3604), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3082), 49, - anon_sym_LPAREN, + ACTIONS(3606), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366335,79 +366621,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [229606] = 25, + [230088] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4588), 1, - anon_sym_when, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(3598), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3703), 2, - ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3705), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4580), 2, + ACTIONS(3600), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4586), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4596), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4598), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -366417,22 +366671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [229712] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [230152] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3260), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2635), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2637), 48, + ACTIONS(3262), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -366477,26 +366743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [229776] = 6, + [230216] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3256), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3199), 48, - anon_sym_SEMI, + ACTIONS(3258), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366538,22 +366802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_end, - [229844] = 6, + anon_sym_DOT, + [230280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3590), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, - sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 48, - anon_sym_SEMI, + ACTIONS(3592), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -366600,21 +366861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_end, - [229912] = 6, + anon_sym_DASH_GT, + anon_sym_DOT, + [230344] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4565), 1, - anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, + ACTIONS(3518), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 48, + anon_sym_LBRACK2, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -366662,25 +366922,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_end, - [229980] = 4, + anon_sym_DOT, + [230408] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3567), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2639), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2641), 48, + ACTIONS(3569), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366722,26 +366981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [230044] = 5, + [230472] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5085), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3478), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(3480), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366783,97 +367041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [230110] = 17, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 13, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, anon_sym_DASH_GT, - [230200] = 5, + anon_sym_DOT, + [230536] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5087), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3252), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(3254), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -366918,24 +367103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [230266] = 4, + [230600] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3363), 2, + ACTIONS(3571), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3365), 49, + ACTIONS(3573), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -366977,25 +367161,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [230330] = 4, + [230664] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3367), 2, + ACTIONS(3567), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3369), 49, + ACTIONS(3569), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367037,20 +367221,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [230394] = 4, + [230728] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3559), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3305), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3307), 48, - anon_sym_SEMI, + ACTIONS(3561), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -367097,24 +367281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [230458] = 4, + [230792] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3248), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3250), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367156,25 +367342,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [230522] = 4, + [230856] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3244), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3246), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367216,25 +367402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [230586] = 4, + [230920] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3240), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3242), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367276,25 +367462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [230650] = 4, + [230984] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3236), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3238), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367336,107 +367522,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [230714] = 4, + [231048] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(3668), 1, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4577), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4587), 1, anon_sym_when, + ACTIONS(4589), 1, anon_sym_COLON_COLON, + ACTIONS(4591), 1, anon_sym_EQ_GT, + ACTIONS(4593), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4603), 1, anon_sym_in, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(4611), 1, anon_sym_DOT, - [230778] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 2, + ACTIONS(4613), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4579), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4585), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3670), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -367446,35 +367604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [230842] = 4, + [231154] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3232), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3234), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367516,25 +367663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [230906] = 4, + [231218] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3228), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3230), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367576,25 +367723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [230970] = 4, + [231282] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3224), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3226), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367636,25 +367783,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [231034] = 4, + [231346] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3432), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 49, - anon_sym_RPAREN, + ACTIONS(3434), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367696,26 +367843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [231098] = 4, + [231410] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3301), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3303), 48, - anon_sym_SEMI, + ACTIONS(3206), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367758,23 +367904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231162] = 5, + [231474] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5089), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3200), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(3202), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -367819,22 +367964,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231228] = 4, + [231538] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3076), 2, + ACTIONS(3196), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3078), 49, - anon_sym_LPAREN, + ACTIONS(3198), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -367879,26 +368024,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231292] = 6, + [231602] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(4310), 1, - aux_sym_keywords_repeat1, - ACTIONS(3353), 2, + ACTIONS(5078), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3355), 47, - anon_sym_LBRACE, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -367941,26 +368085,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231360] = 6, + [231668] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5091), 1, - anon_sym_COMMA, - STATE(4311), 1, - aux_sym_keywords_repeat1, - ACTIONS(3387), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3389), 47, - anon_sym_LBRACE, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368002,27 +368143,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [231428] = 6, + [231732] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(5093), 1, - anon_sym_COMMA, - STATE(4311), 1, - aux_sym_keywords_repeat1, - ACTIONS(3281), 2, - sym__not_in, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3428), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3283), 47, - anon_sym_LBRACE, + ACTIONS(3430), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368064,19 +368207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [231496] = 4, + [231800] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 4, + ACTIONS(3428), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 48, + ACTIONS(3430), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -368125,24 +368267,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231560] = 4, + [231864] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(5080), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3536), 48, - anon_sym_SEMI, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368185,46 +368328,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231624] = 4, + [231930] = 25, ACTIONS(5), 1, sym_comment, + ACTIONS(4527), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_when, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3243), 4, - sym__not_in, + ACTIONS(3664), 2, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3245), 48, + ACTIONS(3666), 2, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -368234,35 +368409,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [231688] = 4, + [232036] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3004), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3173), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3175), 48, - anon_sym_SEMI, + ACTIONS(3006), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368305,24 +368469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231752] = 4, + [232100] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(5082), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3177), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3179), 48, - anon_sym_SEMI, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368365,18 +368530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231816] = 4, + [232166] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3098), 2, + ACTIONS(5084), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3100), 49, - anon_sym_LPAREN, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -368425,19 +368591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231880] = 5, + [232232] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5086), 1, aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3166), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -368486,24 +368652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [231946] = 4, + [232298] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3072), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3428), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3074), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3430), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368546,24 +368712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232010] = 4, + [232362] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(5088), 1, + aux_sym_sigil_token3, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3247), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3249), 48, - anon_sym_SEMI, + ACTIONS(3168), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368606,104 +368773,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232074] = 24, + [232428] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5062), 1, - anon_sym_when, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5076), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3705), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(5070), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5072), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [232178] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3375), 2, + ACTIONS(3474), 4, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3377), 49, + anon_sym_LBRACK2, + ACTIONS(3476), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368746,24 +368833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232242] = 4, + [232492] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3379), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3490), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3381), 49, + anon_sym_LBRACK2, + ACTIONS(3492), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368806,24 +368893,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232306] = 4, + [232556] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3383), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3424), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3385), 49, + anon_sym_LBRACK2, + ACTIONS(3426), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368866,24 +368953,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232370] = 4, + [232620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3395), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3412), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3397), 49, + anon_sym_LBRACK2, + ACTIONS(3414), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368926,24 +369013,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232434] = 4, + [232684] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3068), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3460), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3070), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3462), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -368986,24 +369073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232498] = 4, + [232748] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3402), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3464), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3404), 49, + anon_sym_LBRACK2, + ACTIONS(3466), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369046,22 +369133,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232562] = 4, + [232812] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3418), 2, + ACTIONS(3000), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3420), 49, + ACTIONS(3002), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -369106,18 +369193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232626] = 4, + [232876] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, + ACTIONS(3408), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3373), 48, + ACTIONS(3410), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -369166,18 +369253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232690] = 4, + [232940] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3406), 4, + ACTIONS(3468), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3408), 48, + ACTIONS(3470), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -369226,25 +369313,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232754] = 5, + [233004] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5098), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3368), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3370), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369287,25 +369373,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232820] = 5, + [233068] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5100), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3364), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3366), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369348,46 +369433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [232886] = 4, + [233132] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3422), 2, - sym__not_in, + ACTIONS(3668), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4730), 1, + anon_sym_PIPE, + ACTIONS(4740), 1, + anon_sym_when, + ACTIONS(4742), 1, + anon_sym_COLON_COLON, + ACTIONS(4744), 1, + anon_sym_EQ_GT, + ACTIONS(4746), 1, + anon_sym_EQ, + ACTIONS(4756), 1, + anon_sym_in, + ACTIONS(4758), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4762), 1, + anon_sym_STAR_STAR, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(4766), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3424), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3670), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -369397,39 +369514,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, + [233238] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4559), 1, anon_sym_STAR_STAR, + ACTIONS(4561), 1, anon_sym_DOT, - [232950] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5102), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -369459,37 +369582,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, + [233318] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4559), 1, anon_sym_STAR_STAR, + ACTIONS(4561), 1, anon_sym_DOT, - [233016] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3426), 2, - sym__not_in, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3428), 49, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 24, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -369509,66 +369653,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + [233404] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_PIPE, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, anon_sym_in, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4559), 1, anon_sym_STAR_STAR, + ACTIONS(4561), 1, anon_sym_DOT, - [233080] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3434), 2, - sym__not_in, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3436), 49, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4529), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3476), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -369578,33 +369731,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [233144] = 4, + [233504] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3438), 2, + ACTIONS(3036), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3440), 49, + ACTIONS(3038), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -369649,18 +369791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233208] = 4, + [233568] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3032), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 48, + ACTIONS(3034), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369709,18 +369851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233272] = 4, + [233632] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2968), 4, + ACTIONS(3474), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2970), 48, + ACTIONS(3476), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -369769,19 +369911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233336] = 5, + [233696] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5104), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, + ACTIONS(3024), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(3026), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369830,18 +369971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233402] = 4, + [233760] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3478), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3144), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3480), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -369888,27 +370030,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [233466] = 5, + [233824] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5106), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3114), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3116), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -369951,25 +370091,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233532] = 5, + [233888] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5108), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3118), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3120), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370012,28 +370151,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233598] = 5, + [233952] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(5110), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -370065,31 +370217,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [233664] = 4, + [234028] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(2996), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3231), 49, - anon_sym_RPAREN, + ACTIONS(2998), 49, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370131,24 +370276,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [233728] = 4, + [234092] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, - sym__not_in, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3474), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3235), 49, - anon_sym_RPAREN, + ACTIONS(3476), 44, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_DOT_DOT, anon_sym_PLUS, @@ -370189,28 +370341,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [233792] = 4, + [234164] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3454), 2, + ACTIONS(3114), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3456), 49, + ACTIONS(3116), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370252,26 +370399,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [233856] = 5, + [234228] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5112), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3114), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3116), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370314,62 +370461,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [233922] = 11, + [234292] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4614), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4580), 2, + ACTIONS(4889), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(5090), 1, + anon_sym_RPAREN, + ACTIONS(5092), 1, + anon_sym_COMMA, + STATE(6241), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3371), 3, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370379,79 +370543,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [234000] = 24, + [234400] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4531), 1, + ACTIONS(4527), 1, anon_sym_PIPE, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4543), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4545), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4547), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4557), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4559), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + ACTIONS(4559), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, + ACTIONS(4561), 1, anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, + ACTIONS(3474), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4529), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4537), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4549), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, + ACTIONS(3476), 4, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_end, - ACTIONS(4553), 5, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, + ACTIONS(4531), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4555), 9, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370461,19 +370623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234104] = 4, + [234504] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3555), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3189), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3191), 48, - anon_sym_SEMI, + ACTIONS(3557), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -370520,23 +370681,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [234168] = 4, + [234568] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3442), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3444), 49, + ACTIONS(2651), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2653), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -370581,24 +370743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [234232] = 4, + [234632] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3446), 2, + ACTIONS(3551), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3448), 49, + ACTIONS(3553), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -370640,19 +370801,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [234296] = 4, + [234696] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3430), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3150), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3432), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3152), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -370699,19 +370862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [234360] = 4, + [234760] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3545), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 49, + ACTIONS(3547), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -370761,79 +370923,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [234424] = 26, + [234824] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4527), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4559), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, sym__not_in, - ACTIONS(5114), 1, - anon_sym_RPAREN, - ACTIONS(5116), 1, - anon_sym_COMMA, - STATE(6239), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4853), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4529), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(3476), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4525), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4531), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -370843,21 +371003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [234532] = 6, + [234928] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 3, + ACTIONS(3474), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 47, + anon_sym_LBRACK2, + ACTIONS(3476), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -370905,18 +371062,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [234600] = 4, + anon_sym_DOT, + [234992] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3414), 2, - sym__not_in, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3416), 49, - anon_sym_RPAREN, + ACTIONS(3476), 46, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -370962,27 +371126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [234664] = 4, + [235062] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3450), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3444), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3452), 49, + anon_sym_LBRACK2, + ACTIONS(3446), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371025,18 +371186,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [234728] = 4, + [235126] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [235224] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [235320] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, + ACTIONS(3440), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 48, + ACTIONS(3442), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -371085,28 +371399,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [234792] = 5, + [235384] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(5118), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4525), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 12, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -371116,16 +371473,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + [235476] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -371135,37 +371530,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [235566] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4553), 1, anon_sym_in, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [234858] = 4, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [235654] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3414), 2, - sym__not_in, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 2, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3416), 49, - anon_sym_RPAREN, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 33, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -371194,40 +371688,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, + [235738] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4559), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(4561), 1, anon_sym_DOT, - [234922] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5120), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -371258,33 +371755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [234988] = 4, + [235816] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, + ACTIONS(2655), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3148), 48, - anon_sym_SEMI, + ACTIONS(2657), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371327,24 +371815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235052] = 4, + [235880] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3148), 48, - anon_sym_SEMI, + ACTIONS(3124), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371387,24 +371875,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235116] = 4, + [235944] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3126), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3391), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3393), 48, - anon_sym_SEMI, + ACTIONS(3128), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371447,17 +371935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235180] = 4, + [236008] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3458), 2, + ACTIONS(3130), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3460), 49, + ACTIONS(3132), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371507,24 +371995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235244] = 4, + [236072] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3193), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3195), 48, - anon_sym_SEMI, + ACTIONS(3136), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371567,103 +372055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235308] = 23, + [236136] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, + ACTIONS(3138), 2, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4596), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4598), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(4600), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [235410] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3373), 48, - anon_sym_SEMI, + ACTIONS(3140), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371706,24 +372115,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235474] = 4, + [236200] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3142), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3146), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3148), 48, - anon_sym_SEMI, + ACTIONS(3144), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -371766,99 +372175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235538] = 25, + [236264] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3699), 1, - aux_sym__terminator_token1, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4531), 1, - anon_sym_PIPE, - ACTIONS(4541), 1, - anon_sym_when, - ACTIONS(4543), 1, - anon_sym_COLON_COLON, - ACTIONS(4545), 1, - anon_sym_EQ_GT, - ACTIONS(4547), 1, - anon_sym_EQ, - ACTIONS(4557), 1, - anon_sym_in, - ACTIONS(4559), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, - anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4533), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4537), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4539), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3701), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - ACTIONS(4549), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4551), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4529), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4553), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [235644] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3410), 2, + ACTIONS(3518), 4, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3412), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371905,21 +372234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [235708] = 4, + [236328] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3144), 48, - anon_sym_SEMI, + ACTIONS(3520), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -371966,25 +372293,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [235772] = 4, + [236392] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3462), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3342), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3464), 49, + anon_sym_LBRACK2, + ACTIONS(3344), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372027,27 +372355,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235836] = 4, + [236456] = 11, ACTIONS(5), 1, sym_comment, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3142), 4, + ACTIONS(4529), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3474), 3, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3144), 48, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -372078,33 +372422,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [235900] = 4, + [236534] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3146), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3030), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3032), 48, - anon_sym_SEMI, + ACTIONS(3148), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372147,18 +372482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [235964] = 4, + [236598] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, - sym__not_in, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3474), 3, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3412), 49, - anon_sym_RPAREN, + ACTIONS(3476), 47, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -372205,26 +372544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [236028] = 4, + [236666] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3154), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 48, - anon_sym_SEMI, + ACTIONS(3156), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372267,18 +372604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236092] = 4, + [236730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3360), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 48, + ACTIONS(3362), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372327,18 +372664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236156] = 4, + [236794] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(3484), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 48, + ACTIONS(3486), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372387,96 +372724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236220] = 22, + [236858] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3371), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4596), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4598), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4602), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [236320] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3030), 4, + ACTIONS(3563), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 48, + ACTIONS(3565), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372525,21 +372784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236384] = 6, + [236922] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3295), 47, + anon_sym_LBRACK2, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372587,24 +372843,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [236452] = 4, + anon_sym_DOT, + [236986] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2643), 3, - sym__not_in, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2645), 48, + ACTIONS(3120), 49, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -372646,47 +372902,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DASH_GT, anon_sym_DOT, - [236516] = 4, + [237050] = 23, ACTIONS(5), 1, sym_comment, + ACTIONS(4527), 1, + anon_sym_PIPE, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, + anon_sym_LBRACK2, + ACTIONS(4565), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, - sym__not_in, + ACTIONS(3474), 2, ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4529), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -372696,29 +372983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [236580] = 4, + [237152] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3251), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3253), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372767,18 +373043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236644] = 4, + [237216] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -372827,106 +373103,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236708] = 4, + [237280] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3255), 4, - sym__not_in, - ts_builtin_sym_end, + ACTIONS(3664), 1, aux_sym__terminator_token1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(3257), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4730), 1, anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4740), 1, anon_sym_when, + ACTIONS(4742), 1, anon_sym_COLON_COLON, + ACTIONS(4744), 1, anon_sym_EQ_GT, + ACTIONS(4746), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(4756), 1, anon_sym_in, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(4762), 1, anon_sym_STAR_STAR, + ACTIONS(4764), 1, anon_sym_DOT, - [236772] = 4, - ACTIONS(5), 1, - sym_comment, + ACTIONS(4766), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3261), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4732), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4738), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3666), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4728), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4734), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -372936,33 +373184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [236836] = 4, + [237386] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3094), 2, + ACTIONS(3158), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3096), 49, - anon_sym_LPAREN, + ACTIONS(3160), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -373007,22 +373244,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236900] = 4, + [237450] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3000), 2, + ACTIONS(3162), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3002), 49, - anon_sym_LPAREN, + ACTIONS(3164), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -373067,18 +373304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [236964] = 4, + [237514] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3373), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -373125,20 +373363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [237028] = 4, + [237578] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3538), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3540), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -373187,25 +373424,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237092] = 5, + [237642] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5122), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373248,25 +373484,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237158] = 5, + [237706] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5124), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373309,24 +373544,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237224] = 4, + [237770] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2996), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2998), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373369,23 +373604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237288] = 4, + [237834] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3406), 2, + ACTIONS(3172), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3408), 49, - anon_sym_RPAREN, + ACTIONS(3174), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373427,81 +373663,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [237352] = 26, + [237898] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(3176), 2, sym__not_in, - ACTIONS(5060), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3178), 49, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(5064), 1, - anon_sym_COLON_COLON, - ACTIONS(5066), 1, - anon_sym_EQ_GT, - ACTIONS(5068), 1, - anon_sym_EQ, - ACTIONS(5126), 1, - anon_sym_RPAREN, - ACTIONS(5128), 1, - anon_sym_COMMA, - ACTIONS(5131), 1, - anon_sym_when, - ACTIONS(5134), 1, - anon_sym_DASH_GT, - ACTIONS(4992), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5076), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373511,24 +373713,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [237460] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [237962] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3180), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3546), 48, - anon_sym_SEMI, + ACTIONS(3182), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373571,46 +373784,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237524] = 4, + [238026] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3548), 4, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3550), 48, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4885), 1, + anon_sym_GT_GT, + ACTIONS(5096), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(5100), 1, anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(5108), 1, anon_sym_when, + ACTIONS(5110), 1, anon_sym_COLON_COLON, + ACTIONS(5112), 1, anon_sym_EQ_GT, + ACTIONS(5114), 1, anon_sym_EQ, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + STATE(6714), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5106), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5116), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(5094), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -373620,29 +373866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [237588] = 4, + [238134] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3050), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3052), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -373691,24 +373926,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237652] = 4, + [238198] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3184), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3546), 48, - anon_sym_SEMI, + ACTIONS(3186), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373751,24 +373986,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237716] = 4, + [238262] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3188), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3546), 48, - anon_sym_SEMI, + ACTIONS(3190), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373811,24 +374046,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237780] = 4, + [238326] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3084), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3086), 49, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -373871,18 +374106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237844] = 4, + [238390] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3558), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3560), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -373931,18 +374166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237908] = 4, + [238454] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 4, + ACTIONS(3518), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 48, + ACTIONS(3520), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -373991,24 +374226,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [237972] = 4, + [238518] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3192), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3197), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3199), 48, - anon_sym_SEMI, + ACTIONS(3194), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -374051,25 +374286,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [238036] = 5, + [238582] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5136), 1, - aux_sym_sigil_token3, - ACTIONS(3514), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3518), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3516), 48, + anon_sym_LBRACK2, + ACTIONS(3520), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -374112,18 +374346,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [238102] = 4, + [238646] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3391), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(2980), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3393), 49, - anon_sym_RPAREN, + anon_sym_LBRACK2, + ACTIONS(2982), 48, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374170,26 +374405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DASH_GT, anon_sym_DOT, - [238166] = 4, + [238710] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3518), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3313), 4, - sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3315), 48, - anon_sym_SEMI, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, @@ -374232,104 +374465,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [238230] = 6, + [238773] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3373), 48, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(5124), 1, anon_sym_in, + ACTIONS(5126), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - [238298] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, + ACTIONS(5130), 1, anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(5132), 1, anon_sym_DOT, - ACTIONS(5006), 1, + ACTIONS(5134), 1, anon_sym_LBRACK2, - ACTIONS(4992), 2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4994), 6, + ACTIONS(5102), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_RPAREN, + ACTIONS(5122), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 24, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -374349,54 +374534,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [238376] = 11, + [238856] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3490), 2, sym__not_in, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, anon_sym_LBRACK2, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_RPAREN, + ACTIONS(3492), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -374427,47 +374584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_DASH_GT, - [238454] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(5004), 1, anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + [238919] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 2, sym__not_in, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, - anon_sym_RPAREN, + ACTIONS(3476), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -374496,124 +374641,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_DASH_GT, - [238536] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, + anon_sym_in, anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5008), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 21, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [238982] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5096), 1, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(5108), 1, anon_sym_when, + ACTIONS(5110), 1, anon_sym_COLON_COLON, + ACTIONS(5112), 1, anon_sym_EQ_GT, + ACTIONS(5114), 1, anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_DASH_GT, - [238622] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, + ACTIONS(5128), 1, anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, + ACTIONS(5130), 1, anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(5132), 1, anon_sym_DOT, - ACTIONS(5006), 1, + ACTIONS(5134), 1, anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, + ACTIONS(5136), 1, sym__not_in, - ACTIONS(4992), 2, + ACTIONS(3670), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5098), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5106), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5058), 4, + ACTIONS(5116), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5118), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5074), 5, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, + ACTIONS(5102), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5008), 9, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -374623,57 +374731,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 16, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_DASH_GT, - [238710] = 10, + [239085] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3484), 2, sym__not_in, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5138), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5142), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5140), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_LBRACE, + ACTIONS(3486), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -374705,17 +374782,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [238785] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [239148] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(2968), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2970), 48, + ACTIONS(3476), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374763,18 +374851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [238848] = 4, + [239215] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(3494), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 48, + ACTIONS(3496), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374823,17 +374910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [238911] = 4, + [239278] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3030), 2, + ACTIONS(3456), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 48, + ACTIONS(3458), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374882,17 +374969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [238974] = 4, + [239341] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3452), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 48, + ACTIONS(3454), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -374941,17 +375028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239037] = 4, + [239404] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3466), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3468), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375000,17 +375087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239100] = 4, + [239467] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3478), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3524), 48, + ACTIONS(3480), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375059,17 +375146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239163] = 4, + [239530] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3281), 2, + ACTIONS(3436), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3283), 48, + ACTIONS(3438), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375118,17 +375205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239226] = 4, + [239593] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3534), 2, + ACTIONS(3494), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3536), 48, + ACTIONS(3496), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375177,17 +375264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239289] = 4, + [239656] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3498), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3540), 48, + ACTIONS(3500), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375236,17 +375323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239352] = 4, + [239719] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3102), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3104), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375295,17 +375382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239415] = 4, + [239782] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3548), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3550), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375354,17 +375441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239478] = 4, + [239845] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3368), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 48, + ACTIONS(3370), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375413,17 +375500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239541] = 4, + [239908] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3102), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3546), 48, + ACTIONS(3104), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375472,26 +375559,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239604] = 4, + [239971] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3560), 48, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -375522,26 +375625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [239667] = 4, + [240048] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3566), 2, + ACTIONS(3494), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3568), 48, + ACTIONS(3496), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375590,26 +375684,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239730] = 4, + [240111] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3590), 2, - sym__not_in, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3592), 48, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 20, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -375627,8 +375754,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + [240196] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5094), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -375638,37 +375809,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + ACTIONS(3476), 15, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [240283] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5041), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4911), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [239793] = 4, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [240386] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3594), 2, - sym__not_in, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3596), 48, + ACTIONS(5118), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3476), 12, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -375678,16 +375976,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + [240475] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5114), 1, + anon_sym_EQ, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5116), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(5094), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 8, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -375697,28 +376050,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [240568] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_EQ_GT, + ACTIONS(5114), 1, + anon_sym_EQ, + ACTIONS(5124), 1, anon_sym_in, + ACTIONS(5126), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5116), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5118), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5094), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [239856] = 4, + ACTIONS(3476), 7, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(5122), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [240663] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3598), 2, + ACTIONS(3506), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3600), 48, + ACTIONS(3508), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375767,45 +376184,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [239919] = 4, + [240726] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3602), 2, - sym__not_in, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5110), 1, + anon_sym_COLON_COLON, + ACTIONS(5112), 1, + anon_sym_EQ_GT, + ACTIONS(5114), 1, + anon_sym_EQ, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3604), 48, + ACTIONS(5116), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5118), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3476), 5, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -375815,28 +376261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [239982] = 4, + [240825] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3598), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3600), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375885,17 +376320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240045] = 4, + [240888] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3590), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3592), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -375944,17 +376379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240108] = 4, + [240951] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3474), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3476), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376003,17 +376438,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240171] = 4, + [241014] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3106), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3108), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376062,76 +376497,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240234] = 24, + [241077] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(3567), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5148), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3569), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(5152), 1, - anon_sym_when, - ACTIONS(5154), 1, - anon_sym_COLON_COLON, - ACTIONS(5156), 1, - anon_sym_EQ_GT, - ACTIONS(5158), 1, - anon_sym_EQ, - ACTIONS(5168), 1, - anon_sym_in, - ACTIONS(5170), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5174), 1, - sym__not_in, - ACTIONS(3701), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5138), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5142), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5160), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5164), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5166), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376141,76 +376545,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240337] = 24, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [241140] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(5096), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(5108), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(5110), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(5112), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(5114), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(5124), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(5126), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(5128), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(5130), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, sym__not_in, - ACTIONS(4853), 2, + ACTIONS(5098), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(5126), 2, - anon_sym_RPAREN, - anon_sym_COMMA, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(5116), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(3476), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(5102), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376220,29 +376634,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240440] = 4, + [241241] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3478), 2, sym__not_in, anon_sym_LBRACK2, + ACTIONS(3843), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3480), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -376279,76 +376694,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240503] = 24, + [241306] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5148), 1, + ACTIONS(5096), 1, anon_sym_PIPE, - ACTIONS(5152), 1, + ACTIONS(5108), 1, anon_sym_when, - ACTIONS(5154), 1, + ACTIONS(5110), 1, anon_sym_COLON_COLON, - ACTIONS(5156), 1, + ACTIONS(5112), 1, anon_sym_EQ_GT, - ACTIONS(5158), 1, + ACTIONS(5114), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5124), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5126), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5128), 1, anon_sym_SLASH_SLASH, - ACTIONS(5174), 1, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, sym__not_in, - ACTIONS(3705), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5138), 2, + ACTIONS(5098), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5116), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, + ACTIONS(3476), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5102), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376358,80 +376772,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [240606] = 4, + [241407] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3474), 1, sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3608), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, + ACTIONS(5130), 1, anon_sym_STAR_STAR, + ACTIONS(5132), 1, anon_sym_DOT, - [240669] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3476), 44, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -376473,48 +376835,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [240732] = 4, + [241478] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, - sym__not_in, + ACTIONS(4297), 1, + anon_sym_SEMI, + ACTIONS(4527), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_when, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4559), 1, + anon_sym_STAR_STAR, + ACTIONS(4561), 1, + anon_sym_DOT, + ACTIONS(4563), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(4295), 2, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3608), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, + ACTIONS(4529), 2, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4525), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4531), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -376524,37 +376915,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [240795] = 4, + [241583] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -376586,25 +376980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [240858] = 4, + [241658] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(2980), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(2982), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376653,17 +377039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240921] = 4, + [241721] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3604), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3606), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376712,17 +377098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [240984] = 4, + [241784] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3474), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3476), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376771,17 +377157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241047] = 4, + [241847] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376830,17 +377216,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241110] = 4, + [241910] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -376889,149 +377275,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241173] = 17, + [241973] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5112), 1, + anon_sym_EQ_GT, + ACTIONS(5114), 1, + anon_sym_EQ, + ACTIONS(5124), 1, anon_sym_in, - ACTIONS(5046), 1, + ACTIONS(5126), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, + ACTIONS(5128), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + ACTIONS(5130), 1, anon_sym_STAR_STAR, - ACTIONS(5052), 1, + ACTIONS(5132), 1, anon_sym_DOT, - ACTIONS(5054), 1, + ACTIONS(5134), 1, anon_sym_LBRACK2, - ACTIONS(5056), 1, + ACTIONS(5136), 1, sym__not_in, - ACTIONS(5018), 2, + ACTIONS(5098), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5024), 2, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5038), 3, + ACTIONS(5116), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5014), 4, + ACTIONS(5094), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5040), 5, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, - anon_sym_PIPE, + ACTIONS(3476), 6, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - [241262] = 25, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_SEMI, - ACTIONS(4578), 1, - anon_sym_PIPE, - ACTIONS(4588), 1, - anon_sym_when, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - ACTIONS(4592), 1, - anon_sym_EQ_GT, - ACTIONS(4594), 1, - anon_sym_EQ, - ACTIONS(4604), 1, - anon_sym_in, - ACTIONS(4606), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4608), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4610), 1, - anon_sym_STAR_STAR, - ACTIONS(4612), 1, - anon_sym_DOT, - ACTIONS(4614), 1, - anon_sym_LBRACK2, - ACTIONS(4616), 1, - sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4468), 2, - ts_builtin_sym_end, - aux_sym__terminator_token1, - ACTIONS(4580), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4584), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4586), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4596), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4598), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4576), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4600), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4582), 6, + ACTIONS(5102), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4602), 9, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -377041,17 +377351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [241367] = 4, + [242070] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3420), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3422), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377100,17 +377410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241430] = 4, + [242133] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3559), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3561), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377159,17 +377469,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241493] = 4, + [242196] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3416), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3418), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377218,26 +377528,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241556] = 4, + [242259] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -377267,27 +377595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [241619] = 4, + [242338] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3416), 1, sym__not_in, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3608), 48, + ACTIONS(3418), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377335,18 +377656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [241682] = 4, + [242405] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(3468), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3231), 48, + ACTIONS(3470), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377395,17 +377715,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241745] = 4, + [242468] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(5140), 1, + anon_sym_PIPE, + ACTIONS(5150), 1, + anon_sym_when, + ACTIONS(5152), 1, + anon_sym_COLON_COLON, + ACTIONS(5154), 1, + anon_sym_EQ_GT, + ACTIONS(5156), 1, + anon_sym_EQ, + ACTIONS(5166), 1, + anon_sym_in, + ACTIONS(5168), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5170), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, + ACTIONS(5174), 1, + sym__not_in, + ACTIONS(3666), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5142), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5146), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5148), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5158), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5160), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5138), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5162), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5144), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5164), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [242571] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, + ACTIONS(3416), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3235), 48, + ACTIONS(3418), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377454,17 +377853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241808] = 4, + [242634] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3430), 2, + ACTIONS(3464), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3432), 48, + ACTIONS(3466), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377513,17 +377912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241871] = 4, + [242697] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3460), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 48, + ACTIONS(3462), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377572,17 +377971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241934] = 4, + [242760] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3414), 2, + ACTIONS(3567), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3416), 48, + ACTIONS(3569), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377631,17 +378030,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [241997] = 4, + [242823] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3414), 2, + ACTIONS(3571), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3416), 48, + ACTIONS(3573), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377690,17 +378089,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [242060] = 4, + [242886] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3416), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 48, + ACTIONS(3418), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377749,77 +378148,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [242123] = 25, + [242949] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_LBRACK2, - ACTIONS(4424), 1, - aux_sym__terminator_token1, - ACTIONS(4686), 1, - anon_sym_PIPE, - ACTIONS(4696), 1, - anon_sym_when, - ACTIONS(4698), 1, - anon_sym_COLON_COLON, - ACTIONS(4700), 1, - anon_sym_EQ_GT, - ACTIONS(4702), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, - anon_sym_STAR_STAR, - ACTIONS(4720), 1, - anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(3567), 2, sym__not_in, - ACTIONS(3), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4426), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(4688), 2, + aux_sym__terminator_token1, + ACTIONS(3569), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4692), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4694), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4704), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4708), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4710), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -377829,17 +378196,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242228] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [243012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3074), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3412), 48, + ACTIONS(3076), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377888,17 +378266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [242291] = 4, + [243075] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3110), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 48, + ACTIONS(3112), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -377947,17 +378325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [242354] = 4, + [243138] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3406), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3408), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378006,17 +378384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [242417] = 4, + [243201] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3391), 2, + ACTIONS(3096), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3393), 48, + ACTIONS(3098), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378065,20 +378443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [242480] = 6, + [243264] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3428), 2, sym__not_in, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 47, + ACTIONS(3430), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378126,42 +378501,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [242547] = 11, + anon_sym_DOT, + [243327] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -378192,42 +378552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [242624] = 11, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(5048), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(5052), 1, anon_sym_DOT, - ACTIONS(5054), 1, + [243390] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3555), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3557), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -378258,46 +378611,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [242701] = 13, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(5052), 1, anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + [243453] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 33, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -378326,59 +378668,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [242782] = 15, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5044), 1, anon_sym_in, - ACTIONS(5046), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, anon_sym_STAR_STAR, - ACTIONS(5052), 1, anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + [243516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3551), 2, sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5014), 4, + ACTIONS(3553), 48, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 20, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -378396,52 +378716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [242867] = 16, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -378451,33 +378727,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 15, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - [242954] = 4, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [243579] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3052), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378526,146 +378797,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [243017] = 19, + [243642] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5036), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5038), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5014), 4, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 8, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [243110] = 20, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5036), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5038), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 7, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(5042), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -378675,94 +378845,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243205] = 22, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5016), 1, - anon_sym_PIPE, - ACTIONS(5030), 1, - anon_sym_COLON_COLON, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, anon_sym_in, - ACTIONS(5046), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5036), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5038), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3373), 5, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [243304] = 4, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [243705] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3428), 1, sym__not_in, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 48, + ACTIONS(3430), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -378810,154 +378917,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_DOT, - [243367] = 23, + [243772] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(5016), 1, - anon_sym_PIPE, - ACTIONS(5028), 1, - anon_sym_when, - ACTIONS(5030), 1, - anon_sym_COLON_COLON, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(4295), 1, aux_sym__terminator_token1, - ACTIONS(5036), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5038), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(3373), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [243468] = 23, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5016), 1, + ACTIONS(4730), 1, anon_sym_PIPE, - ACTIONS(5028), 1, + ACTIONS(4740), 1, anon_sym_when, - ACTIONS(5030), 1, + ACTIONS(4742), 1, anon_sym_COLON_COLON, - ACTIONS(5032), 1, + ACTIONS(4744), 1, anon_sym_EQ_GT, - ACTIONS(5034), 1, + ACTIONS(4746), 1, anon_sym_EQ, - ACTIONS(5044), 1, + ACTIONS(4756), 1, anon_sym_in, - ACTIONS(5046), 1, + ACTIONS(4758), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, + ACTIONS(4760), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + ACTIONS(4762), 1, anon_sym_STAR_STAR, - ACTIONS(5052), 1, + ACTIONS(4764), 1, anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + ACTIONS(4766), 1, sym__not_in, - ACTIONS(5018), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4297), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(4732), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5024), 2, + ACTIONS(4736), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5036), 3, + ACTIONS(4738), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4748), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5038), 3, + ACTIONS(4750), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3373), 4, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(5014), 4, + ACTIONS(4728), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5040), 5, + ACTIONS(4752), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, + ACTIONS(4734), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5042), 9, + ACTIONS(4754), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -378967,28 +378997,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243569] = 8, + [243877] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3545), 2, sym__not_in, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 44, + ACTIONS(3547), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_DOT_DOT, @@ -379030,77 +379053,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [243640] = 25, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [243940] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3825), 1, anon_sym_LBRACK2, - ACTIONS(4468), 1, + ACTIONS(4295), 1, aux_sym__terminator_token1, - ACTIONS(4686), 1, + ACTIONS(4577), 1, anon_sym_PIPE, - ACTIONS(4696), 1, + ACTIONS(4587), 1, anon_sym_when, - ACTIONS(4698), 1, + ACTIONS(4589), 1, anon_sym_COLON_COLON, - ACTIONS(4700), 1, + ACTIONS(4591), 1, anon_sym_EQ_GT, - ACTIONS(4702), 1, + ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4603), 1, anon_sym_in, - ACTIONS(4714), 1, + ACTIONS(4605), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4716), 1, + ACTIONS(4607), 1, anon_sym_SLASH_SLASH, - ACTIONS(4718), 1, + ACTIONS(4609), 1, anon_sym_STAR_STAR, - ACTIONS(4720), 1, + ACTIONS(4611), 1, anon_sym_DOT, - ACTIONS(4722), 1, + ACTIONS(4613), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4470), 2, + ACTIONS(4297), 2, anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4688), 2, + ACTIONS(4579), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4692), 2, + ACTIONS(4583), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4694), 2, + ACTIONS(4585), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4704), 3, + ACTIONS(4595), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4706), 3, + ACTIONS(4597), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4684), 4, + ACTIONS(4575), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4708), 5, + ACTIONS(4599), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4690), 6, + ACTIONS(4581), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4710), 9, + ACTIONS(4601), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379110,30 +379136,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [243745] = 5, + [244045] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, + ACTIONS(3220), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3872), 2, - anon_sym_when, - anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3299), 46, + ACTIONS(3222), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_EQ, @@ -379170,139 +379195,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [243810] = 25, + [244108] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4468), 1, - aux_sym__terminator_token1, - ACTIONS(4531), 1, + ACTIONS(5140), 1, anon_sym_PIPE, - ACTIONS(4541), 1, + ACTIONS(5150), 1, anon_sym_when, - ACTIONS(4543), 1, + ACTIONS(5152), 1, anon_sym_COLON_COLON, - ACTIONS(4545), 1, + ACTIONS(5154), 1, anon_sym_EQ_GT, - ACTIONS(4547), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(4557), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(4559), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4561), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, - ACTIONS(4563), 1, + ACTIONS(5172), 1, anon_sym_STAR_STAR, - ACTIONS(4565), 1, - anon_sym_DOT, - ACTIONS(4567), 1, + ACTIONS(5174), 1, sym__not_in, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(4470), 2, - anon_sym_SEMI, - anon_sym_end, - ACTIONS(4533), 2, + ACTIONS(3670), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4537), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4539), 2, + ACTIONS(5148), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4549), 3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4551), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4529), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4553), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4535), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4555), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [243915] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3371), 1, - sym__not_in, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5022), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 36, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379312,25 +379274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - [243990] = 7, + [244211] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 46, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -379377,17 +379331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [244059] = 4, + anon_sym_STAR_STAR, + anon_sym_DOT, + [244274] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 2, + ACTIONS(3216), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 48, + ACTIONS(3218), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -379436,231 +379392,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [244122] = 21, + [244337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5016), 1, - anon_sym_PIPE, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + ACTIONS(3212), 2, sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5036), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5038), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5014), 4, + ACTIONS(3214), 48, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [244219] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5016), 1, anon_sym_PIPE, - ACTIONS(5028), 1, - anon_sym_when, - ACTIONS(5030), 1, - anon_sym_COLON_COLON, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(3160), 2, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5026), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5036), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5038), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [244322] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, - anon_sym_DOT, - ACTIONS(5006), 1, - anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5060), 1, - anon_sym_PIPE, - ACTIONS(5064), 1, + anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(5066), 1, anon_sym_EQ_GT, - ACTIONS(5068), 1, anon_sym_EQ, - ACTIONS(5131), 1, - anon_sym_when, - ACTIONS(4992), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4996), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5076), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(5134), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5070), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5074), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5008), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379670,89 +379440,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [244425] = 14, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5044), 1, anon_sym_in, - ACTIONS(5046), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - ACTIONS(3373), 24, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [244508] = 5, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [244400] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3263), 2, + ACTIONS(3420), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3719), 2, + ACTIONS(3718), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3265), 46, + ACTIONS(3422), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -379799,44 +379511,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [244573] = 12, + [244465] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3428), 2, sym__not_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 34, + ACTIONS(3430), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -379866,45 +379560,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [244652] = 4, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [244528] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3333), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3335), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5096), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(5108), 1, + anon_sym_when, + ACTIONS(5110), 1, + anon_sym_COLON_COLON, + ACTIONS(5112), 1, + anon_sym_EQ_GT, + ACTIONS(5114), 1, + anon_sym_EQ, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(3666), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5106), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5116), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(5094), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -379914,28 +379649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [244715] = 4, + [244631] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3313), 2, + ACTIONS(3428), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3315), 48, + ACTIONS(3430), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -379984,17 +379708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [244778] = 4, + [244694] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3309), 2, + ACTIONS(3086), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3311), 48, + ACTIONS(3088), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380043,17 +379767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [244841] = 4, + [244757] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3305), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3307), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380102,17 +379826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [244904] = 4, + [244820] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3301), 2, + ACTIONS(3444), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3303), 48, + ACTIONS(3446), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380161,17 +379885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [244967] = 4, + [244883] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(3424), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3245), 48, + ACTIONS(3426), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380220,17 +379944,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245030] = 4, + [244946] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3263), 2, + ACTIONS(3440), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3265), 48, + ACTIONS(3442), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380279,45 +380003,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245093] = 4, + [245009] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3247), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3249), 48, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5096), 1, anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(5108), 1, + anon_sym_when, + ACTIONS(5110), 1, + anon_sym_COLON_COLON, + ACTIONS(5112), 1, + anon_sym_EQ_GT, + ACTIONS(5114), 1, + anon_sym_EQ, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(3534), 2, anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_DOT_DOT, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5106), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5116), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(5118), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(5094), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5120), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5122), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -380327,28 +380082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [245156] = 4, + [245112] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, + ACTIONS(3412), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3299), 48, + ACTIONS(3414), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380397,17 +380141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245219] = 4, + [245175] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380456,20 +380200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245282] = 6, + [245238] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3518), 2, sym__not_in, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 47, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380517,17 +380258,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [245349] = 4, + anon_sym_DOT, + [245301] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, + ACTIONS(3408), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 48, + ACTIONS(3410), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380576,17 +380318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245412] = 4, + [245364] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, + ACTIONS(3118), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 48, + ACTIONS(3120), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380635,17 +380377,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245475] = 4, + [245427] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3277), 2, + ACTIONS(3563), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3279), 48, + ACTIONS(3565), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380694,17 +380436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245538] = 4, + [245490] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 2, + ACTIONS(3096), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 48, + ACTIONS(3098), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380753,20 +380495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [245601] = 6, + [245553] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3086), 2, sym__not_in, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 47, + ACTIONS(3088), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -380814,76 +380553,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - [245668] = 24, + anon_sym_DOT, + [245616] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(5016), 1, - anon_sym_PIPE, - ACTIONS(5028), 1, - anon_sym_when, - ACTIONS(5030), 1, - anon_sym_COLON_COLON, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, + ACTIONS(3364), 2, sym__not_in, - ACTIONS(3705), 2, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3366), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - ACTIONS(5018), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5024), 2, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5026), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5036), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5038), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -380893,39 +380602,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [245771] = 12, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [245679] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__not_in, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, - ACTIONS(5138), 2, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 34, + ACTIONS(3476), 34, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -380960,41 +380680,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [245850] = 14, + [245758] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381004,7 +380724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 24, + ACTIONS(3476), 24, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -381029,73 +380749,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [245933] = 21, + [245841] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5148), 1, + ACTIONS(5140), 1, anon_sym_PIPE, - ACTIONS(5156), 1, + ACTIONS(5154), 1, anon_sym_EQ_GT, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(3373), 6, + ACTIONS(3476), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381105,22 +380825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246030] = 7, + [245938] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__not_in, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, + ACTIONS(5172), 1, anon_sym_STAR_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 46, + ACTIONS(3476), 46, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -381167,26 +380887,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - [246099] = 4, + [246007] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3197), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, + ACTIONS(5142), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5146), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3199), 48, + ACTIONS(5144), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 36, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -381218,33 +380952,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [246162] = 8, + [246082] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__not_in, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, + ACTIONS(5172), 1, anon_sym_STAR_STAR, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3373), 44, + ACTIONS(3476), 44, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -381289,75 +381015,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - [246233] = 23, + [246153] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5148), 1, + ACTIONS(5140), 1, anon_sym_PIPE, - ACTIONS(5152), 1, + ACTIONS(5150), 1, anon_sym_when, - ACTIONS(5154), 1, + ACTIONS(5152), 1, anon_sym_COLON_COLON, - ACTIONS(5156), 1, + ACTIONS(5154), 1, anon_sym_EQ_GT, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3373), 4, + ACTIONS(3476), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381367,75 +381093,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246334] = 23, + [246254] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5148), 1, + ACTIONS(5140), 1, anon_sym_PIPE, - ACTIONS(5152), 1, + ACTIONS(5150), 1, anon_sym_when, - ACTIONS(5154), 1, + ACTIONS(5152), 1, anon_sym_COLON_COLON, - ACTIONS(5156), 1, + ACTIONS(5154), 1, anon_sym_EQ_GT, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3373), 4, + ACTIONS(3476), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381445,74 +381171,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246435] = 22, + [246355] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5148), 1, + ACTIONS(5140), 1, anon_sym_PIPE, - ACTIONS(5154), 1, + ACTIONS(5152), 1, anon_sym_COLON_COLON, - ACTIONS(5156), 1, + ACTIONS(5154), 1, anon_sym_EQ_GT, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3373), 5, + ACTIONS(3476), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381522,64 +381248,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246534] = 20, + [246454] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5156), 1, + ACTIONS(5154), 1, anon_sym_EQ_GT, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 7, + ACTIONS(3476), 7, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -381587,7 +381313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381597,62 +381323,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246629] = 19, + [246549] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_EQ, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5160), 3, + ACTIONS(5158), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 8, + ACTIONS(3476), 8, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -381661,7 +381387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381671,56 +381397,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [246722] = 17, + [246642] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5162), 3, + ACTIONS(5160), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381730,7 +381456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 12, + ACTIONS(3476), 12, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -381743,52 +381469,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - [246811] = 16, + [246731] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5164), 5, + ACTIONS(5162), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381798,7 +381524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 15, + ACTIONS(3476), 15, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -381814,46 +381540,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - [246898] = 15, + [246818] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5146), 4, + ACTIONS(5138), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5166), 9, + ACTIONS(5164), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -381863,7 +381589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3373), 20, + ACTIONS(3476), 20, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -381884,41 +381610,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - [246983] = 13, + [246903] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5168), 1, + ACTIONS(5166), 1, anon_sym_in, - ACTIONS(5170), 1, + ACTIONS(5168), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, ACTIONS(5174), 1, sym__not_in, - ACTIONS(5138), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 33, + ACTIONS(3476), 33, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -381952,37 +381678,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [247064] = 11, + [246984] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__not_in, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5172), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, - ACTIONS(5138), 2, + ACTIONS(5172), 1, + anon_sym_STAR_STAR, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5142), 2, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5140), 6, + ACTIONS(5144), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(3373), 35, + ACTIONS(3476), 35, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -382018,289 +381744,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - [247141] = 11, + [247061] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3474), 1, sym__not_in, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5144), 1, - anon_sym_STAR_STAR, - ACTIONS(5172), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5138), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(5142), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5140), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(3373), 35, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [247218] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5016), 1, - anon_sym_PIPE, - ACTIONS(5028), 1, - anon_sym_when, - ACTIONS(5030), 1, - anon_sym_COLON_COLON, - ACTIONS(5032), 1, - anon_sym_EQ_GT, - ACTIONS(5034), 1, - anon_sym_EQ, - ACTIONS(5044), 1, - anon_sym_in, - ACTIONS(5046), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5048), 1, + ACTIONS(5170), 1, anon_sym_SLASH_SLASH, - ACTIONS(5050), 1, + ACTIONS(5172), 1, anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_DOT, - ACTIONS(5054), 1, - anon_sym_LBRACK2, - ACTIONS(5056), 1, - sym__not_in, - ACTIONS(3701), 2, - anon_sym_COMMA, - anon_sym_GT_GT, - ACTIONS(5018), 2, + ACTIONS(5142), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5024), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5026), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5036), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(5038), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(5014), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5040), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5022), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(5042), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [247321] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3197), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3199), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, + ACTIONS(5146), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [247384] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3259), 2, - sym__not_in, - anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3261), 48, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(5144), 6, anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [247447] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3193), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3195), 48, + ACTIONS(3476), 35, + anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -382331,26 +381810,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [247510] = 4, + [247138] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3189), 2, + ACTIONS(3150), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3191), 48, + ACTIONS(3152), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382399,17 +381869,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247573] = 4, + [247201] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3255), 2, + ACTIONS(3825), 1, + anon_sym_LBRACK2, + ACTIONS(4195), 1, + aux_sym__terminator_token1, + ACTIONS(4577), 1, + anon_sym_PIPE, + ACTIONS(4587), 1, + anon_sym_when, + ACTIONS(4589), 1, + anon_sym_COLON_COLON, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_in, + ACTIONS(4605), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4607), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4609), 1, + anon_sym_STAR_STAR, + ACTIONS(4611), 1, + anon_sym_DOT, + ACTIONS(4613), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4197), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4579), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4583), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4585), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4595), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4597), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4575), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4599), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4581), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4601), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [247306] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4987), 1, + anon_sym_DOT, + ACTIONS(4989), 1, + anon_sym_LBRACK2, + ACTIONS(4995), 1, + anon_sym_PIPE, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 1, + anon_sym_EQ_GT, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, + ACTIONS(5046), 1, + anon_sym_when, + ACTIONS(4997), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5001), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5003), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5049), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5013), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5015), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4993), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5017), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4999), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(5019), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [247409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3257), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382458,17 +382087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247636] = 4, + [247472] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3251), 2, + ACTIONS(3360), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3253), 48, + ACTIONS(3362), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382517,17 +382146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247699] = 4, + [247535] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(3342), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2992), 48, + ACTIONS(3344), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382576,17 +382205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247762] = 4, + [247598] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3177), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3179), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382635,17 +382264,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247825] = 4, + [247661] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3474), 1, + sym__not_in, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [247738] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3030), 2, + ACTIONS(3114), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3032), 48, + ACTIONS(3116), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382694,17 +382389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247888] = 4, + [247801] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3173), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3175), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382753,17 +382448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [247951] = 4, + [247864] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3169), 2, + ACTIONS(3114), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3171), 48, + ACTIONS(3116), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382812,17 +382507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248014] = 4, + [247927] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3165), 2, + ACTIONS(3498), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3167), 48, + ACTIONS(3500), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382871,17 +382566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248077] = 4, + [247990] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3165), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3167), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382930,17 +382625,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248140] = 4, + [248053] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3144), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -382989,17 +382684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248203] = 4, + [248116] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3142), 2, + ACTIONS(3518), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3144), 48, + ACTIONS(3520), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383048,17 +382743,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248266] = 4, + [248179] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(5124), 1, + anon_sym_in, + ACTIONS(5126), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5128), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, + anon_sym_LBRACK2, + ACTIONS(5136), 1, + sym__not_in, + ACTIONS(5098), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(5104), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5102), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(3476), 33, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [248260] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3150), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3148), 48, + ACTIONS(3152), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383107,17 +382870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248329] = 4, + [248323] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(3150), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3148), 48, + ACTIONS(3152), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383166,17 +382929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [248392] = 4, + [248386] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(3474), 1, sym__not_in, + ACTIONS(5130), 1, + anon_sym_STAR_STAR, + ACTIONS(5132), 1, + anon_sym_DOT, + ACTIONS(5134), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3148), 48, + ACTIONS(3476), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -383223,77 +382991,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, [248455] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5176), 1, anon_sym_RBRACK, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383306,72 +383072,72 @@ static const uint16_t ts_small_parse_table[] = { [248557] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5178), 1, - anon_sym_RBRACE, - ACTIONS(4853), 2, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383384,72 +383150,72 @@ static const uint16_t ts_small_parse_table[] = { [248659] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5180), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, + anon_sym_RBRACE, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383462,72 +383228,72 @@ static const uint16_t ts_small_parse_table[] = { [248761] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5182), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, + anon_sym_RBRACE, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383540,72 +383306,72 @@ static const uint16_t ts_small_parse_table[] = { [248863] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5184), 1, anon_sym_RBRACK, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383618,72 +383384,72 @@ static const uint16_t ts_small_parse_table[] = { [248965] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5186), 1, - anon_sym_RBRACE, - ACTIONS(4853), 2, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383696,72 +383462,72 @@ static const uint16_t ts_small_parse_table[] = { [249067] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5188), 1, anon_sym_RBRACE, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383774,72 +383540,72 @@ static const uint16_t ts_small_parse_table[] = { [249169] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5190), 1, - anon_sym_RBRACE, - ACTIONS(4853), 2, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -383908,153 +383674,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [249335] = 24, + [249335] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_when, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, ACTIONS(5192), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4861), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + ACTIONS(3102), 2, + sym__not_in, + anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(3104), 46, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [249437] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_when, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, - anon_sym_in, - ACTIONS(4881), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, - anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(5194), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, + anon_sym_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_LT_GT, - ACTIONS(4877), 9, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384064,153 +383722,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [249539] = 24, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4738), 1, - anon_sym_DOT, - ACTIONS(4740), 1, - anon_sym_LBRACK2, - ACTIONS(4851), 1, - anon_sym_PIPE, - ACTIONS(4863), 1, - anon_sym_when, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - ACTIONS(4867), 1, - anon_sym_EQ_GT, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4879), 1, anon_sym_in, - ACTIONS(4881), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, - anon_sym_STAR_STAR, - ACTIONS(4887), 1, - sym__not_in, - ACTIONS(5196), 1, - anon_sym_RBRACE, - ACTIONS(4853), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4859), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4861), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(4871), 3, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - ACTIONS(4873), 3, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - ACTIONS(4849), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4875), 5, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, - anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - [249641] = 24, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [249399] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, - ACTIONS(5198), 1, + ACTIONS(5194), 1, anon_sym_RBRACK, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384220,75 +383811,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [249743] = 24, + [249501] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(4853), 2, + ACTIONS(5196), 1, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384298,75 +383889,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [249845] = 24, + [249603] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, - ACTIONS(5202), 1, + ACTIONS(5198), 1, anon_sym_RBRACK, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384376,75 +383967,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [249947] = 24, + [249705] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, - ACTIONS(5204), 1, + ACTIONS(5200), 1, anon_sym_RBRACK, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384454,45 +384045,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [250049] = 5, + [249807] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_LBRACE, - ACTIONS(3142), 2, - sym__not_in, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(5202), 1, + anon_sym_RBRACK, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3144), 46, + ACTIONS(4909), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4911), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [249909] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(5204), 1, + anon_sym_RBRACE, + ACTIONS(4891), 2, anon_sym_SLASH, - anon_sym_DOT_DOT, + anon_sym_STAR, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_LT_GT, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384502,86 +384201,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + [250011] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4668), 1, + anon_sym_DOT, + ACTIONS(4670), 1, + anon_sym_LBRACK2, + ACTIONS(4889), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_when, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_EQ_GT, + ACTIONS(4907), 1, + anon_sym_EQ, + ACTIONS(4917), 1, anon_sym_in, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, + ACTIONS(5206), 1, + anon_sym_RBRACE, + ACTIONS(4891), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4899), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4909), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4911), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4887), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4913), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4895), 6, + anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, + ACTIONS(4915), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, [250113] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(5006), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5060), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(5062), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(5064), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(5066), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(5068), 1, + ACTIONS(4907), 1, anon_sym_EQ, + ACTIONS(4917), 1, + anon_sym_in, + ACTIONS(4919), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4921), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4923), 1, + anon_sym_STAR_STAR, + ACTIONS(4925), 1, + sym__not_in, ACTIONS(5208), 1, - anon_sym_DASH_GT, - ACTIONS(4992), 2, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5076), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5070), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5074), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5008), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384594,72 +384360,72 @@ static const uint16_t ts_small_parse_table[] = { [250215] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5210), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, + anon_sym_RBRACE, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384672,72 +384438,72 @@ static const uint16_t ts_small_parse_table[] = { [250317] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5212), 1, anon_sym_RBRACE, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384750,72 +384516,72 @@ static const uint16_t ts_small_parse_table[] = { [250419] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5214), 1, anon_sym_RBRACE, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384828,72 +384594,72 @@ static const uint16_t ts_small_parse_table[] = { [250521] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5216), 1, anon_sym_RBRACE, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384906,72 +384672,72 @@ static const uint16_t ts_small_parse_table[] = { [250623] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4995), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(5005), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(5007), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(5009), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(5021), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(5023), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(5025), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(5027), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(5029), 1, sym__not_in, ACTIONS(5218), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, + anon_sym_DASH_GT, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(5003), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -384984,72 +384750,72 @@ static const uint16_t ts_small_parse_table[] = { [250725] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4998), 1, - anon_sym_CARET_CARET_CARET, - ACTIONS(5000), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5002), 1, - anon_sym_STAR_STAR, - ACTIONS(5004), 1, + ACTIONS(4987), 1, anon_sym_DOT, - ACTIONS(5006), 1, + ACTIONS(4989), 1, anon_sym_LBRACK2, - ACTIONS(5010), 1, - anon_sym_in, - ACTIONS(5012), 1, - sym__not_in, - ACTIONS(5060), 1, + ACTIONS(4995), 1, anon_sym_PIPE, - ACTIONS(5062), 1, + ACTIONS(5005), 1, anon_sym_when, - ACTIONS(5064), 1, + ACTIONS(5007), 1, anon_sym_COLON_COLON, - ACTIONS(5066), 1, + ACTIONS(5009), 1, anon_sym_EQ_GT, - ACTIONS(5068), 1, + ACTIONS(5011), 1, anon_sym_EQ, + ACTIONS(5021), 1, + anon_sym_in, + ACTIONS(5023), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5025), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5027), 1, + anon_sym_STAR_STAR, + ACTIONS(5029), 1, + sym__not_in, ACTIONS(5220), 1, anon_sym_DASH_GT, - ACTIONS(4992), 2, + ACTIONS(4997), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4996), 2, + ACTIONS(5001), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5076), 2, + ACTIONS(5003), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5070), 3, + ACTIONS(5013), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5072), 3, + ACTIONS(5015), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5058), 4, + ACTIONS(4993), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5074), 5, + ACTIONS(5017), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4994), 6, + ACTIONS(4999), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(5008), 9, + ACTIONS(5019), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -385062,72 +384828,72 @@ static const uint16_t ts_small_parse_table[] = { [250827] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(4853), 2, + anon_sym_RBRACK, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -385140,72 +384906,72 @@ static const uint16_t ts_small_parse_table[] = { [250929] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, ACTIONS(5224), 1, - anon_sym_RBRACK, - ACTIONS(4853), 2, + anon_sym_RBRACE, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -385218,70 +384984,70 @@ static const uint16_t ts_small_parse_table[] = { [251031] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4668), 1, anon_sym_DOT, - ACTIONS(4740), 1, + ACTIONS(4670), 1, anon_sym_LBRACK2, - ACTIONS(4851), 1, + ACTIONS(4889), 1, anon_sym_PIPE, - ACTIONS(4863), 1, + ACTIONS(4901), 1, anon_sym_when, - ACTIONS(4865), 1, + ACTIONS(4903), 1, anon_sym_COLON_COLON, - ACTIONS(4867), 1, + ACTIONS(4905), 1, anon_sym_EQ_GT, - ACTIONS(4869), 1, + ACTIONS(4907), 1, anon_sym_EQ, - ACTIONS(4879), 1, + ACTIONS(4917), 1, anon_sym_in, - ACTIONS(4881), 1, + ACTIONS(4919), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4883), 1, + ACTIONS(4921), 1, anon_sym_SLASH_SLASH, - ACTIONS(4885), 1, + ACTIONS(4923), 1, anon_sym_STAR_STAR, - ACTIONS(4887), 1, + ACTIONS(4925), 1, sym__not_in, - ACTIONS(4853), 2, + ACTIONS(4891), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4859), 2, + ACTIONS(4897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4861), 2, + ACTIONS(4899), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4871), 3, + ACTIONS(4909), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4873), 3, + ACTIONS(4911), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4849), 4, + ACTIONS(4887), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4875), 5, + ACTIONS(4913), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4857), 6, + ACTIONS(4895), 6, anon_sym_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_LT_GT, - ACTIONS(4877), 9, + ACTIONS(4915), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -385314,26 +385080,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5244), 1, anon_sym_SLASH, - STATE(1307), 1, - sym__quoted_i_slash, - STATE(1308), 1, - sym__quoted_i_bar, - STATE(1310), 1, - sym__quoted_i_angle, - STATE(1311), 1, - sym__quoted_i_square, - STATE(1313), 1, - sym__quoted_i_curly, - STATE(1314), 1, - sym__quoted_i_parenthesis, - STATE(1315), 1, - sym__quoted_i_heredoc_double, - STATE(1316), 1, - sym__quoted_i_heredoc_single, - STATE(1317), 1, - sym__quoted_i_single, - STATE(1318), 1, - sym__quoted_i_double, + STATE(3838), 1, + sym__quoted_slash, + STATE(3839), 1, + sym__quoted_bar, + STATE(3840), 1, + sym__quoted_angle, + STATE(3841), 1, + sym__quoted_square, + STATE(3842), 1, + sym__quoted_curly, + STATE(3843), 1, + sym__quoted_parenthesis, + STATE(3844), 1, + sym__quoted_heredoc_double, + STATE(3845), 1, + sym__quoted_heredoc_single, + STATE(3846), 1, + sym__quoted_single, + STATE(3847), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385361,26 +385127,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5264), 1, anon_sym_SLASH, - STATE(1287), 1, - sym__quoted_slash, - STATE(1288), 1, - sym__quoted_bar, - STATE(1290), 1, - sym__quoted_angle, - STATE(1291), 1, - sym__quoted_square, - STATE(1292), 1, - sym__quoted_curly, - STATE(1293), 1, - sym__quoted_parenthesis, - STATE(1298), 1, - sym__quoted_heredoc_double, - STATE(1301), 1, - sym__quoted_heredoc_single, - STATE(1302), 1, - sym__quoted_single, - STATE(1303), 1, + STATE(4269), 1, sym__quoted_double, + STATE(4274), 1, + sym__quoted_single, + STATE(4277), 1, + sym__quoted_heredoc_single, + STATE(4284), 1, + sym__quoted_heredoc_double, + STATE(4317), 1, + sym__quoted_parenthesis, + STATE(4321), 1, + sym__quoted_curly, + STATE(4324), 1, + sym__quoted_square, + STATE(4325), 1, + sym__quoted_angle, + STATE(4326), 1, + sym__quoted_bar, + STATE(4328), 1, + sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385408,26 +385174,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5284), 1, anon_sym_SLASH, - STATE(3758), 1, - sym__quoted_double, - STATE(3761), 1, - sym__quoted_single, - STATE(3762), 1, - sym__quoted_heredoc_single, - STATE(3797), 1, - sym__quoted_heredoc_double, - STATE(3798), 1, - sym__quoted_parenthesis, - STATE(3849), 1, - sym__quoted_curly, - STATE(3850), 1, - sym__quoted_square, - STATE(3851), 1, - sym__quoted_angle, - STATE(3852), 1, - sym__quoted_bar, - STATE(3853), 1, + STATE(2054), 1, sym__quoted_slash, + STATE(2055), 1, + sym__quoted_bar, + STATE(2056), 1, + sym__quoted_angle, + STATE(2057), 1, + sym__quoted_square, + STATE(2058), 1, + sym__quoted_curly, + STATE(2059), 1, + sym__quoted_parenthesis, + STATE(2060), 1, + sym__quoted_heredoc_double, + STATE(2061), 1, + sym__quoted_heredoc_single, + STATE(2062), 1, + sym__quoted_single, + STATE(2066), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385455,26 +385221,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5304), 1, anon_sym_SLASH, - STATE(2471), 1, + STATE(3868), 1, + sym__quoted_i_slash, + STATE(3971), 1, + sym__quoted_i_curly, + STATE(4008), 1, + sym__quoted_i_bar, + STATE(4009), 1, + sym__quoted_i_angle, + STATE(4017), 1, sym__quoted_i_double, - STATE(2472), 1, + STATE(4018), 1, sym__quoted_i_single, - STATE(2473), 1, + STATE(4019), 1, sym__quoted_i_heredoc_single, - STATE(2474), 1, + STATE(4021), 1, sym__quoted_i_heredoc_double, - STATE(2475), 1, + STATE(4022), 1, sym__quoted_i_parenthesis, - STATE(2476), 1, - sym__quoted_i_curly, - STATE(2478), 1, + STATE(4045), 1, sym__quoted_i_square, - STATE(2479), 1, - sym__quoted_i_angle, - STATE(2480), 1, - sym__quoted_i_bar, - STATE(2481), 1, - sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385502,26 +385268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5324), 1, anon_sym_SLASH, - STATE(3800), 1, + STATE(3735), 1, + sym__quoted_double, + STATE(3818), 1, sym__quoted_slash, - STATE(3801), 1, + STATE(3819), 1, sym__quoted_bar, - STATE(3802), 1, + STATE(3820), 1, sym__quoted_angle, - STATE(3803), 1, + STATE(3821), 1, sym__quoted_square, - STATE(3804), 1, + STATE(3822), 1, sym__quoted_curly, - STATE(3805), 1, + STATE(3825), 1, sym__quoted_parenthesis, - STATE(3806), 1, + STATE(3827), 1, sym__quoted_heredoc_double, - STATE(3807), 1, + STATE(3830), 1, sym__quoted_heredoc_single, - STATE(3808), 1, + STATE(3833), 1, sym__quoted_single, - STATE(3809), 1, - sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385549,26 +385315,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5344), 1, anon_sym_SLASH, - STATE(3085), 1, - sym__quoted_double, - STATE(3111), 1, - sym__quoted_single, - STATE(3112), 1, - sym__quoted_heredoc_single, - STATE(3113), 1, - sym__quoted_heredoc_double, - STATE(3114), 1, - sym__quoted_parenthesis, - STATE(3115), 1, - sym__quoted_curly, - STATE(3116), 1, - sym__quoted_square, - STATE(3117), 1, - sym__quoted_angle, - STATE(3118), 1, - sym__quoted_bar, - STATE(3119), 1, - sym__quoted_slash, + STATE(1926), 1, + sym__quoted_i_slash, + STATE(1927), 1, + sym__quoted_i_bar, + STATE(1928), 1, + sym__quoted_i_angle, + STATE(1929), 1, + sym__quoted_i_square, + STATE(1930), 1, + sym__quoted_i_curly, + STATE(1931), 1, + sym__quoted_i_parenthesis, + STATE(1932), 1, + sym__quoted_i_heredoc_double, + STATE(1933), 1, + sym__quoted_i_heredoc_single, + STATE(1934), 1, + sym__quoted_i_single, + STATE(1935), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385596,26 +385362,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5364), 1, anon_sym_SLASH, - STATE(1404), 1, - sym__quoted_slash, - STATE(1405), 1, - sym__quoted_bar, - STATE(1407), 1, - sym__quoted_angle, - STATE(1408), 1, + STATE(3556), 1, + sym__quoted_double, + STATE(3557), 1, + sym__quoted_single, + STATE(3558), 1, + sym__quoted_heredoc_single, + STATE(3561), 1, + sym__quoted_heredoc_double, + STATE(3568), 1, + sym__quoted_parenthesis, + STATE(3570), 1, sym__quoted_square, - STATE(1409), 1, + STATE(3571), 1, + sym__quoted_angle, + STATE(3573), 1, + sym__quoted_bar, + STATE(3575), 1, + sym__quoted_slash, + STATE(3602), 1, sym__quoted_curly, - STATE(1410), 1, - sym__quoted_parenthesis, - STATE(1411), 1, - sym__quoted_heredoc_double, - STATE(1412), 1, - sym__quoted_heredoc_single, - STATE(1413), 1, - sym__quoted_single, - STATE(1414), 1, - sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385643,26 +385409,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5384), 1, anon_sym_SLASH, - STATE(2644), 1, - sym__quoted_i_slash, - STATE(2645), 1, - sym__quoted_i_bar, - STATE(2646), 1, - sym__quoted_i_angle, - STATE(2647), 1, - sym__quoted_i_square, - STATE(2648), 1, - sym__quoted_i_curly, - STATE(2649), 1, - sym__quoted_i_parenthesis, - STATE(2650), 1, - sym__quoted_i_heredoc_double, - STATE(2651), 1, - sym__quoted_i_heredoc_single, - STATE(2652), 1, - sym__quoted_i_single, - STATE(2653), 1, + STATE(2284), 1, sym__quoted_i_double, + STATE(2285), 1, + sym__quoted_i_single, + STATE(2286), 1, + sym__quoted_i_heredoc_single, + STATE(2287), 1, + sym__quoted_i_heredoc_double, + STATE(2288), 1, + sym__quoted_i_parenthesis, + STATE(2289), 1, + sym__quoted_i_curly, + STATE(2290), 1, + sym__quoted_i_square, + STATE(2291), 1, + sym__quoted_i_angle, + STATE(2292), 1, + sym__quoted_i_bar, + STATE(2293), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385690,26 +385456,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5404), 1, anon_sym_SLASH, - STATE(2634), 1, - sym__quoted_slash, - STATE(2635), 1, - sym__quoted_bar, - STATE(2636), 1, - sym__quoted_angle, - STATE(2637), 1, - sym__quoted_square, - STATE(2638), 1, - sym__quoted_curly, - STATE(2639), 1, - sym__quoted_parenthesis, - STATE(2640), 1, - sym__quoted_heredoc_double, - STATE(2641), 1, - sym__quoted_heredoc_single, - STATE(2642), 1, - sym__quoted_single, - STATE(2643), 1, - sym__quoted_double, + STATE(1777), 1, + sym__quoted_i_slash, + STATE(1778), 1, + sym__quoted_i_bar, + STATE(1779), 1, + sym__quoted_i_angle, + STATE(1780), 1, + sym__quoted_i_square, + STATE(1781), 1, + sym__quoted_i_curly, + STATE(1782), 1, + sym__quoted_i_parenthesis, + STATE(1783), 1, + sym__quoted_i_heredoc_double, + STATE(1784), 1, + sym__quoted_i_heredoc_single, + STATE(1786), 1, + sym__quoted_i_double, + STATE(1794), 1, + sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385737,26 +385503,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5424), 1, anon_sym_SLASH, - STATE(2366), 1, - sym__quoted_i_double, - STATE(2367), 1, - sym__quoted_i_single, - STATE(2368), 1, - sym__quoted_i_heredoc_single, - STATE(2369), 1, - sym__quoted_i_heredoc_double, - STATE(2380), 1, - sym__quoted_i_parenthesis, - STATE(2387), 1, - sym__quoted_i_curly, - STATE(2392), 1, - sym__quoted_i_square, - STATE(2393), 1, - sym__quoted_i_angle, - STATE(2394), 1, - sym__quoted_i_bar, - STATE(2396), 1, - sym__quoted_i_slash, + STATE(1746), 1, + sym__quoted_slash, + STATE(1747), 1, + sym__quoted_bar, + STATE(1760), 1, + sym__quoted_angle, + STATE(1762), 1, + sym__quoted_square, + STATE(1763), 1, + sym__quoted_curly, + STATE(1764), 1, + sym__quoted_parenthesis, + STATE(1767), 1, + sym__quoted_heredoc_double, + STATE(1772), 1, + sym__quoted_heredoc_single, + STATE(1775), 1, + sym__quoted_single, + STATE(1776), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385784,26 +385550,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5444), 1, anon_sym_SLASH, - STATE(2398), 1, - sym__quoted_double, - STATE(2399), 1, - sym__quoted_single, - STATE(2400), 1, - sym__quoted_heredoc_single, - STATE(2401), 1, - sym__quoted_heredoc_double, - STATE(2402), 1, + STATE(1160), 1, sym__quoted_parenthesis, - STATE(2404), 1, + STATE(1216), 1, + sym__quoted_heredoc_double, + STATE(1255), 1, sym__quoted_curly, - STATE(2406), 1, + STATE(1259), 1, sym__quoted_square, - STATE(2407), 1, + STATE(1266), 1, sym__quoted_angle, - STATE(2408), 1, + STATE(1272), 1, sym__quoted_bar, - STATE(2409), 1, + STATE(1275), 1, sym__quoted_slash, + STATE(1334), 1, + sym__quoted_double, + STATE(1336), 1, + sym__quoted_single, + STATE(1338), 1, + sym__quoted_heredoc_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385831,26 +385597,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5464), 1, anon_sym_SLASH, - STATE(3349), 1, - sym__quoted_i_slash, - STATE(3350), 1, - sym__quoted_i_bar, - STATE(3351), 1, - sym__quoted_i_angle, - STATE(3352), 1, - sym__quoted_i_square, - STATE(3353), 1, - sym__quoted_i_curly, - STATE(3354), 1, - sym__quoted_i_parenthesis, - STATE(3355), 1, - sym__quoted_i_heredoc_double, - STATE(3356), 1, - sym__quoted_i_heredoc_single, - STATE(3357), 1, - sym__quoted_i_single, - STATE(3358), 1, + STATE(1279), 1, sym__quoted_i_double, + STATE(1280), 1, + sym__quoted_i_single, + STATE(1299), 1, + sym__quoted_i_heredoc_single, + STATE(1303), 1, + sym__quoted_i_heredoc_double, + STATE(1312), 1, + sym__quoted_i_parenthesis, + STATE(1313), 1, + sym__quoted_i_curly, + STATE(1314), 1, + sym__quoted_i_square, + STATE(1316), 1, + sym__quoted_i_angle, + STATE(1328), 1, + sym__quoted_i_bar, + STATE(1333), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385878,26 +385644,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5484), 1, anon_sym_SLASH, - STATE(2046), 1, - sym__quoted_slash, - STATE(2047), 1, - sym__quoted_bar, - STATE(2048), 1, - sym__quoted_angle, - STATE(2049), 1, - sym__quoted_square, - STATE(2050), 1, - sym__quoted_curly, - STATE(2051), 1, - sym__quoted_parenthesis, - STATE(2052), 1, - sym__quoted_heredoc_double, - STATE(2053), 1, - sym__quoted_heredoc_single, - STATE(2054), 1, - sym__quoted_single, - STATE(2055), 1, - sym__quoted_double, + STATE(3867), 1, + sym__quoted_i_slash, + STATE(3869), 1, + sym__quoted_i_bar, + STATE(3870), 1, + sym__quoted_i_angle, + STATE(3875), 1, + sym__quoted_i_square, + STATE(3876), 1, + sym__quoted_i_curly, + STATE(3878), 1, + sym__quoted_i_parenthesis, + STATE(3879), 1, + sym__quoted_i_heredoc_double, + STATE(3880), 1, + sym__quoted_i_heredoc_single, + STATE(3881), 1, + sym__quoted_i_single, + STATE(3882), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385925,26 +385691,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5504), 1, anon_sym_SLASH, - STATE(2294), 1, + STATE(3834), 1, sym__quoted_double, - STATE(2295), 1, - sym__quoted_single, - STATE(2296), 1, - sym__quoted_heredoc_single, - STATE(2297), 1, - sym__quoted_heredoc_double, - STATE(2298), 1, - sym__quoted_parenthesis, - STATE(2299), 1, - sym__quoted_curly, - STATE(2300), 1, - sym__quoted_square, - STATE(2301), 1, - sym__quoted_angle, - STATE(2302), 1, - sym__quoted_bar, - STATE(2303), 1, + STATE(3835), 1, sym__quoted_slash, + STATE(3836), 1, + sym__quoted_bar, + STATE(3837), 1, + sym__quoted_angle, + STATE(3861), 1, + sym__quoted_square, + STATE(3862), 1, + sym__quoted_curly, + STATE(3863), 1, + sym__quoted_parenthesis, + STATE(3864), 1, + sym__quoted_heredoc_double, + STATE(3865), 1, + sym__quoted_heredoc_single, + STATE(3866), 1, + sym__quoted_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385972,26 +385738,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5524), 1, anon_sym_SLASH, - STATE(2284), 1, - sym__quoted_i_double, - STATE(2285), 1, - sym__quoted_i_single, - STATE(2286), 1, - sym__quoted_i_heredoc_single, - STATE(2287), 1, - sym__quoted_i_heredoc_double, - STATE(2288), 1, - sym__quoted_i_parenthesis, - STATE(2289), 1, - sym__quoted_i_curly, - STATE(2290), 1, - sym__quoted_i_square, - STATE(2291), 1, - sym__quoted_i_angle, - STATE(2292), 1, - sym__quoted_i_bar, - STATE(2293), 1, - sym__quoted_i_slash, + STATE(2294), 1, + sym__quoted_double, + STATE(2295), 1, + sym__quoted_single, + STATE(2296), 1, + sym__quoted_heredoc_single, + STATE(2297), 1, + sym__quoted_heredoc_double, + STATE(2298), 1, + sym__quoted_parenthesis, + STATE(2299), 1, + sym__quoted_curly, + STATE(2300), 1, + sym__quoted_square, + STATE(2301), 1, + sym__quoted_angle, + STATE(2302), 1, + sym__quoted_bar, + STATE(2303), 1, + sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386019,26 +385785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5544), 1, anon_sym_SLASH, - STATE(3322), 1, - sym__quoted_slash, - STATE(3323), 1, - sym__quoted_bar, - STATE(3328), 1, - sym__quoted_angle, - STATE(3334), 1, - sym__quoted_square, - STATE(3335), 1, - sym__quoted_curly, - STATE(3336), 1, - sym__quoted_parenthesis, - STATE(3337), 1, - sym__quoted_heredoc_double, - STATE(3340), 1, - sym__quoted_heredoc_single, - STATE(3347), 1, - sym__quoted_single, - STATE(3348), 1, - sym__quoted_double, + STATE(4051), 1, + sym__quoted_i_double, + STATE(4194), 1, + sym__quoted_i_heredoc_single, + STATE(4222), 1, + sym__quoted_i_heredoc_double, + STATE(4248), 1, + sym__quoted_i_parenthesis, + STATE(4249), 1, + sym__quoted_i_curly, + STATE(4261), 1, + sym__quoted_i_square, + STATE(4262), 1, + sym__quoted_i_angle, + STATE(4263), 1, + sym__quoted_i_bar, + STATE(4266), 1, + sym__quoted_i_slash, + STATE(4285), 1, + sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386066,25 +385832,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5564), 1, anon_sym_SLASH, - STATE(3810), 1, + STATE(3848), 1, sym__quoted_i_slash, - STATE(3811), 1, + STATE(3849), 1, sym__quoted_i_bar, - STATE(3812), 1, + STATE(3850), 1, sym__quoted_i_angle, - STATE(3813), 1, + STATE(3851), 1, sym__quoted_i_square, - STATE(3814), 1, + STATE(3852), 1, sym__quoted_i_curly, - STATE(3815), 1, + STATE(3853), 1, sym__quoted_i_parenthesis, - STATE(3816), 1, + STATE(3854), 1, sym__quoted_i_heredoc_double, - STATE(3817), 1, + STATE(3855), 1, sym__quoted_i_heredoc_single, - STATE(3818), 1, + STATE(3856), 1, sym__quoted_i_single, - STATE(3819), 1, + STATE(3857), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386113,26 +385879,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5584), 1, anon_sym_SLASH, - STATE(3616), 1, - sym__quoted_i_double, - STATE(3617), 1, - sym__quoted_i_single, - STATE(3619), 1, - sym__quoted_i_heredoc_single, - STATE(3620), 1, - sym__quoted_i_heredoc_double, - STATE(3621), 1, - sym__quoted_i_parenthesis, - STATE(3622), 1, - sym__quoted_i_curly, - STATE(3652), 1, - sym__quoted_i_square, - STATE(3753), 1, - sym__quoted_i_angle, - STATE(3754), 1, - sym__quoted_i_bar, - STATE(3757), 1, + STATE(2067), 1, sym__quoted_i_slash, + STATE(2068), 1, + sym__quoted_i_bar, + STATE(2070), 1, + sym__quoted_i_angle, + STATE(2071), 1, + sym__quoted_i_square, + STATE(2072), 1, + sym__quoted_i_curly, + STATE(2073), 1, + sym__quoted_i_parenthesis, + STATE(2074), 1, + sym__quoted_i_heredoc_double, + STATE(2076), 1, + sym__quoted_i_heredoc_single, + STATE(2077), 1, + sym__quoted_i_single, + STATE(2078), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386160,26 +385926,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5604), 1, anon_sym_SLASH, - STATE(1351), 1, - sym__quoted_i_double, - STATE(1415), 1, - sym__quoted_i_slash, - STATE(1417), 1, - sym__quoted_i_bar, - STATE(1419), 1, - sym__quoted_i_angle, - STATE(1420), 1, - sym__quoted_i_square, - STATE(1421), 1, - sym__quoted_i_curly, - STATE(1422), 1, - sym__quoted_i_parenthesis, - STATE(1423), 1, - sym__quoted_i_heredoc_double, - STATE(1424), 1, - sym__quoted_i_heredoc_single, - STATE(1425), 1, - sym__quoted_i_single, + STATE(3353), 1, + sym__quoted_double, + STATE(3374), 1, + sym__quoted_single, + STATE(3375), 1, + sym__quoted_heredoc_single, + STATE(3382), 1, + sym__quoted_heredoc_double, + STATE(3383), 1, + sym__quoted_parenthesis, + STATE(3385), 1, + sym__quoted_curly, + STATE(3388), 1, + sym__quoted_square, + STATE(3393), 1, + sym__quoted_angle, + STATE(3401), 1, + sym__quoted_bar, + STATE(3402), 1, + sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386207,26 +385973,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5624), 1, anon_sym_SLASH, - STATE(2482), 1, - sym__quoted_double, - STATE(2483), 1, - sym__quoted_single, - STATE(2484), 1, - sym__quoted_heredoc_single, - STATE(2485), 1, - sym__quoted_heredoc_double, - STATE(2486), 1, - sym__quoted_parenthesis, - STATE(2487), 1, - sym__quoted_curly, - STATE(2488), 1, - sym__quoted_square, - STATE(2489), 1, - sym__quoted_angle, - STATE(2490), 1, - sym__quoted_bar, - STATE(2491), 1, - sym__quoted_slash, + STATE(3511), 1, + sym__quoted_i_double, + STATE(3513), 1, + sym__quoted_i_single, + STATE(3517), 1, + sym__quoted_i_heredoc_single, + STATE(3519), 1, + sym__quoted_i_heredoc_double, + STATE(3521), 1, + sym__quoted_i_parenthesis, + STATE(3522), 1, + sym__quoted_i_curly, + STATE(3523), 1, + sym__quoted_i_square, + STATE(3525), 1, + sym__quoted_i_angle, + STATE(3533), 1, + sym__quoted_i_bar, + STATE(3535), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386254,26 +386020,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5644), 1, anon_sym_SLASH, - STATE(1651), 1, - sym__quoted_double, - STATE(1652), 1, - sym__quoted_single, - STATE(1653), 1, - sym__quoted_heredoc_single, - STATE(1654), 1, - sym__quoted_heredoc_double, - STATE(1655), 1, - sym__quoted_parenthesis, - STATE(1658), 1, - sym__quoted_curly, - STATE(1659), 1, - sym__quoted_square, - STATE(1662), 1, - sym__quoted_angle, - STATE(1663), 1, - sym__quoted_bar, - STATE(1678), 1, - sym__quoted_slash, + STATE(3325), 1, + sym__quoted_i_double, + STATE(3326), 1, + sym__quoted_i_single, + STATE(3327), 1, + sym__quoted_i_heredoc_single, + STATE(3328), 1, + sym__quoted_i_heredoc_double, + STATE(3330), 1, + sym__quoted_i_parenthesis, + STATE(3335), 1, + sym__quoted_i_curly, + STATE(3344), 1, + sym__quoted_i_angle, + STATE(3345), 1, + sym__quoted_i_bar, + STATE(3346), 1, + sym__quoted_i_slash, + STATE(3403), 1, + sym__quoted_i_square, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386301,26 +386067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5664), 1, anon_sym_SLASH, - STATE(3893), 1, - sym__quoted_slash, - STATE(3894), 1, - sym__quoted_bar, - STATE(3899), 1, - sym__quoted_angle, - STATE(3904), 1, - sym__quoted_square, - STATE(3911), 1, - sym__quoted_curly, - STATE(3915), 1, - sym__quoted_parenthesis, - STATE(3927), 1, - sym__quoted_heredoc_double, - STATE(3932), 1, - sym__quoted_heredoc_single, - STATE(3933), 1, - sym__quoted_single, - STATE(3939), 1, - sym__quoted_double, + STATE(2653), 1, + sym__quoted_i_double, + STATE(2654), 1, + sym__quoted_i_single, + STATE(2656), 1, + sym__quoted_i_heredoc_single, + STATE(2657), 1, + sym__quoted_i_heredoc_double, + STATE(2658), 1, + sym__quoted_i_parenthesis, + STATE(2659), 1, + sym__quoted_i_curly, + STATE(2663), 1, + sym__quoted_i_square, + STATE(2665), 1, + sym__quoted_i_angle, + STATE(2666), 1, + sym__quoted_i_bar, + STATE(2667), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386348,26 +386114,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5684), 1, anon_sym_SLASH, - STATE(3952), 1, - sym__quoted_i_double, - STATE(3953), 1, - sym__quoted_i_single, - STATE(3954), 1, - sym__quoted_i_heredoc_single, - STATE(3955), 1, - sym__quoted_i_heredoc_double, - STATE(3958), 1, + STATE(3177), 1, sym__quoted_i_slash, - STATE(3960), 1, - sym__quoted_i_parenthesis, - STATE(3961), 1, - sym__quoted_i_curly, - STATE(3962), 1, - sym__quoted_i_square, - STATE(4027), 1, + STATE(3179), 1, sym__quoted_i_bar, - STATE(4039), 1, + STATE(3180), 1, sym__quoted_i_angle, + STATE(3181), 1, + sym__quoted_i_square, + STATE(3182), 1, + sym__quoted_i_curly, + STATE(3185), 1, + sym__quoted_i_parenthesis, + STATE(3186), 1, + sym__quoted_i_heredoc_double, + STATE(3187), 1, + sym__quoted_i_heredoc_single, + STATE(3188), 1, + sym__quoted_i_single, + STATE(3190), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386395,26 +386161,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5704), 1, anon_sym_SLASH, - STATE(4290), 1, - sym__quoted_i_double, - STATE(4292), 1, - sym__quoted_i_single, - STATE(4307), 1, - sym__quoted_i_heredoc_single, - STATE(4318), 1, - sym__quoted_i_heredoc_double, - STATE(4331), 1, - sym__quoted_i_parenthesis, - STATE(4332), 1, - sym__quoted_i_curly, - STATE(4334), 1, - sym__quoted_i_square, - STATE(4340), 1, - sym__quoted_i_angle, - STATE(4342), 1, - sym__quoted_i_bar, - STATE(4343), 1, - sym__quoted_i_slash, + STATE(3166), 1, + sym__quoted_slash, + STATE(3167), 1, + sym__quoted_bar, + STATE(3169), 1, + sym__quoted_angle, + STATE(3170), 1, + sym__quoted_square, + STATE(3171), 1, + sym__quoted_curly, + STATE(3172), 1, + sym__quoted_parenthesis, + STATE(3173), 1, + sym__quoted_heredoc_double, + STATE(3174), 1, + sym__quoted_heredoc_single, + STATE(3175), 1, + sym__quoted_single, + STATE(3176), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386442,26 +386208,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5724), 1, anon_sym_SLASH, - STATE(2056), 1, - sym__quoted_i_slash, - STATE(2057), 1, - sym__quoted_i_bar, - STATE(2058), 1, - sym__quoted_i_angle, - STATE(2059), 1, - sym__quoted_i_square, - STATE(2060), 1, - sym__quoted_i_curly, - STATE(2061), 1, - sym__quoted_i_parenthesis, - STATE(2062), 1, - sym__quoted_i_heredoc_double, - STATE(2066), 1, - sym__quoted_i_heredoc_single, - STATE(2067), 1, - sym__quoted_i_single, - STATE(2068), 1, + STATE(1528), 1, sym__quoted_i_double, + STATE(1529), 1, + sym__quoted_i_single, + STATE(1530), 1, + sym__quoted_i_heredoc_single, + STATE(1531), 1, + sym__quoted_i_heredoc_double, + STATE(1532), 1, + sym__quoted_i_parenthesis, + STATE(1533), 1, + sym__quoted_i_curly, + STATE(1534), 1, + sym__quoted_i_square, + STATE(1535), 1, + sym__quoted_i_angle, + STATE(1540), 1, + sym__quoted_i_bar, + STATE(1541), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386489,25 +386255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5744), 1, anon_sym_SLASH, - STATE(3522), 1, + STATE(2668), 1, + sym__quoted_double, + STATE(2669), 1, + sym__quoted_single, + STATE(2706), 1, sym__quoted_heredoc_single, - STATE(3523), 1, + STATE(2707), 1, sym__quoted_heredoc_double, - STATE(3528), 1, - sym__quoted_curly, - STATE(3535), 1, + STATE(2712), 1, sym__quoted_parenthesis, - STATE(3562), 1, - sym__quoted_single, - STATE(3574), 1, + STATE(2713), 1, + sym__quoted_curly, + STATE(2714), 1, sym__quoted_square, - STATE(3575), 1, + STATE(2734), 1, sym__quoted_angle, - STATE(3609), 1, - sym__quoted_double, - STATE(3647), 1, + STATE(2738), 1, sym__quoted_bar, - STATE(3698), 1, + STATE(2740), 1, sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386536,26 +386302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5764), 1, anon_sym_SLASH, - STATE(2822), 1, - sym__quoted_i_slash, - STATE(2823), 1, - sym__quoted_i_bar, - STATE(2824), 1, - sym__quoted_i_angle, - STATE(2825), 1, - sym__quoted_i_square, - STATE(2826), 1, - sym__quoted_i_curly, - STATE(2827), 1, - sym__quoted_i_parenthesis, - STATE(2828), 1, - sym__quoted_i_heredoc_double, - STATE(2829), 1, - sym__quoted_i_heredoc_single, - STATE(2830), 1, - sym__quoted_i_single, - STATE(2831), 1, - sym__quoted_i_double, + STATE(1539), 1, + sym__quoted_parenthesis, + STATE(1542), 1, + sym__quoted_double, + STATE(1543), 1, + sym__quoted_single, + STATE(1544), 1, + sym__quoted_heredoc_single, + STATE(1545), 1, + sym__quoted_heredoc_double, + STATE(1546), 1, + sym__quoted_curly, + STATE(1547), 1, + sym__quoted_square, + STATE(1548), 1, + sym__quoted_angle, + STATE(1549), 1, + sym__quoted_bar, + STATE(1550), 1, + sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386583,26 +386349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5784), 1, anon_sym_SLASH, - STATE(3634), 1, - sym__quoted_i_double, - STATE(3671), 1, - sym__quoted_i_single, - STATE(3820), 1, - sym__quoted_i_slash, - STATE(3823), 1, - sym__quoted_i_parenthesis, - STATE(3843), 1, - sym__quoted_i_heredoc_single, - STATE(3845), 1, - sym__quoted_i_curly, - STATE(3848), 1, - sym__quoted_i_square, - STATE(3862), 1, - sym__quoted_i_heredoc_double, - STATE(3872), 1, - sym__quoted_i_angle, - STATE(3890), 1, - sym__quoted_i_bar, + STATE(2646), 1, + sym__quoted_bar, + STATE(2781), 1, + sym__quoted_slash, + STATE(2874), 1, + sym__quoted_double, + STATE(2877), 1, + sym__quoted_single, + STATE(2878), 1, + sym__quoted_heredoc_single, + STATE(2879), 1, + sym__quoted_heredoc_double, + STATE(2896), 1, + sym__quoted_parenthesis, + STATE(2901), 1, + sym__quoted_square, + STATE(2903), 1, + sym__quoted_angle, + STATE(2908), 1, + sym__quoted_curly, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386630,26 +386396,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5804), 1, anon_sym_SLASH, - STATE(2812), 1, - sym__quoted_slash, - STATE(2813), 1, - sym__quoted_bar, - STATE(2814), 1, - sym__quoted_angle, - STATE(2815), 1, - sym__quoted_square, - STATE(2816), 1, - sym__quoted_curly, - STATE(2817), 1, - sym__quoted_parenthesis, - STATE(2818), 1, - sym__quoted_heredoc_double, - STATE(2819), 1, - sym__quoted_heredoc_single, - STATE(2820), 1, - sym__quoted_single, - STATE(2821), 1, - sym__quoted_double, + STATE(2497), 1, + sym__quoted_i_heredoc_single, + STATE(2498), 1, + sym__quoted_i_heredoc_double, + STATE(2510), 1, + sym__quoted_i_single, + STATE(2590), 1, + sym__quoted_i_curly, + STATE(2591), 1, + sym__quoted_i_square, + STATE(2639), 1, + sym__quoted_i_parenthesis, + STATE(2872), 1, + sym__quoted_i_bar, + STATE(2873), 1, + sym__quoted_i_double, + STATE(2883), 1, + sym__quoted_i_angle, + STATE(2900), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386677,25 +386443,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5824), 1, anon_sym_SLASH, - STATE(1796), 1, - sym__quoted_heredoc_double, - STATE(2005), 1, + STATE(2670), 1, sym__quoted_slash, - STATE(2008), 1, + STATE(2673), 1, sym__quoted_bar, - STATE(2011), 1, + STATE(2674), 1, sym__quoted_angle, - STATE(2012), 1, + STATE(2675), 1, sym__quoted_square, - STATE(2073), 1, + STATE(2676), 1, sym__quoted_curly, - STATE(2074), 1, + STATE(2677), 1, sym__quoted_parenthesis, - STATE(2077), 1, + STATE(2678), 1, + sym__quoted_heredoc_double, + STATE(2679), 1, sym__quoted_heredoc_single, - STATE(2078), 1, + STATE(2680), 1, sym__quoted_single, - STATE(2079), 1, + STATE(2681), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386724,26 +386490,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5844), 1, anon_sym_SLASH, - STATE(2080), 1, - sym__quoted_i_slash, - STATE(2081), 1, - sym__quoted_i_bar, - STATE(2082), 1, - sym__quoted_i_angle, - STATE(2083), 1, - sym__quoted_i_square, - STATE(2084), 1, - sym__quoted_i_curly, - STATE(2085), 1, - sym__quoted_i_parenthesis, - STATE(2091), 1, - sym__quoted_i_heredoc_double, - STATE(2099), 1, - sym__quoted_i_heredoc_single, - STATE(2100), 1, - sym__quoted_i_single, - STATE(2102), 1, - sym__quoted_i_double, + STATE(2391), 1, + sym__quoted_double, + STATE(2392), 1, + sym__quoted_single, + STATE(2394), 1, + sym__quoted_heredoc_single, + STATE(2460), 1, + sym__quoted_heredoc_double, + STATE(2461), 1, + sym__quoted_parenthesis, + STATE(2463), 1, + sym__quoted_curly, + STATE(2468), 1, + sym__quoted_square, + STATE(2469), 1, + sym__quoted_angle, + STATE(2470), 1, + sym__quoted_bar, + STATE(2478), 1, + sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386771,26 +386537,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5864), 1, anon_sym_SLASH, - STATE(4050), 1, - sym__quoted_heredoc_single, - STATE(4186), 1, - sym__quoted_slash, - STATE(4276), 1, - sym__quoted_bar, - STATE(4344), 1, - sym__quoted_double, - STATE(4348), 1, - sym__quoted_single, - STATE(4361), 1, - sym__quoted_heredoc_double, - STATE(4363), 1, - sym__quoted_parenthesis, - STATE(4395), 1, - sym__quoted_curly, - STATE(4396), 1, - sym__quoted_square, - STATE(4409), 1, - sym__quoted_angle, + STATE(2375), 1, + sym__quoted_i_double, + STATE(2376), 1, + sym__quoted_i_single, + STATE(2379), 1, + sym__quoted_i_heredoc_single, + STATE(2381), 1, + sym__quoted_i_heredoc_double, + STATE(2385), 1, + sym__quoted_i_parenthesis, + STATE(2386), 1, + sym__quoted_i_curly, + STATE(2387), 1, + sym__quoted_i_square, + STATE(2388), 1, + sym__quoted_i_angle, + STATE(2389), 1, + sym__quoted_i_bar, + STATE(2390), 1, + sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386818,25 +386584,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5884), 1, anon_sym_SLASH, - STATE(2358), 1, + STATE(2715), 1, sym__quoted_i_double, - STATE(2359), 1, + STATE(2716), 1, sym__quoted_i_single, - STATE(2676), 1, + STATE(2717), 1, sym__quoted_i_heredoc_single, - STATE(2677), 1, + STATE(2719), 1, sym__quoted_i_heredoc_double, - STATE(2715), 1, - sym__quoted_i_parenthesis, STATE(2720), 1, + sym__quoted_i_parenthesis, + STATE(2725), 1, sym__quoted_i_curly, - STATE(2721), 1, + STATE(2726), 1, sym__quoted_i_square, - STATE(2723), 1, + STATE(2727), 1, sym__quoted_i_angle, - STATE(2724), 1, + STATE(2728), 1, sym__quoted_i_bar, - STATE(2725), 1, + STATE(2729), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386865,25 +386631,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5904), 1, anon_sym_SLASH, - STATE(2726), 1, + STATE(2730), 1, sym__quoted_double, - STATE(2727), 1, + STATE(2731), 1, sym__quoted_single, - STATE(2728), 1, + STATE(2732), 1, sym__quoted_heredoc_single, - STATE(2729), 1, + STATE(2735), 1, sym__quoted_heredoc_double, - STATE(2730), 1, + STATE(2736), 1, sym__quoted_parenthesis, - STATE(2731), 1, + STATE(2739), 1, sym__quoted_curly, - STATE(2732), 1, + STATE(2744), 1, sym__quoted_square, - STATE(2733), 1, + STATE(2747), 1, sym__quoted_angle, - STATE(2735), 1, + STATE(2748), 1, sym__quoted_bar, - STATE(2736), 1, + STATE(2749), 1, sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386912,26 +386678,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5924), 1, anon_sym_SLASH, - STATE(2920), 1, - sym__quoted_i_heredoc_double, - STATE(3062), 1, - sym__quoted_i_double, - STATE(3063), 1, - sym__quoted_i_single, - STATE(3064), 1, - sym__quoted_i_heredoc_single, - STATE(3079), 1, - sym__quoted_i_parenthesis, - STATE(3080), 1, - sym__quoted_i_curly, - STATE(3081), 1, - sym__quoted_i_square, - STATE(3083), 1, - sym__quoted_i_bar, - STATE(3084), 1, - sym__quoted_i_slash, - STATE(3200), 1, - sym__quoted_i_angle, + STATE(1916), 1, + sym__quoted_slash, + STATE(1917), 1, + sym__quoted_bar, + STATE(1918), 1, + sym__quoted_angle, + STATE(1919), 1, + sym__quoted_square, + STATE(1920), 1, + sym__quoted_curly, + STATE(1921), 1, + sym__quoted_parenthesis, + STATE(1922), 1, + sym__quoted_heredoc_double, + STATE(1923), 1, + sym__quoted_heredoc_single, + STATE(1924), 1, + sym__quoted_single, + STATE(1925), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386959,26 +386725,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(5944), 1, anon_sym_SLASH, - STATE(1570), 1, + STATE(2682), 1, + sym__quoted_i_slash, + STATE(2684), 1, + sym__quoted_i_bar, + STATE(2685), 1, + sym__quoted_i_angle, + STATE(2687), 1, + sym__quoted_i_square, + STATE(2692), 1, + sym__quoted_i_curly, + STATE(2693), 1, sym__quoted_i_parenthesis, - STATE(1632), 1, - sym__quoted_i_double, - STATE(1633), 1, - sym__quoted_i_single, - STATE(1634), 1, - sym__quoted_i_heredoc_single, - STATE(1635), 1, + STATE(2697), 1, sym__quoted_i_heredoc_double, - STATE(1636), 1, - sym__quoted_i_curly, - STATE(1645), 1, - sym__quoted_i_square, - STATE(1647), 1, - sym__quoted_i_angle, - STATE(1648), 1, - sym__quoted_i_bar, - STATE(1650), 1, - sym__quoted_i_slash, + STATE(2698), 1, + sym__quoted_i_heredoc_single, + STATE(2699), 1, + sym__quoted_i_single, + STATE(2700), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386994,22 +386760,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(331), 1, + ACTIONS(1016), 1, anon_sym_end, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(2944), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(140), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4667), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4720), 5, + STATE(4702), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387026,22 +386792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(323), 1, - anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, + ACTIONS(1004), 1, + anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4679), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4732), 5, + STATE(4694), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387058,18 +386824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(960), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2934), 1, + ACTIONS(1026), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(160), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -387090,22 +386856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(327), 1, - anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, + ACTIONS(1016), 1, + anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4629), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4700), 5, + STATE(4702), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387122,22 +386888,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(323), 1, + anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(960), 1, - anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4687), 1, + STATE(4637), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4698), 5, + STATE(4713), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387160,16 +386926,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4637), 1, + STATE(4630), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4724), 5, + STATE(4750), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387186,22 +386952,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1022), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2940), 1, + ACTIONS(1004), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(174), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4680), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4699), 5, + STATE(4694), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387220,20 +386986,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1022), 1, + ACTIONS(966), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4699), 5, + STATE(4729), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387252,15 +387018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(976), 1, + ACTIONS(982), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4633), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -387282,22 +387048,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(315), 1, + ACTIONS(307), 1, anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4660), 1, + STATE(4617), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4702), 5, + STATE(4699), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387314,22 +387080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1026), 1, + ACTIONS(327), 1, anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5948), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(175), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4650), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4701), 5, + STATE(4690), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387346,22 +387112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(976), 1, + ACTIONS(964), 1, anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(2962), 1, + ACTIONS(5948), 1, anon_sym_SEMI, - STATE(150), 1, + STATE(147), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4714), 5, + STATE(4715), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387380,20 +387146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1026), 1, + ACTIONS(1012), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4634), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4701), 5, + STATE(4691), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387410,22 +387176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(976), 1, + ACTIONS(1012), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2952), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(170), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4714), 5, + STATE(4691), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387442,22 +387208,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(978), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5950), 1, + ACTIONS(1012), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4717), 5, + STATE(4691), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387474,22 +387240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(319), 1, - anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, + ACTIONS(964), 1, + anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4654), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4723), 5, + STATE(4715), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387506,22 +387272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(311), 1, + ACTIONS(982), 1, anon_sym_end, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(2934), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(143), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4681), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4743), 5, + STATE(4714), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387538,22 +387304,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(978), 1, + ACTIONS(1018), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5950), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(171), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4717), 5, + STATE(4748), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387570,22 +387336,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(339), 1, - anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, + ACTIONS(1018), 1, + anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4640), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4719), 5, + STATE(4748), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387602,22 +387368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1018), 1, + ACTIONS(994), 1, anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5952), 1, + ACTIONS(2932), 1, anon_sym_SEMI, - STATE(171), 1, + STATE(154), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4729), 5, + STATE(4717), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387636,20 +387402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1002), 1, + ACTIONS(982), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4659), 1, + STATE(4631), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4730), 5, + STATE(4714), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387668,20 +387434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1012), 1, + ACTIONS(994), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4711), 5, + STATE(4717), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387704,16 +387470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4676), 1, + STATE(4661), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4703), 5, + STATE(4702), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387730,22 +387496,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1002), 1, + ACTIONS(986), 1, anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(2930), 1, + ACTIONS(5952), 1, anon_sym_SEMI, - STATE(156), 1, + STATE(153), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4730), 5, + STATE(4718), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387764,20 +387530,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1002), 1, + ACTIONS(986), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4730), 5, + STATE(4718), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387794,22 +387560,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1012), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2948), 1, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(170), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4711), 5, + STATE(4705), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387826,22 +387592,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(990), 1, + ACTIONS(1014), 1, anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, ACTIONS(5954), 1, anon_sym_SEMI, - STATE(151), 1, + STATE(166), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4750), 5, + STATE(4705), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387858,22 +387624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(964), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5956), 1, + ACTIONS(998), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(147), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4690), 5, + STATE(4741), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387890,22 +387656,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(974), 1, + ACTIONS(998), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5956), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(161), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4725), 5, + STATE(4741), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387922,22 +387688,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1016), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2946), 1, + ACTIONS(960), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(140), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4703), 5, + STATE(4739), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387954,22 +387720,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(974), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5958), 1, + ACTIONS(1024), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(142), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4725), 5, + STATE(4703), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -387986,22 +387752,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(307), 1, + ACTIONS(1024), 1, anon_sym_end, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(2926), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(168), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4653), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4736), 5, + STATE(4703), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388018,22 +387784,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1004), 1, + ACTIONS(960), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2956), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(160), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4657), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4747), 5, + STATE(4739), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388054,18 +387820,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(2944), 1, + ACTIONS(2948), 1, anon_sym_SEMI, STATE(164), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4747), 5, + STATE(4694), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388084,20 +387850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(964), 1, + ACTIONS(976), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4690), 5, + STATE(4725), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388116,20 +387882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(966), 1, + ACTIONS(970), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4727), 5, + STATE(4740), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388146,22 +387912,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(966), 1, + ACTIONS(970), 1, anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(2938), 1, + ACTIONS(5958), 1, anon_sym_SEMI, - STATE(148), 1, + STATE(159), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4727), 5, + STATE(4740), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388180,20 +387946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1004), 1, + ACTIONS(994), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4640), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4747), 5, + STATE(4717), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388212,15 +387978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1016), 1, + ACTIONS(1024), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4641), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -388244,20 +388010,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(966), 1, + ACTIONS(990), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4644), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4727), 5, + STATE(4737), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388274,22 +388040,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1006), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5960), 1, + ACTIONS(960), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(165), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4643), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4749), 5, + STATE(4739), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388306,22 +388072,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(315), 1, + anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1006), 1, - anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4645), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4749), 5, + STATE(4736), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388338,22 +388104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(343), 1, + ACTIONS(311), 1, anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4651), 1, + STATE(4624), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4744), 5, + STATE(4709), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388370,22 +388136,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(335), 1, + anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(990), 1, - anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4669), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4750), 5, + STATE(4712), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388402,22 +388168,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(319), 1, + anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(960), 1, - anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4619), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4698), 5, + STATE(4707), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388436,20 +388202,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(970), 1, + ACTIONS(952), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4740), 5, + STATE(4728), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388466,22 +388232,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(970), 1, + ACTIONS(331), 1, anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5962), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(159), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4646), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4740), 5, + STATE(4697), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388498,22 +388264,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1018), 1, + ACTIONS(990), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5960), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(151), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4729), 5, + STATE(4737), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388530,22 +388296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(335), 1, - anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, + ACTIONS(978), 1, + anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4668), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4712), 5, + STATE(4724), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388562,22 +388328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1024), 1, + ACTIONS(978), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5962), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(155), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4672), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4708), 5, + STATE(4724), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388594,22 +388360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1024), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2942), 1, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(168), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4708), 5, + STATE(4731), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388626,22 +388392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1024), 1, + ACTIONS(1002), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2964), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(156), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4708), 5, + STATE(4731), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388658,22 +388424,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(968), 1, + ACTIONS(974), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5964), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(142), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4738), 5, + STATE(4730), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388690,18 +388456,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(680), 1, + aux_sym__terminator_token1, ACTIONS(968), 1, anon_sym_end, - ACTIONS(2871), 1, - aux_sym__terminator_token1, - ACTIONS(2924), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(146), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -388724,20 +388490,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(968), 1, + ACTIONS(1002), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4661), 1, + STATE(4655), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4738), 5, + STATE(4731), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388754,22 +388520,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1014), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5964), 1, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(166), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4664), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4706), 5, + STATE(4725), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388786,22 +388552,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1014), 1, + ACTIONS(968), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2958), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(146), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4706), 5, + STATE(4738), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388820,20 +388586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(986), 1, + ACTIONS(968), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4651), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4734), 5, + STATE(4738), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388850,22 +388616,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(952), 1, + ACTIONS(343), 1, anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5966), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(157), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4623), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4721), 5, + STATE(4727), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388882,22 +388648,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(986), 1, + ACTIONS(976), 1, anon_sym_end, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5968), 1, + ACTIONS(2922), 1, anon_sym_SEMI, - STATE(153), 1, + STATE(150), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4734), 5, + STATE(4725), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388914,22 +388680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(339), 1, + anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(952), 1, - anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4666), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4721), 5, + STATE(4719), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388948,20 +388714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1012), 1, + ACTIONS(966), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4663), 1, + STATE(4681), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4711), 5, + STATE(4729), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -388978,22 +388744,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1022), 1, + ACTIONS(1006), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5966), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(165), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4628), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4699), 5, + STATE(4693), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389010,22 +388776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(351), 1, + anon_sym_end, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(994), 1, - anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4684), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4707), 5, + STATE(4704), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389042,22 +388808,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(994), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2936), 1, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(154), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4707), 5, + STATE(4693), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389076,20 +388842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(982), 1, + ACTIONS(974), 1, anon_sym_end, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4737), 5, + STATE(4730), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389106,22 +388872,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(998), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(5970), 1, + ACTIONS(1022), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(161), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4618), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4710), 5, + STATE(4700), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389138,22 +388904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(994), 1, + ACTIONS(1022), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2873), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(174), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4673), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4707), 5, + STATE(4700), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389170,22 +388936,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(982), 1, - anon_sym_end, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(2932), 1, + ACTIONS(1022), 1, + anon_sym_end, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(143), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4737), 5, + STATE(4700), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389202,22 +388968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(351), 1, + ACTIONS(1026), 1, anon_sym_end, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(5968), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(175), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4623), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4694), 5, + STATE(4698), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389234,22 +389000,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(982), 1, + ACTIONS(952), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(5970), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(157), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4650), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4737), 5, + STATE(4728), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389266,22 +389032,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(998), 1, + ACTIONS(966), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(2871), 1, + aux_sym__terminator_token1, + ACTIONS(2938), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(148), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4710), 5, + STATE(4729), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389296,13 +389062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(4826), 1, + STATE(4827), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(546), 2, + STATE(742), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -389322,13 +389088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(4826), 1, + STATE(4827), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(546), 2, + STATE(742), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -389350,13 +389116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389373,13 +389139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(331), 1, + ACTIONS(1018), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389396,13 +389162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(351), 1, + ACTIONS(5980), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389419,13 +389185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(319), 1, + ACTIONS(1008), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389442,13 +389208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1022), 1, + ACTIONS(1006), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389465,13 +389231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(327), 1, + ACTIONS(331), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389488,13 +389254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(347), 1, + ACTIONS(5982), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389511,13 +389277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(315), 1, + ACTIONS(1024), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389534,13 +389300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(998), 1, + ACTIONS(1028), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389557,13 +389323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1026), 1, + ACTIONS(1004), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389580,13 +389346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(976), 1, + ACTIONS(1026), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389603,13 +389369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1028), 1, + ACTIONS(339), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389626,13 +389392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(960), 1, + ACTIONS(952), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389649,13 +389415,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(952), 1, + ACTIONS(1014), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389672,13 +389438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5980), 1, + ACTIONS(1022), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389695,13 +389461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5982), 1, + ACTIONS(1010), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389718,13 +389484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1010), 1, + ACTIONS(5984), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389741,13 +389507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(986), 1, + ACTIONS(1016), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389764,13 +389530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1014), 1, + ACTIONS(351), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389787,13 +389553,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(311), 1, + ACTIONS(982), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389810,13 +389576,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1000), 1, + ACTIONS(323), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389833,13 +389599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1018), 1, + ACTIONS(307), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389862,7 +389628,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389879,13 +389645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5984), 1, + ACTIONS(994), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389902,13 +389668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(978), 1, + ACTIONS(964), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389925,13 +389691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5986), 1, + ACTIONS(972), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389948,13 +389714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(339), 1, + ACTIONS(5986), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389971,13 +389737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(988), 1, + ACTIONS(986), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -389994,13 +389760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5988), 1, + ACTIONS(984), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390023,7 +389789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390040,13 +389806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1024), 1, + ACTIONS(5988), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390063,13 +389829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(992), 1, + ACTIONS(311), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390092,7 +389858,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390109,13 +389875,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1016), 1, + ACTIONS(5992), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390132,13 +389898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1012), 1, + ACTIONS(988), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390155,13 +389921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(962), 1, + ACTIONS(978), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390178,13 +389944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5992), 1, + ACTIONS(343), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390201,13 +389967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(974), 1, + ACTIONS(966), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390224,13 +389990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5994), 1, + ACTIONS(992), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390247,13 +390013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1020), 1, + ACTIONS(974), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390270,13 +390036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(990), 1, + ACTIONS(962), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390293,13 +390059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(307), 1, + ACTIONS(990), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390316,13 +390082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(994), 1, + ACTIONS(335), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390331,21 +390097,21 @@ static const uint16_t ts_small_parse_table[] = { [258259] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(103), 1, + ACTIONS(5994), 1, anon_sym_after, - ACTIONS(105), 1, + ACTIONS(5997), 1, anon_sym_catch, - ACTIONS(107), 1, + ACTIONS(6000), 1, anon_sym_else, - ACTIONS(113), 1, - anon_sym_rescue, - ACTIONS(335), 1, + ACTIONS(6003), 1, anon_sym_end, + ACTIONS(6005), 1, + anon_sym_rescue, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390362,13 +390128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(984), 1, + ACTIONS(6008), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390385,13 +390151,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(323), 1, + ACTIONS(315), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390408,13 +390174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1004), 1, + ACTIONS(960), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390431,13 +390197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(964), 1, + ACTIONS(980), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390460,7 +390226,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390477,13 +390243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5996), 1, + ACTIONS(998), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390506,7 +390272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390523,13 +390289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(5998), 1, + ACTIONS(1000), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390546,13 +390312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(6000), 1, + ACTIONS(6010), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390569,13 +390335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(982), 1, + ACTIONS(6012), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390592,13 +390358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(966), 1, + ACTIONS(327), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390607,21 +390373,21 @@ static const uint16_t ts_small_parse_table[] = { [258631] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(6002), 1, + ACTIONS(103), 1, anon_sym_after, - ACTIONS(6005), 1, + ACTIONS(105), 1, anon_sym_catch, - ACTIONS(6008), 1, + ACTIONS(107), 1, anon_sym_else, - ACTIONS(6011), 1, - anon_sym_end, - ACTIONS(6013), 1, + ACTIONS(113), 1, anon_sym_rescue, + ACTIONS(6014), 1, + anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390638,13 +390404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(343), 1, + ACTIONS(319), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390661,13 +390427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1006), 1, + ACTIONS(6016), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390684,13 +390450,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(6016), 1, + ACTIONS(1020), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390707,13 +390473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(1008), 1, + ACTIONS(347), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390730,13 +390496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, ACTIONS(113), 1, anon_sym_rescue, - ACTIONS(980), 1, + ACTIONS(1012), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4745), 5, + STATE(4733), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -390745,125 +390511,127 @@ static const uint16_t ts_small_parse_table[] = { [258817] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6018), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(289), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1435), 5, + ACTIONS(1441), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [258847] = 8, + [258847] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(5946), 1, - anon_sym_SEMI, - STATE(127), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, + ACTIONS(1115), 1, + sym_keyword, + ACTIONS(5974), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_SQUOTE, + ACTIONS(5978), 1, + anon_sym_GT_GT, + STATE(4827), 1, + sym_pair, + STATE(6890), 1, + sym__quoted_i_double, + STATE(6891), 1, + sym__quoted_i_single, + STATE(605), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1481), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [258877] = 8, + aux_sym__terminator_token1, + [258881] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(6018), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(6021), 1, + ACTIONS(6020), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(294), 1, sym__terminator, - STATE(1031), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4753), 1, - aux_sym_source_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4470), 5, + ACTIONS(1379), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [258907] = 8, + [258911] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(6022), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6025), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4780), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1497), 5, + ACTIONS(6028), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [258937] = 8, + [258941] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1499), 5, + ACTIONS(1451), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [258967] = 8, + [258971] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4752), 1, + STATE(4774), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -390874,63 +390642,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [258997] = 8, + [259001] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(6030), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6033), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(734), 1, sym__terminator, - STATE(1026), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(4770), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(670), 5, + ACTIONS(4197), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259027] = 8, + [259031] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6036), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(298), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1497), 5, + ACTIONS(1451), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259057] = 8, + [259061] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(3044), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(303), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4764), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -390940,151 +390708,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [259087] = 8, + [259091] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1115), 1, + sym_keyword, + ACTIONS(5972), 1, + anon_sym_GT_GT, + ACTIONS(5974), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_SQUOTE, + STATE(4827), 1, + sym_pair, + STATE(6890), 1, + sym__quoted_i_double, + STATE(6891), 1, + sym__quoted_i_single, + STATE(605), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259125] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4755), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(678), 5, + ACTIONS(1441), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259117] = 8, + [259155] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(3026), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(303), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1481), 5, + ACTIONS(1437), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259147] = 8, + [259185] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(3028), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(295), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4755), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1497), 5, + ACTIONS(1499), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259177] = 8, + [259215] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(6038), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6041), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(630), 1, sym__terminator, - STATE(1026), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(4751), 1, - aux_sym_block_repeat1, + STATE(4764), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1467), 5, + ACTIONS(4297), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259207] = 8, + [259245] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1439), 5, + ACTIONS(1379), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259237] = 8, + [259275] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(6024), 1, + ACTIONS(3030), 1, anon_sym_SEMI, - STATE(289), 1, + STATE(309), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1439), 5, + ACTIONS(1499), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259267] = 8, + [259305] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(3056), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(309), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -391094,269 +390886,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [259297] = 8, + [259335] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4767), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1451), 5, + ACTIONS(678), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259327] = 8, + [259365] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(6026), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(287), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4765), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1435), 5, + ACTIONS(1497), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259357] = 8, + [259395] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(6028), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(6031), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(129), 1, sym__terminator, - STATE(1022), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4753), 1, - aux_sym_source_repeat1, + STATE(4754), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1313), 5, + ACTIONS(1467), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259387] = 8, + [259425] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4777), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1467), 5, + ACTIONS(674), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259417] = 8, + [259455] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(6034), 1, + ACTIONS(3046), 1, anon_sym_SEMI, - STATE(294), 1, + STATE(299), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1429), 5, + ACTIONS(1467), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259447] = 8, + [259485] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3721), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(3724), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(263), 1, + STATE(129), 1, sym__terminator, - STATE(1022), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4753), 1, - aux_sym_source_repeat1, + STATE(4762), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1295), 5, + ACTIONS(1467), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259477] = 8, + [259515] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(6036), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(6039), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(129), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, + STATE(4754), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(6042), 5, + ACTIONS(1481), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259507] = 8, + [259545] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2871), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(3004), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(129), 1, sym__terminator, - STATE(1021), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4770), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1467), 5, + ACTIONS(670), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259537] = 10, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1115), 1, - sym_keyword, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5976), 1, - anon_sym_SQUOTE, - ACTIONS(5978), 1, - anon_sym_GT_GT, - STATE(4826), 1, - sym_pair, - STATE(6969), 1, - sym__quoted_i_double, - STATE(6970), 1, - sym__quoted_i_single, - STATE(909), 2, - sym__keyword, - sym_quoted_keyword, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [259571] = 8, + [259575] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(6044), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(6047), 1, + ACTIONS(5946), 1, anon_sym_SEMI, - STATE(799), 1, + STATE(129), 1, sym__terminator, - STATE(1031), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, - aux_sym_block_repeat2, + STATE(4761), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4426), 5, + ACTIONS(1481), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [259601] = 10, + [259605] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1115), 1, - sym_keyword, - ACTIONS(5972), 1, - anon_sym_GT_GT, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5976), 1, - anon_sym_SQUOTE, - STATE(4826), 1, - sym_pair, - STATE(6969), 1, - sym__quoted_i_double, - STATE(6970), 1, - sym__quoted_i_single, - STATE(909), 2, - sym__keyword, - sym_quoted_keyword, - ACTIONS(3), 3, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(5946), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4754), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, + ACTIONS(1497), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, [259635] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(6050), 1, + ACTIONS(3042), 1, anon_sym_SEMI, - STATE(298), 1, + STATE(282), 1, sym__terminator, - STATE(1021), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4776), 1, + STATE(4757), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1451), 5, + ACTIONS(1497), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -391365,20 +391131,20 @@ static const uint16_t ts_small_parse_table[] = { [259665] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(2871), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6044), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(287), 1, sym__terminator, - STATE(1026), 1, + STATE(1022), 1, aux_sym__terminator_repeat1, - STATE(4758), 1, - aux_sym_block_repeat1, + STATE(4757), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(674), 5, + ACTIONS(1437), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -391387,20 +391153,20 @@ static const uint16_t ts_small_parse_table[] = { [259695] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(3829), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(3832), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(263), 1, sym__terminator, - STATE(1026), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4773), 1, - aux_sym_block_repeat1, + STATE(4764), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1429), 5, + ACTIONS(1295), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -391409,20 +391175,20 @@ static const uint16_t ts_small_parse_table[] = { [259725] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(680), 1, + ACTIONS(6046), 1, aux_sym__terminator_token1, - ACTIONS(5946), 1, + ACTIONS(6049), 1, anon_sym_SEMI, - STATE(127), 1, + STATE(261), 1, sym__terminator, - STATE(1026), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4767), 1, - aux_sym_block_repeat1, + STATE(4764), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1499), 5, + ACTIONS(1313), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -391431,19 +391197,19 @@ static const uint16_t ts_small_parse_table[] = { [259755] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1345), 1, + ACTIONS(616), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(3249), 1, + STATE(3738), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(622), 2, + STATE(575), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -391471,19 +391237,19 @@ static const uint16_t ts_small_parse_table[] = { [259809] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1509), 1, + ACTIONS(1331), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1853), 1, + STATE(3137), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(620), 2, + STATE(507), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -391508,7 +391274,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [259863] = 5, + [259863] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(473), 1, + sym_keyword, + ACTIONS(5974), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_SQUOTE, + STATE(1145), 1, + sym_pair, + STATE(6890), 1, + sym__quoted_i_double, + STATE(6891), 1, + sym__quoted_i_single, + STATE(589), 2, + sym__keyword, + sym_quoted_keyword, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [259894] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(6064), 1, @@ -391526,7 +391314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [259886] = 5, + [259917] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(6070), 1, @@ -391544,397 +391332,393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [259909] = 9, + [259940] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(510), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1355), 1, + STATE(3455), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(617), 2, + STATE(594), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [259940] = 9, + [259971] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(1385), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1695), 1, + STATE(1597), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(614), 2, + STATE(530), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [259971] = 9, + [260002] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(456), 1, - sym_keyword, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5976), 1, - anon_sym_SQUOTE, - STATE(1355), 1, - sym_pair, - STATE(6969), 1, - sym__quoted_i_double, - STATE(6970), 1, - sym__quoted_i_single, - STATE(862), 2, - sym__keyword, - sym_quoted_keyword, + ACTIONS(6076), 1, + anon_sym_AMP, + ACTIONS(6080), 1, + anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260002] = 9, + ACTIONS(6078), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [260025] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(651), 1, + ACTIONS(383), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(2317), 1, + STATE(2141), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(733), 2, + STATE(583), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260033] = 9, + [260056] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(213), 1, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6086), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6084), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [260079] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1409), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1213), 1, + STATE(4350), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(721), 2, + STATE(665), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260064] = 9, + [260110] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(383), 1, + ACTIONS(87), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(2317), 1, + STATE(4827), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(600), 2, + STATE(517), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260095] = 5, + [260141] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(6088), 1, anon_sym_AMP, - ACTIONS(6080), 1, + ACTIONS(6092), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6078), 6, + ACTIONS(6090), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260118] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(87), 1, - sym_keyword, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5976), 1, - anon_sym_SQUOTE, - STATE(4826), 1, - sym_pair, - STATE(6969), 1, - sym__quoted_i_double, - STATE(6970), 1, - sym__quoted_i_single, - STATE(906), 2, - sym__keyword, - sym_quoted_keyword, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [260149] = 9, + [260164] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1407), 1, + ACTIONS(259), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(4185), 1, + STATE(1486), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(665), 2, + STATE(503), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260180] = 5, + [260195] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6094), 1, anon_sym_AMP, - ACTIONS(6086), 1, + ACTIONS(6098), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6084), 6, + ACTIONS(6096), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260203] = 5, + [260218] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6088), 1, + ACTIONS(6100), 1, anon_sym_AMP, - ACTIONS(6092), 1, + ACTIONS(6104), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6090), 6, + ACTIONS(6102), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260226] = 9, + [260241] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(1115), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1853), 1, + STATE(4827), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(611), 2, + STATE(605), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260257] = 9, + [260272] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(437), 1, + ACTIONS(213), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1355), 1, + STATE(1145), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(618), 2, + STATE(511), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260288] = 9, + [260303] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(6106), 1, + anon_sym_AMP, + ACTIONS(6110), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6108), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [260326] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(437), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1213), 1, + STATE(1486), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(490), 2, + STATE(547), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260319] = 5, + [260357] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6094), 1, + ACTIONS(6112), 1, anon_sym_AMP, - ACTIONS(6098), 1, + ACTIONS(6116), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6096), 6, + ACTIONS(6114), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260342] = 5, + [260380] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6100), 1, + ACTIONS(6118), 1, anon_sym_AMP, - ACTIONS(6104), 1, + ACTIONS(6122), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6102), 6, + ACTIONS(6120), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260365] = 9, + [260403] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1401), 1, + ACTIONS(87), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(1695), 1, + STATE(4393), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(713), 2, + STATE(517), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260396] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6106), 1, - anon_sym_AMP, - ACTIONS(6110), 1, - anon_sym_AT, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(6108), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [260419] = 5, + [260434] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(6112), 1, - anon_sym_AMP, - ACTIONS(6116), 1, - anon_sym_AT, + ACTIONS(1449), 1, + sym_keyword, + ACTIONS(5974), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_SQUOTE, + STATE(1942), 1, + sym_pair, + STATE(6890), 1, + sym__quoted_i_double, + STATE(6891), 1, + sym__quoted_i_single, + STATE(509), 2, + sym__keyword, + sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6114), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [260442] = 9, + [260465] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(1067), 1, @@ -391943,162 +391727,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(3249), 1, + STATE(3137), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(546), 2, + STATE(742), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260473] = 5, + [260496] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(6118), 1, - anon_sym_AMP, - ACTIONS(6122), 1, - anon_sym_AT, + ACTIONS(651), 1, + sym_keyword, + ACTIONS(5974), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_SQUOTE, + STATE(2141), 1, + sym_pair, + STATE(6890), 1, + sym__quoted_i_double, + STATE(6891), 1, + sym__quoted_i_single, + STATE(525), 2, + sym__keyword, + sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6120), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [260496] = 9, + [260527] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(510), 1, + ACTIONS(1509), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(3144), 1, + STATE(1942), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(702), 2, + STATE(505), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260527] = 5, + [260558] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(6124), 1, - anon_sym_AMP, - ACTIONS(6128), 1, - anon_sym_AT, + ACTIONS(1067), 1, + sym_keyword, + ACTIONS(5974), 1, + anon_sym_DQUOTE, + ACTIONS(5976), 1, + anon_sym_SQUOTE, + STATE(4827), 1, + sym_pair, + STATE(6890), 1, + sym__quoted_i_double, + STATE(6891), 1, + sym__quoted_i_single, + STATE(742), 2, + sym__keyword, + sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6126), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [260550] = 9, + [260589] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1067), 1, + ACTIONS(456), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(4826), 1, + STATE(1486), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(546), 2, + STATE(519), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260581] = 5, + [260620] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6124), 1, anon_sym_AMP, - ACTIONS(6134), 1, + ACTIONS(6128), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6132), 6, + ACTIONS(6126), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260604] = 9, + [260643] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(1493), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(4425), 1, + STATE(1597), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(909), 2, + STATE(501), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260635] = 9, + [260674] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(1115), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(3527), 1, + STATE(4512), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(604), 2, + STATE(605), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260666] = 5, + [260705] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6130), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(6132), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [260728] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(6136), 1, @@ -392116,29 +391926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260689] = 9, + [260751] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1115), 1, + ACTIONS(1471), 1, sym_keyword, ACTIONS(5974), 1, anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(4826), 1, + STATE(1942), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(909), 2, + STATE(499), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260720] = 5, + [260782] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(6142), 1, @@ -392156,7 +391966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260743] = 9, + [260805] = 9, ACTIONS(5), 1, sym_comment, ACTIONS(562), 1, @@ -392165,42 +391975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(5976), 1, anon_sym_SQUOTE, - STATE(3225), 1, - sym_pair, - STATE(6969), 1, - sym__quoted_i_double, - STATE(6970), 1, - sym__quoted_i_single, - STATE(606), 2, - sym__keyword, - sym_quoted_keyword, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [260774] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(87), 1, - sym_keyword, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5976), 1, - anon_sym_SQUOTE, - STATE(4067), 1, + STATE(3440), 1, sym_pair, - STATE(6969), 1, + STATE(6890), 1, sym__quoted_i_double, - STATE(6970), 1, + STATE(6891), 1, sym__quoted_i_single, - STATE(906), 2, + STATE(560), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [260805] = 5, + [260836] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(6148), 1, @@ -392218,28 +392006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_TILDE_TILDE_TILDE, anon_sym_not, - [260828] = 9, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1449), 1, - sym_keyword, - ACTIONS(5974), 1, - anon_sym_DQUOTE, - ACTIONS(5976), 1, - anon_sym_SQUOTE, - STATE(1853), 1, - sym_pair, - STATE(6969), 1, - sym__quoted_i_double, - STATE(6970), 1, - sym__quoted_i_single, - STATE(629), 2, - sym__keyword, - sym_quoted_keyword, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, [260859] = 5, ACTIONS(5), 1, sym_comment, @@ -392302,7 +392068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(6042), 7, + ACTIONS(6174), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -392310,30 +392076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [260948] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3283), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_when, - anon_sym_DASH_GT, - [260966] = 4, + [260948] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(6174), 1, + ACTIONS(6176), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(6176), 7, + ACTIONS(6028), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -392341,6 +392092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, + [260968] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_when, + anon_sym_DASH_GT, [260986] = 4, ACTIONS(5), 1, sym_comment, @@ -392359,16 +392125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rescue, [261006] = 8, ACTIONS(6182), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6188), 1, - sym__quoted_content_i_single, - STATE(5118), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_single, + STATE(5389), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392377,17 +392143,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261033] = 8, + ACTIONS(6184), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + sym_escape_sequence, ACTIONS(6190), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6192), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, - sym_escape_sequence, - ACTIONS(6196), 1, sym__quoted_content_i_heredoc_single, - STATE(5937), 1, + STATE(5094), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392396,16 +392162,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261060] = 8, - ACTIONS(6198), 1, - anon_sym_DQUOTE, - ACTIONS(6200), 1, + ACTIONS(6194), 1, + anon_sym_SQUOTE, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6204), 1, - sym__quoted_content_i_double, - STATE(5319), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(6200), 1, + sym__quoted_content_i_single, + STATE(5275), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -392415,17 +392181,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261087] = 8, - ACTIONS(6206), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6208), 1, + ACTIONS(6202), 1, + anon_sym_DQUOTE, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6212), 1, - sym__quoted_content_i_heredoc_double, - STATE(5344), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(6208), 1, + sym__quoted_content_i_double, + STATE(5230), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392434,17 +392200,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261114] = 8, - ACTIONS(6192), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6214), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6216), 1, - sym__quoted_content_i_heredoc_single, - STATE(5346), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6210), 1, + anon_sym_DQUOTE, + ACTIONS(6212), 1, + sym__quoted_content_i_double, + STATE(5194), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392453,17 +392219,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261141] = 8, - ACTIONS(6184), 1, + ACTIONS(6214), 1, + anon_sym_RPAREN, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, ACTIONS(6218), 1, - anon_sym_SQUOTE, + sym_escape_sequence, ACTIONS(6220), 1, - sym__quoted_content_i_single, - STATE(5348), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_parenthesis, + STATE(5613), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392472,17 +392238,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261168] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6222), 1, anon_sym_DQUOTE, ACTIONS(6224), 1, sym__quoted_content_i_double, - STATE(5356), 1, + STATE(5465), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392491,17 +392257,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261195] = 8, - ACTIONS(6208), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6226), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6228), 1, - sym__quoted_content_i_heredoc_double, - STATE(5368), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_single, + STATE(5314), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392510,17 +392276,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261222] = 8, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6230), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(6232), 1, - sym__quoted_content_i_heredoc_single, - STATE(5370), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_single, + STATE(5488), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392529,17 +392295,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261249] = 8, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, ACTIONS(6234), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6236), 1, - sym__quoted_content_i_single, - STATE(5381), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6238), 1, + sym_escape_sequence, + ACTIONS(6240), 1, + sym__quoted_content_i_heredoc_double, + STATE(5420), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392548,17 +392314,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261276] = 8, - ACTIONS(6200), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6238), 1, - anon_sym_DQUOTE, - ACTIONS(6240), 1, - sym__quoted_content_i_double, - STATE(5385), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(6242), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6244), 1, + sym__quoted_content_i_heredoc_single, + STATE(5490), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392567,17 +392333,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261303] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(6242), 1, + ACTIONS(6246), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6244), 1, + ACTIONS(6248), 1, sym__quoted_content_i_heredoc_double, - STATE(5406), 1, + STATE(5668), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392586,17 +392352,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261330] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6246), 1, + ACTIONS(6250), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6248), 1, + ACTIONS(6252), 1, sym__quoted_content_i_heredoc_single, - STATE(5419), 1, + STATE(5666), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392605,17 +392371,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261357] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6254), 1, anon_sym_SQUOTE, - ACTIONS(6252), 1, + ACTIONS(6256), 1, sym__quoted_content_i_single, - STATE(5430), 1, + STATE(5664), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392624,17 +392390,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261384] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6254), 1, + ACTIONS(6258), 1, anon_sym_DQUOTE, - ACTIONS(6256), 1, + ACTIONS(6260), 1, sym__quoted_content_i_double, - STATE(5446), 1, + STATE(5662), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392643,17 +392409,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261411] = 8, - ACTIONS(6208), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6258), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6260), 1, - sym__quoted_content_i_heredoc_double, - STATE(5453), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(6262), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6264), 1, + sym__quoted_content_i_heredoc_single, + STATE(5427), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392662,17 +392428,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261438] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6262), 1, + ACTIONS(6266), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6264), 1, + ACTIONS(6268), 1, sym__quoted_content_i_heredoc_single, - STATE(5455), 1, + STATE(5326), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392681,17 +392447,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261465] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6266), 1, + ACTIONS(6270), 1, anon_sym_SQUOTE, - ACTIONS(6268), 1, + ACTIONS(6272), 1, sym__quoted_content_i_single, - STATE(5457), 1, + STATE(5430), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392700,17 +392466,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261492] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6270), 1, + ACTIONS(6274), 1, anon_sym_DQUOTE, - ACTIONS(6272), 1, + ACTIONS(6276), 1, sym__quoted_content_i_double, - STATE(5459), 1, + STATE(5446), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392719,17 +392485,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261519] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(6274), 1, + ACTIONS(6278), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6276), 1, + ACTIONS(6280), 1, sym__quoted_content_i_heredoc_double, - STATE(5470), 1, + STATE(5177), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392738,17 +392504,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261546] = 8, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6278), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6280), 1, - sym__quoted_content_i_heredoc_single, - STATE(5472), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6282), 1, + anon_sym_SQUOTE, + ACTIONS(6284), 1, + sym__quoted_content_i_single, + STATE(5807), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392761,13 +392527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6282), 1, - anon_sym_SQUOTE, - ACTIONS(6284), 1, - sym__quoted_content_i_single, - STATE(5474), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(6286), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6288), 1, + sym__quoted_content_i_heredoc_single, + STATE(5168), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392776,16 +392542,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261600] = 8, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6286), 1, - anon_sym_DQUOTE, - ACTIONS(6288), 1, - sym__quoted_content_i_double, - STATE(5484), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(6290), 1, + anon_sym_SQUOTE, + ACTIONS(6292), 1, + sym__quoted_content_i_single, + STATE(5192), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -392795,17 +392561,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261627] = 8, - ACTIONS(6208), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6290), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6292), 1, - sym__quoted_content_i_heredoc_double, - STATE(5501), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(6294), 1, + anon_sym_SQUOTE, + ACTIONS(6296), 1, + sym__quoted_content_i_single, + STATE(5160), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392814,17 +392580,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261654] = 8, - ACTIONS(6192), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6294), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6296), 1, - sym__quoted_content_i_heredoc_single, - STATE(5504), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6298), 1, + anon_sym_DQUOTE, + ACTIONS(6300), 1, + sym__quoted_content_i_double, + STATE(5358), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392833,17 +392599,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261681] = 8, - ACTIONS(6184), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(6298), 1, - anon_sym_SQUOTE, - ACTIONS(6300), 1, - sym__quoted_content_i_single, - STATE(5506), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(6302), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6304), 1, + sym__quoted_content_i_heredoc_double, + STATE(5324), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392852,17 +392618,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261708] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(6302), 1, + ACTIONS(6306), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6304), 1, + ACTIONS(6308), 1, sym__quoted_content_i_heredoc_double, - STATE(5529), 1, + STATE(5455), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392871,17 +392637,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261735] = 8, - ACTIONS(6192), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(6306), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6308), 1, - sym__quoted_content_i_heredoc_single, - STATE(5540), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6310), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6312), 1, + sym__quoted_content_i_heredoc_double, + STATE(5498), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392894,13 +392660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6310), 1, - anon_sym_SQUOTE, - ACTIONS(6312), 1, - sym__quoted_content_i_single, - STATE(5548), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(6314), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6316), 1, + sym__quoted_content_i_heredoc_single, + STATE(5809), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392909,17 +392675,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261789] = 8, - ACTIONS(6200), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(6314), 1, - anon_sym_DQUOTE, - ACTIONS(6316), 1, - sym__quoted_content_i_double, - STATE(5551), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(6318), 1, + anon_sym_RPAREN, + ACTIONS(6320), 1, + sym__quoted_content_i_parenthesis, + STATE(5631), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392928,17 +392694,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261816] = 8, - ACTIONS(6208), 1, + ACTIONS(6322), 1, + anon_sym_RBRACE, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(6318), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6320), 1, - sym__quoted_content_i_heredoc_double, - STATE(5591), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(6328), 1, + sym__quoted_content_i_curly, + STATE(5654), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392947,17 +392713,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261843] = 8, - ACTIONS(6192), 1, + ACTIONS(6330), 1, + anon_sym_SLASH, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(6322), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6324), 1, - sym__quoted_content_i_heredoc_single, - STATE(5593), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6336), 1, + sym__quoted_content_i_slash, + STATE(5589), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392966,17 +392732,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261870] = 8, - ACTIONS(6184), 1, + ACTIONS(6338), 1, + anon_sym_PIPE, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(6326), 1, - anon_sym_SQUOTE, - ACTIONS(6328), 1, - sym__quoted_content_i_single, - STATE(5595), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(6344), 1, + sym__quoted_content_i_bar, + STATE(5587), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -392985,17 +392751,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261897] = 8, - ACTIONS(6200), 1, + ACTIONS(6346), 1, + anon_sym_GT, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(6330), 1, - anon_sym_DQUOTE, - ACTIONS(6332), 1, - sym__quoted_content_i_double, - STATE(5597), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(6352), 1, + sym__quoted_content_i_angle, + STATE(5585), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393004,17 +392770,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261924] = 8, - ACTIONS(6208), 1, + ACTIONS(6354), 1, + anon_sym_RBRACK, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(6334), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6336), 1, - sym__quoted_content_i_heredoc_double, - STATE(5603), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(6360), 1, + sym__quoted_content_i_square, + STATE(5583), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393023,17 +392789,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261951] = 8, - ACTIONS(6192), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(6338), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6340), 1, - sym__quoted_content_i_heredoc_single, - STATE(5605), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6362), 1, + anon_sym_RBRACE, + ACTIONS(6364), 1, + sym__quoted_content_i_curly, + STATE(5581), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393042,17 +392808,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [261978] = 8, - ACTIONS(6184), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(6342), 1, - anon_sym_SQUOTE, - ACTIONS(6344), 1, - sym__quoted_content_i_single, - STATE(5607), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(6366), 1, + anon_sym_RPAREN, + ACTIONS(6368), 1, + sym__quoted_content_i_parenthesis, + STATE(5579), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393061,17 +392827,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262005] = 8, - ACTIONS(6200), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(6346), 1, - anon_sym_DQUOTE, - ACTIONS(6348), 1, - sym__quoted_content_i_double, - STATE(5609), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(6370), 1, + anon_sym_RBRACK, + ACTIONS(6372), 1, + sym__quoted_content_i_square, + STATE(5656), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393080,17 +392846,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262032] = 8, - ACTIONS(6208), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, ACTIONS(6350), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6352), 1, - sym__quoted_content_i_heredoc_double, - STATE(5627), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym_escape_sequence, + ACTIONS(6374), 1, + anon_sym_GT, + ACTIONS(6376), 1, + sym__quoted_content_i_angle, + STATE(5749), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393099,17 +392865,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262059] = 8, - ACTIONS(6192), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(6354), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6356), 1, - sym__quoted_content_i_heredoc_single, - STATE(5629), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(6378), 1, + anon_sym_PIPE, + ACTIONS(6380), 1, + sym__quoted_content_i_bar, + STATE(5751), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393118,17 +392884,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262086] = 8, - ACTIONS(6184), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(6358), 1, - anon_sym_SQUOTE, - ACTIONS(6360), 1, - sym__quoted_content_i_single, - STATE(5631), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(6382), 1, + anon_sym_SLASH, + ACTIONS(6384), 1, + sym__quoted_content_i_slash, + STATE(5753), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393137,17 +392903,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262113] = 8, - ACTIONS(6200), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6362), 1, - anon_sym_DQUOTE, - ACTIONS(6364), 1, - sym__quoted_content_i_double, - STATE(5633), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(6386), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6388), 1, + sym__quoted_content_i_heredoc_single, + STATE(5457), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393156,17 +392922,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262140] = 8, - ACTIONS(6366), 1, - anon_sym_SLASH, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(6372), 1, - sym__quoted_content_i_slash, - STATE(5652), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(6390), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6392), 1, + sym__quoted_content_i_heredoc_double, + STATE(5524), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393175,17 +392941,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262167] = 8, - ACTIONS(6374), 1, - anon_sym_PIPE, - ACTIONS(6376), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(6380), 1, - sym__quoted_content_i_bar, - STATE(5654), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(6394), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6396), 1, + sym__quoted_content_i_heredoc_single, + STATE(5522), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393194,17 +392960,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262194] = 8, - ACTIONS(6382), 1, - anon_sym_GT, - ACTIONS(6384), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(6388), 1, - sym__quoted_content_i_angle, - STATE(5669), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(6398), 1, + anon_sym_SQUOTE, + ACTIONS(6400), 1, + sym__quoted_content_i_single, + STATE(5520), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393213,17 +392979,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262221] = 8, - ACTIONS(6390), 1, - anon_sym_RBRACK, - ACTIONS(6392), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6396), 1, - sym__quoted_content_i_square, - STATE(5672), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(6402), 1, + anon_sym_DQUOTE, + ACTIONS(6404), 1, + sym__quoted_content_i_double, + STATE(5518), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393232,17 +392998,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262248] = 8, - ACTIONS(6398), 1, - anon_sym_RBRACE, - ACTIONS(6400), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6404), 1, - sym__quoted_content_i_curly, - STATE(5674), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(6406), 1, + anon_sym_DQUOTE, + ACTIONS(6408), 1, + sym__quoted_content_i_double, + STATE(5210), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393251,17 +393017,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262275] = 8, - ACTIONS(6406), 1, - anon_sym_RPAREN, - ACTIONS(6408), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, + ACTIONS(6410), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6412), 1, - sym__quoted_content_i_parenthesis, - STATE(5677), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_heredoc_double, + STATE(5811), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393270,17 +393036,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262302] = 8, - ACTIONS(6208), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6414), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6416), 1, - sym__quoted_content_i_heredoc_double, - STATE(5739), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_single, + STATE(5459), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393289,17 +393055,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262329] = 8, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6418), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(6420), 1, - sym__quoted_content_i_heredoc_single, - STATE(5741), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_single, + STATE(5216), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393308,17 +393074,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262356] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6422), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6424), 1, - sym__quoted_content_i_single, - STATE(5743), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5316), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393327,17 +393093,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262383] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6426), 1, anon_sym_DQUOTE, ACTIONS(6428), 1, sym__quoted_content_i_double, - STATE(5745), 1, + STATE(5461), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393346,17 +393112,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262410] = 8, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6430), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6432), 1, - sym__quoted_content_i_slash, - STATE(5757), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_heredoc_double, + STATE(5926), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393365,17 +393131,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262437] = 8, - ACTIONS(6376), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6434), 1, - anon_sym_PIPE, + anon_sym_DQUOTE, ACTIONS(6436), 1, - sym__quoted_content_i_bar, - STATE(5759), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_double, + STATE(5218), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393384,17 +393150,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262464] = 8, - ACTIONS(6384), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6438), 1, - anon_sym_GT, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6440), 1, - sym__quoted_content_i_angle, - STATE(5762), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_heredoc_double, + STATE(5091), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393403,17 +393169,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262491] = 8, - ACTIONS(6392), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6442), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6444), 1, - sym__quoted_content_i_square, - STATE(5764), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_heredoc_double, + STATE(5473), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393422,17 +393188,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262518] = 8, - ACTIONS(6400), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6446), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6448), 1, - sym__quoted_content_i_curly, - STATE(5772), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_heredoc_single, + STATE(5475), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393441,17 +393207,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262545] = 8, - ACTIONS(6408), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6450), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(6452), 1, - sym__quoted_content_i_parenthesis, - STATE(5774), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_single, + STATE(5850), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393460,17 +393226,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262572] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6454), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6456), 1, sym__quoted_content_i_heredoc_double, - STATE(5859), 1, + STATE(5305), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393479,17 +393245,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262599] = 8, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6458), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(6460), 1, - sym__quoted_content_i_heredoc_single, - STATE(5875), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_single, + STATE(5484), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393498,17 +393264,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262626] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6462), 1, anon_sym_SQUOTE, ACTIONS(6464), 1, sym__quoted_content_i_single, - STATE(5877), 1, + STATE(5233), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393517,17 +393283,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262653] = 8, - ACTIONS(6200), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6466), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(6468), 1, - sym__quoted_content_i_double, - STATE(5879), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_slash, + STATE(5075), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393536,17 +393302,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262680] = 8, - ACTIONS(6368), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6470), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(6472), 1, - sym__quoted_content_i_slash, - STATE(5891), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_bar, + STATE(5084), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393555,17 +393321,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262707] = 8, - ACTIONS(6376), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6474), 1, - anon_sym_PIPE, + anon_sym_DQUOTE, ACTIONS(6476), 1, - sym__quoted_content_i_bar, - STATE(5893), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_double, + STATE(5486), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393574,17 +393340,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262734] = 8, - ACTIONS(6384), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6478), 1, - anon_sym_GT, + anon_sym_RPAREN, ACTIONS(6480), 1, - sym__quoted_content_i_angle, - STATE(5895), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_parenthesis, + STATE(5864), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393593,17 +393359,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262761] = 8, - ACTIONS(6392), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6482), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6484), 1, - sym__quoted_content_i_square, - STATE(5911), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_heredoc_double, + STATE(5506), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393612,17 +393378,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262788] = 8, - ACTIONS(6400), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6486), 1, - anon_sym_RBRACE, + anon_sym_GT, ACTIONS(6488), 1, - sym__quoted_content_i_curly, - STATE(5913), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_angle, + STATE(5114), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393631,17 +393397,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262815] = 8, - ACTIONS(6408), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6490), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(6492), 1, - sym__quoted_content_i_parenthesis, - STATE(5915), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_square, + STATE(5118), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393650,17 +393416,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262842] = 8, - ACTIONS(6208), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6494), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, ACTIONS(6496), 1, - sym__quoted_content_i_heredoc_double, - STATE(5924), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_curly, + STATE(5120), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393669,17 +393435,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262869] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6498), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6500), 1, sym__quoted_content_i_heredoc_single, - STATE(5921), 1, + STATE(5609), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393688,17 +393454,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262896] = 8, - ACTIONS(6184), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6502), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(6504), 1, - sym__quoted_content_i_single, - STATE(5848), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_curly, + STATE(5866), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393707,17 +393473,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262923] = 8, - ACTIONS(6200), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6506), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6508), 1, - sym__quoted_content_i_double, - STATE(5846), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_heredoc_single, + STATE(5508), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393726,17 +393492,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262950] = 8, - ACTIONS(6368), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6510), 1, - anon_sym_SLASH, + anon_sym_RBRACK, ACTIONS(6512), 1, - sym__quoted_content_i_slash, - STATE(5783), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_square, + STATE(5868), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393745,17 +393511,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [262977] = 8, - ACTIONS(6376), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6514), 1, - anon_sym_PIPE, + anon_sym_SQUOTE, ACTIONS(6516), 1, - sym__quoted_content_i_bar, - STATE(5780), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_single, + STATE(5510), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393764,17 +393530,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263004] = 8, - ACTIONS(6384), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6518), 1, anon_sym_GT, ACTIONS(6520), 1, sym__quoted_content_i_angle, - STATE(5778), 1, + STATE(5870), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393783,17 +393549,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263031] = 8, - ACTIONS(6392), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6522), 1, - anon_sym_RBRACK, + anon_sym_SLASH, ACTIONS(6524), 1, - sym__quoted_content_i_square, - STATE(5776), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_slash, + STATE(5445), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393802,17 +393568,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263058] = 8, - ACTIONS(6400), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6526), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(6528), 1, - sym__quoted_content_i_curly, - STATE(5747), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_parenthesis, + STATE(5122), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393821,17 +393587,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263085] = 8, - ACTIONS(6408), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6530), 1, - anon_sym_RPAREN, + anon_sym_PIPE, ACTIONS(6532), 1, - sym__quoted_content_i_parenthesis, - STATE(5707), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_bar, + STATE(5443), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393840,17 +393606,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263112] = 8, - ACTIONS(6208), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6534), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_GT, ACTIONS(6536), 1, - sym__quoted_content_i_heredoc_double, - STATE(5680), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_angle, + STATE(5441), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393859,17 +393625,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263139] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6538), 1, anon_sym_DQUOTE, ACTIONS(6540), 1, sym__quoted_content_i_double, - STATE(5260), 1, + STATE(5396), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393878,17 +393644,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263166] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6542), 1, anon_sym_SQUOTE, ACTIONS(6544), 1, sym__quoted_content_i_single, - STATE(5075), 1, + STATE(5392), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393897,17 +393663,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263193] = 8, - ACTIONS(6192), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6546), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RPAREN, ACTIONS(6548), 1, - sym__quoted_content_i_heredoc_single, - STATE(5170), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_parenthesis, + STATE(5723), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393916,17 +393682,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263220] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6550), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6552), 1, sym__quoted_content_i_heredoc_double, - STATE(5198), 1, + STATE(5386), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393935,17 +393701,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263247] = 8, - ACTIONS(6192), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6554), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(6556), 1, - sym__quoted_content_i_heredoc_single, - STATE(5646), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_square, + STATE(5439), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393954,17 +393720,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263274] = 8, - ACTIONS(6184), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6558), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(6560), 1, - sym__quoted_content_i_single, - STATE(5559), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_curly, + STATE(5437), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393973,17 +393739,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263301] = 8, - ACTIONS(6400), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6562), 1, anon_sym_RBRACE, ACTIONS(6564), 1, sym__quoted_content_i_curly, - STATE(5404), 1, + STATE(5153), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -393992,17 +393758,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263328] = 8, - ACTIONS(6200), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6566), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6568), 1, - sym__quoted_content_i_double, - STATE(5556), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_parenthesis, + STATE(5435), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394011,17 +393777,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263355] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6570), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6572), 1, - sym__quoted_content_i_single, - STATE(5286), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5512), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394030,17 +393796,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263382] = 8, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6574), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6576), 1, - sym__quoted_content_i_slash, - STATE(5100), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_heredoc_double, + STATE(5530), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394049,17 +393815,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263409] = 8, - ACTIONS(6376), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6578), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6580), 1, - sym__quoted_content_i_bar, - STATE(5113), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_heredoc_single, + STATE(5533), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394068,17 +393834,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263436] = 8, - ACTIONS(6384), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6582), 1, - anon_sym_GT, + anon_sym_PIPE, ACTIONS(6584), 1, - sym__quoted_content_i_angle, - STATE(5201), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_bar, + STATE(5872), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394087,17 +393853,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263463] = 8, - ACTIONS(6392), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6586), 1, - anon_sym_RBRACK, + anon_sym_SLASH, ACTIONS(6588), 1, - sym__quoted_content_i_square, - STATE(5203), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_slash, + STATE(5571), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394106,17 +393872,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263490] = 8, - ACTIONS(6400), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6590), 1, - anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(6592), 1, - sym__quoted_content_i_curly, - STATE(5206), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_bar, + STATE(5573), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394125,17 +393891,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263517] = 8, - ACTIONS(6408), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6594), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(6596), 1, - sym__quoted_content_i_parenthesis, - STATE(5211), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_angle, + STATE(5614), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394144,17 +393910,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263544] = 8, - ACTIONS(6192), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6598), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(6600), 1, - sym__quoted_content_i_heredoc_single, - STATE(5315), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_square, + STATE(5617), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394163,17 +393929,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263571] = 8, - ACTIONS(6208), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6602), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(6604), 1, - sym__quoted_content_i_heredoc_double, - STATE(5114), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_slash, + STATE(5874), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394182,17 +393948,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263598] = 8, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6606), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(6608), 1, - sym__quoted_content_i_heredoc_single, - STATE(5116), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_single, + STATE(5535), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394201,17 +393967,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263625] = 8, - ACTIONS(6208), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6610), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RBRACE, ACTIONS(6612), 1, - sym__quoted_content_i_heredoc_double, - STATE(5313), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_curly, + STATE(5638), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394220,17 +393986,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263652] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6614), 1, anon_sym_DQUOTE, ACTIONS(6616), 1, sym__quoted_content_i_double, - STATE(5120), 1, + STATE(5538), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394239,17 +394005,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263679] = 8, - ACTIONS(6200), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6618), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6620), 1, - sym__quoted_content_i_double, - STATE(5303), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_parenthesis, + STATE(5640), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394258,17 +394024,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263706] = 8, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6622), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6624), 1, - sym__quoted_content_i_slash, - STATE(5306), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_heredoc_double, + STATE(5552), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394277,17 +394043,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263733] = 8, - ACTIONS(6376), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6626), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6628), 1, - sym__quoted_content_i_bar, - STATE(5350), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_heredoc_single, + STATE(5564), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394296,17 +394062,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263760] = 8, - ACTIONS(6384), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6630), 1, - anon_sym_GT, + anon_sym_SQUOTE, ACTIONS(6632), 1, - sym__quoted_content_i_angle, - STATE(5360), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_single, + STATE(5568), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394315,17 +394081,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263787] = 8, - ACTIONS(6392), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6634), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(6636), 1, - sym__quoted_content_i_square, - STATE(5392), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_double, + STATE(5570), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394334,17 +394100,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263814] = 8, - ACTIONS(6400), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6638), 1, anon_sym_RBRACE, ACTIONS(6640), 1, sym__quoted_content_i_curly, - STATE(5399), 1, + STATE(5725), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394353,17 +394119,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263841] = 8, - ACTIONS(6408), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6642), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6644), 1, - sym__quoted_content_i_parenthesis, - STATE(5410), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_heredoc_double, + STATE(5593), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394372,17 +394138,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263868] = 8, - ACTIONS(6200), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6646), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(6648), 1, - sym__quoted_content_i_double, - STATE(5903), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_square, + STATE(5727), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394391,17 +394157,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263895] = 8, - ACTIONS(6208), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6650), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_GT, ACTIONS(6652), 1, - sym__quoted_content_i_heredoc_double, - STATE(5426), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_angle, + STATE(5729), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394410,17 +394176,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263922] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6654), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6656), 1, sym__quoted_content_i_heredoc_single, - STATE(5428), 1, + STATE(5595), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394429,17 +394195,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263949] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6658), 1, anon_sym_SQUOTE, ACTIONS(6660), 1, sym__quoted_content_i_single, - STATE(5502), 1, + STATE(5597), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394448,17 +394214,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [263976] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6662), 1, anon_sym_DQUOTE, ACTIONS(6664), 1, sym__quoted_content_i_double, - STATE(5550), 1, + STATE(5414), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394467,17 +394233,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264003] = 8, - ACTIONS(6192), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6666), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6668), 1, - sym__quoted_content_i_heredoc_single, - STATE(5284), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_double, + STATE(5599), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394486,17 +394252,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264030] = 8, - ACTIONS(6368), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6670), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(6672), 1, - sym__quoted_content_i_slash, - STATE(5789), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_bar, + STATE(5731), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394505,17 +394271,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264057] = 8, - ACTIONS(6376), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6674), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6676), 1, - sym__quoted_content_i_bar, - STATE(5793), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_heredoc_double, + STATE(5607), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394524,17 +394290,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264084] = 8, - ACTIONS(6384), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6678), 1, - anon_sym_GT, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6680), 1, - sym__quoted_content_i_angle, - STATE(5797), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_heredoc_double, + STATE(5380), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394543,17 +394309,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264111] = 8, - ACTIONS(6392), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6682), 1, - anon_sym_RBRACK, + anon_sym_SLASH, ACTIONS(6684), 1, - sym__quoted_content_i_square, - STATE(5799), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_slash, + STATE(5733), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394562,17 +394328,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264138] = 8, - ACTIONS(6400), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6686), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6688), 1, - sym__quoted_content_i_curly, - STATE(5819), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_heredoc_single, + STATE(5378), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394581,17 +394347,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264165] = 8, - ACTIONS(6208), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6690), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6692), 1, - sym__quoted_content_i_heredoc_double, - STATE(5282), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_single, + STATE(5367), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394600,17 +394366,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264192] = 8, - ACTIONS(6408), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6694), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(6696), 1, - sym__quoted_content_i_parenthesis, - STATE(5823), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_single, + STATE(5376), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394619,17 +394385,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264219] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6698), 1, anon_sym_DQUOTE, ACTIONS(6700), 1, sym__quoted_content_i_double, - STATE(5273), 1, + STATE(5374), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394638,17 +394404,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264246] = 8, - ACTIONS(6208), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6702), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6704), 1, - sym__quoted_content_i_heredoc_double, - STATE(5935), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_single, + STATE(5612), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394662,12 +394428,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6706), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6708), 1, - sym__quoted_content_i_single, - STATE(5317), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_single, + STATE(5283), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394681,12 +394447,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6710), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6712), 1, - sym__quoted_content_i_single, - STATE(5941), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_single, + STATE(5365), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394695,16 +394461,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264327] = 8, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6714), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6716), 1, - sym__quoted_content_i_double, - STATE(5944), 1, - aux_sym__quoted_i_double_repeat1, + sym__quoted_content_i_single, + STATE(5198), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -394714,17 +394480,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264354] = 8, - ACTIONS(6408), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6718), 1, anon_sym_RPAREN, ACTIONS(6720), 1, sym__quoted_content_i_parenthesis, - STATE(5651), 1, + STATE(5255), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394733,17 +394499,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264381] = 8, - ACTIONS(6400), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6722), 1, anon_sym_RBRACE, ACTIONS(6724), 1, sym__quoted_content_i_curly, - STATE(5649), 1, + STATE(5253), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394752,17 +394518,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264408] = 8, - ACTIONS(6392), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6726), 1, anon_sym_RBRACK, ACTIONS(6728), 1, sym__quoted_content_i_square, - STATE(5645), 1, + STATE(5248), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394771,17 +394537,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264435] = 8, - ACTIONS(6384), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6730), 1, anon_sym_GT, ACTIONS(6732), 1, sym__quoted_content_i_angle, - STATE(5072), 1, + STATE(5241), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394790,17 +394556,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264462] = 8, - ACTIONS(6376), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6734), 1, anon_sym_PIPE, ACTIONS(6736), 1, sym__quoted_content_i_bar, - STATE(5617), 1, + STATE(5237), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394809,17 +394575,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264489] = 8, - ACTIONS(6368), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6738), 1, anon_sym_SLASH, ACTIONS(6740), 1, sym__quoted_content_i_slash, - STATE(5571), 1, + STATE(5234), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394833,12 +394599,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6742), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6744), 1, - sym__quoted_content_i_single, - STATE(5268), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_single, + STATE(5928), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394847,17 +394613,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264543] = 8, - ACTIONS(6368), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6746), 1, - anon_sym_SLASH, + anon_sym_SQUOTE, ACTIONS(6748), 1, - sym__quoted_content_i_slash, - STATE(5159), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_single, + STATE(5106), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394866,17 +394632,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264570] = 8, - ACTIONS(6376), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6750), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6752), 1, - sym__quoted_content_i_bar, - STATE(5157), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_heredoc_single, + STATE(5312), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394885,17 +394651,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264597] = 8, - ACTIONS(6384), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6754), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(6756), 1, - sym__quoted_content_i_angle, - STATE(5093), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_curly, + STATE(5671), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394904,17 +394670,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264624] = 8, - ACTIONS(6392), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6758), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(6760), 1, - sym__quoted_content_i_square, - STATE(5091), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_double, + STATE(5240), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394923,17 +394689,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264651] = 8, - ACTIONS(6368), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6762), 1, - anon_sym_SLASH, + anon_sym_RBRACK, ACTIONS(6764), 1, - sym__quoted_content_i_slash, - STATE(5874), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_square, + STATE(5674), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394942,17 +394708,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264678] = 8, - ACTIONS(6376), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6766), 1, - anon_sym_PIPE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6768), 1, - sym__quoted_content_i_bar, - STATE(5872), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_heredoc_double, + STATE(5347), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394961,17 +394727,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264705] = 8, - ACTIONS(6384), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6770), 1, - anon_sym_GT, + anon_sym_DQUOTE, ACTIONS(6772), 1, - sym__quoted_content_i_angle, - STATE(5870), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_double, + STATE(5110), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394980,17 +394746,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264732] = 8, - ACTIONS(6392), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6774), 1, - anon_sym_RBRACK, + anon_sym_GT, ACTIONS(6776), 1, - sym__quoted_content_i_square, - STATE(5868), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_angle, + STATE(5680), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -394999,17 +394765,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264759] = 8, - ACTIONS(6400), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6778), 1, - anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(6780), 1, - sym__quoted_content_i_curly, - STATE(5866), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_bar, + STATE(5686), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395018,17 +394784,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264786] = 8, - ACTIONS(6408), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6782), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE, ACTIONS(6784), 1, - sym__quoted_content_i_parenthesis, - STATE(5864), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_double, + STATE(5340), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395037,16 +394803,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264813] = 8, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6786), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6788), 1, - sym__quoted_content_i_double, - STATE(5252), 1, - aux_sym__quoted_i_double_repeat1, + sym__quoted_content_i_single, + STATE(5278), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -395056,17 +394822,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264840] = 8, - ACTIONS(6408), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6790), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(6792), 1, - sym__quoted_content_i_parenthesis, - STATE(5160), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_single, + STATE(5331), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395075,17 +394841,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264867] = 8, - ACTIONS(6208), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6794), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(6796), 1, - sym__quoted_content_i_heredoc_double, - STATE(5811), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_slash, + STATE(5691), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395094,17 +394860,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264894] = 8, - ACTIONS(6192), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6798), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6800), 1, - sym__quoted_content_i_heredoc_single, - STATE(5809), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_heredoc_double, + STATE(5310), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395113,17 +394879,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264921] = 8, - ACTIONS(6184), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6802), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(6804), 1, - sym__quoted_content_i_single, - STATE(5807), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_slash, + STATE(5262), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395132,17 +394898,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264948] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6806), 1, anon_sym_DQUOTE, ACTIONS(6808), 1, sym__quoted_content_i_double, - STATE(5805), 1, + STATE(5903), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395151,17 +394917,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [264975] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6810), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6812), 1, - sym__quoted_content_i_single, - STATE(5245), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5921), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395170,16 +394936,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265002] = 8, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6814), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6816), 1, - sym__quoted_content_i_double, - STATE(5236), 1, - aux_sym__quoted_i_double_repeat1, + sym__quoted_content_i_single, + STATE(5923), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -395189,17 +394955,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265029] = 8, - ACTIONS(6400), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6818), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(6820), 1, - sym__quoted_content_i_curly, - STATE(5082), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_double, + STATE(5280), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395213,12 +394979,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6822), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6824), 1, - sym__quoted_content_i_single, - STATE(5232), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_single, + STATE(5925), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395227,17 +394993,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265083] = 8, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6826), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6828), 1, - sym__quoted_content_i_slash, - STATE(5733), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_heredoc_double, + STATE(5940), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395246,17 +395012,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265110] = 8, - ACTIONS(6376), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6830), 1, anon_sym_PIPE, ACTIONS(6832), 1, sym__quoted_content_i_bar, - STATE(5731), 1, + STATE(5264), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395265,17 +395031,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265137] = 8, - ACTIONS(6384), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6834), 1, - anon_sym_GT, + anon_sym_RPAREN, ACTIONS(6836), 1, - sym__quoted_content_i_angle, - STATE(5729), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_parenthesis, + STATE(5917), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395284,17 +395050,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265164] = 8, - ACTIONS(6392), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6838), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(6840), 1, - sym__quoted_content_i_square, - STATE(5727), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_curly, + STATE(5915), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395303,17 +395069,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265191] = 8, - ACTIONS(6400), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6842), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, ACTIONS(6844), 1, - sym__quoted_content_i_curly, - STATE(5725), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_double, + STATE(5373), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395322,17 +395088,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265218] = 8, - ACTIONS(6408), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6846), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(6848), 1, - sym__quoted_content_i_parenthesis, - STATE(5723), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_square, + STATE(5913), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395341,17 +395107,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265245] = 8, - ACTIONS(6200), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6850), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(6852), 1, - sym__quoted_content_i_double, - STATE(5216), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_angle, + STATE(5911), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395360,17 +395126,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265272] = 8, - ACTIONS(6208), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6854), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_PIPE, ACTIONS(6856), 1, - sym__quoted_content_i_heredoc_double, - STATE(5756), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_bar, + STATE(5902), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395379,17 +395145,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265299] = 8, - ACTIONS(6192), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6858), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SLASH, ACTIONS(6860), 1, - sym__quoted_content_i_heredoc_single, - STATE(5717), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_slash, + STATE(5899), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395398,17 +395164,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265326] = 8, - ACTIONS(6368), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6862), 1, anon_sym_SLASH, ACTIONS(6864), 1, sym__quoted_content_i_slash, - STATE(5636), 1, + STATE(5087), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395417,17 +395183,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265353] = 8, - ACTIONS(6184), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6866), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(6868), 1, - sym__quoted_content_i_single, - STATE(5715), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_slash, + STATE(5301), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395436,17 +395202,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265380] = 8, - ACTIONS(6200), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6870), 1, - anon_sym_DQUOTE, + anon_sym_PIPE, ACTIONS(6872), 1, - sym__quoted_content_i_double, - STATE(5713), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_bar, + STATE(5299), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395455,17 +395221,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265407] = 8, - ACTIONS(6208), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6874), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_GT, ACTIONS(6876), 1, - sym__quoted_content_i_heredoc_double, - STATE(5668), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_angle, + STATE(5297), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395474,17 +395240,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265434] = 8, - ACTIONS(6192), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6878), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACK, ACTIONS(6880), 1, - sym__quoted_content_i_heredoc_single, - STATE(5666), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_square, + STATE(5295), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395493,17 +395259,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265461] = 8, - ACTIONS(6184), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6882), 1, - anon_sym_SQUOTE, + anon_sym_RBRACE, ACTIONS(6884), 1, - sym__quoted_content_i_single, - STATE(5664), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_curly, + STATE(5293), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395512,17 +395278,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265488] = 8, - ACTIONS(6200), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6886), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6888), 1, - sym__quoted_content_i_double, - STATE(5662), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_parenthesis, + STATE(5291), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395531,17 +395297,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265515] = 8, - ACTIONS(6184), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6890), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6892), 1, - sym__quoted_content_i_single, - STATE(5213), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_angle, + STATE(5266), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395550,17 +395316,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265542] = 8, - ACTIONS(6200), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6894), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(6896), 1, - sym__quoted_content_i_double, - STATE(5196), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_square, + STATE(5330), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395569,17 +395335,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265569] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6898), 1, anon_sym_DQUOTE, ACTIONS(6900), 1, sym__quoted_content_i_double, - STATE(5564), 1, + STATE(5619), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395588,17 +395354,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265596] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6902), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6904), 1, - sym__quoted_content_i_single, - STATE(5536), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5200), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395607,17 +395373,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265623] = 8, - ACTIONS(6192), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6906), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACE, ACTIONS(6908), 1, - sym__quoted_content_i_heredoc_single, - STATE(5533), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_curly, + STATE(5349), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395626,17 +395392,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265650] = 8, - ACTIONS(6208), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6910), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RPAREN, ACTIONS(6912), 1, - sym__quoted_content_i_heredoc_double, - STATE(5530), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_parenthesis, + STATE(5351), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395645,17 +395411,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265677] = 8, - ACTIONS(6200), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6914), 1, - anon_sym_DQUOTE, + anon_sym_RPAREN, ACTIONS(6916), 1, - sym__quoted_content_i_double, - STATE(5508), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_parenthesis, + STATE(5745), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395664,17 +395430,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265704] = 8, - ACTIONS(6368), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6918), 1, - anon_sym_SLASH, + anon_sym_DQUOTE, ACTIONS(6920), 1, - sym__quoted_content_i_slash, - STATE(5589), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_double, + STATE(5885), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395683,17 +395449,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265731] = 8, - ACTIONS(6376), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6922), 1, - anon_sym_PIPE, + anon_sym_SLASH, ACTIONS(6924), 1, - sym__quoted_content_i_bar, - STATE(5587), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_slash, + STATE(5697), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395702,17 +395468,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265758] = 8, - ACTIONS(6384), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6926), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(6928), 1, - sym__quoted_content_i_angle, - STATE(5585), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_curly, + STATE(5797), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395721,17 +395487,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265785] = 8, - ACTIONS(6392), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6930), 1, anon_sym_RBRACK, ACTIONS(6932), 1, sym__quoted_content_i_square, - STATE(5583), 1, + STATE(5823), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395740,17 +395506,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265812] = 8, - ACTIONS(6400), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6934), 1, - anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(6936), 1, - sym__quoted_content_i_curly, - STATE(5581), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_bar, + STATE(5699), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395759,17 +395525,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265839] = 8, - ACTIONS(6408), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6938), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(6940), 1, - sym__quoted_content_i_parenthesis, - STATE(5579), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_single, + STATE(5883), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395778,17 +395544,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265866] = 8, - ACTIONS(6184), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6942), 1, - anon_sym_SQUOTE, + anon_sym_GT, ACTIONS(6944), 1, - sym__quoted_content_i_single, - STATE(5194), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_angle, + STATE(5833), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395797,17 +395563,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265893] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6946), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6948), 1, sym__quoted_content_i_heredoc_double, - STATE(5524), 1, + STATE(5228), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395816,17 +395582,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265920] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6950), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6952), 1, sym__quoted_content_i_heredoc_single, - STATE(5522), 1, + STATE(5226), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395835,17 +395601,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265947] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(6954), 1, anon_sym_SQUOTE, ACTIONS(6956), 1, sym__quoted_content_i_single, - STATE(5520), 1, + STATE(5224), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395854,17 +395620,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [265974] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(6958), 1, anon_sym_DQUOTE, ACTIONS(6960), 1, sym__quoted_content_i_double, - STATE(5518), 1, + STATE(5222), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395873,17 +395639,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266001] = 8, - ACTIONS(6368), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(6962), 1, - anon_sym_SLASH, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(6964), 1, - sym__quoted_content_i_slash, - STATE(5572), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_heredoc_single, + STATE(5881), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395892,17 +395658,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266028] = 8, - ACTIONS(6376), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(6966), 1, anon_sym_PIPE, ACTIONS(6968), 1, sym__quoted_content_i_bar, - STATE(5563), 1, + STATE(5839), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395911,17 +395677,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266055] = 8, - ACTIONS(6384), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(6970), 1, anon_sym_GT, ACTIONS(6972), 1, sym__quoted_content_i_angle, - STATE(5511), 1, + STATE(5701), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395930,17 +395696,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266082] = 8, - ACTIONS(6408), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(6974), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(6976), 1, - sym__quoted_content_i_parenthesis, - STATE(5349), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_square, + STATE(5703), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395949,17 +395715,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266109] = 8, - ACTIONS(6400), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(6978), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(6980), 1, - sym__quoted_content_i_curly, - STATE(5330), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_heredoc_double, + STATE(5879), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395968,17 +395734,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266136] = 8, - ACTIONS(6392), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6982), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(6984), 1, - sym__quoted_content_i_square, - STATE(5328), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_curly, + STATE(5705), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -395987,17 +395753,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266163] = 8, - ACTIONS(6384), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(6986), 1, - anon_sym_GT, + anon_sym_SLASH, ACTIONS(6988), 1, - sym__quoted_content_i_angle, - STATE(5326), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_slash, + STATE(5834), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396006,17 +395772,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266190] = 8, - ACTIONS(6376), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6990), 1, - anon_sym_PIPE, + anon_sym_RPAREN, ACTIONS(6992), 1, - sym__quoted_content_i_bar, - STATE(5197), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_parenthesis, + STATE(5817), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396025,17 +395791,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266217] = 8, - ACTIONS(6368), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(6994), 1, - anon_sym_SLASH, + anon_sym_RPAREN, ACTIONS(6996), 1, - sym__quoted_content_i_slash, - STATE(5278), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_parenthesis, + STATE(5716), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396044,17 +395810,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266244] = 8, - ACTIONS(6368), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(6998), 1, - anon_sym_SLASH, + anon_sym_RBRACE, ACTIONS(7000), 1, - sym__quoted_content_i_slash, - STATE(5445), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_curly, + STATE(5815), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396063,17 +395829,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266271] = 8, - ACTIONS(6376), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(7002), 1, - anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(7004), 1, - sym__quoted_content_i_bar, - STATE(5443), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_square, + STATE(5813), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396082,17 +395848,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266298] = 8, - ACTIONS(6384), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(7006), 1, - anon_sym_GT, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7008), 1, - sym__quoted_content_i_angle, - STATE(5441), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_heredoc_double, + STATE(5408), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396101,17 +395867,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266325] = 8, - ACTIONS(6392), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(7010), 1, - anon_sym_RBRACK, + anon_sym_GT, ACTIONS(7012), 1, - sym__quoted_content_i_square, - STATE(5439), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_angle, + STATE(5802), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396120,17 +395886,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266352] = 8, - ACTIONS(6400), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(7014), 1, - anon_sym_RBRACE, + anon_sym_PIPE, ACTIONS(7016), 1, - sym__quoted_content_i_curly, - STATE(5437), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_bar, + STATE(5799), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396139,17 +395905,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266379] = 8, - ACTIONS(6408), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(7018), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7020), 1, - sym__quoted_content_i_parenthesis, - STATE(5435), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_heredoc_double, + STATE(5761), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396158,17 +395924,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266406] = 8, - ACTIONS(6376), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(7022), 1, anon_sym_PIPE, ACTIONS(7024), 1, sym__quoted_content_i_bar, - STATE(5322), 1, + STATE(5102), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396177,17 +395943,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266433] = 8, - ACTIONS(6208), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(7026), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SLASH, ACTIONS(7028), 1, - sym__quoted_content_i_heredoc_double, - STATE(5792), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_slash, + STATE(5791), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396196,17 +395962,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266460] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(7030), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7032), 1, sym__quoted_content_i_heredoc_single, - STATE(5425), 1, + STATE(5764), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396215,17 +395981,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266487] = 8, - ACTIONS(6384), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(7034), 1, anon_sym_GT, ACTIONS(7036), 1, sym__quoted_content_i_angle, - STATE(5151), 1, + STATE(5108), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396234,17 +396000,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266514] = 8, - ACTIONS(6392), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(7038), 1, anon_sym_RBRACK, ACTIONS(7040), 1, sym__quoted_content_i_square, - STATE(5359), 1, + STATE(5124), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396253,17 +396019,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266541] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7042), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(7044), 1, - sym__quoted_content_i_single, - STATE(5703), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5302), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396272,17 +396038,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266568] = 8, - ACTIONS(6392), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7046), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(7048), 1, - sym__quoted_content_i_square, - STATE(5489), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_double, + STATE(5774), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396291,17 +396057,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266595] = 8, - ACTIONS(6400), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7050), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(7052), 1, - sym__quoted_content_i_curly, - STATE(5487), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_single, + STATE(5772), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396310,17 +396076,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266622] = 8, - ACTIONS(6208), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7054), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE, ACTIONS(7056), 1, - sym__quoted_content_i_heredoc_double, - STATE(5380), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_single, + STATE(5286), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396329,17 +396095,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266649] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(7058), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7060), 1, sym__quoted_content_i_heredoc_single, - STATE(5378), 1, + STATE(5763), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396348,17 +396114,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266676] = 8, - ACTIONS(6184), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(7062), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7064), 1, - sym__quoted_content_i_single, - STATE(5376), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_double, + STATE(5759), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396367,16 +396133,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266703] = 8, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7066), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(7068), 1, - sym__quoted_content_i_double, - STATE(5374), 1, - aux_sym__quoted_i_double_repeat1, + sym__quoted_content_i_single, + STATE(5783), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -396386,17 +396152,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266730] = 8, - ACTIONS(6408), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(7070), 1, anon_sym_RPAREN, ACTIONS(7072), 1, sym__quoted_content_i_parenthesis, - STATE(5464), 1, + STATE(5737), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396405,17 +396171,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266757] = 8, - ACTIONS(6200), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(7074), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(7076), 1, - sym__quoted_content_i_double, - STATE(5188), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_slash, + STATE(5149), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396424,17 +396190,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266784] = 8, - ACTIONS(6368), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(7078), 1, - anon_sym_SLASH, + anon_sym_PIPE, ACTIONS(7080), 1, - sym__quoted_content_i_slash, - STATE(5301), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_bar, + STATE(5147), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396443,17 +396209,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266811] = 8, - ACTIONS(6376), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(7082), 1, - anon_sym_PIPE, + anon_sym_GT, ACTIONS(7084), 1, - sym__quoted_content_i_bar, - STATE(5299), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_angle, + STATE(5145), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396462,17 +396228,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266838] = 8, - ACTIONS(6384), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(7086), 1, - anon_sym_GT, + anon_sym_RBRACK, ACTIONS(7088), 1, - sym__quoted_content_i_angle, - STATE(5297), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_square, + STATE(5143), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396481,17 +396247,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266865] = 8, - ACTIONS(6392), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(7090), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(7092), 1, - sym__quoted_content_i_square, - STATE(5295), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_curly, + STATE(5141), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396500,17 +396266,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266892] = 8, - ACTIONS(6400), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(7094), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(7096), 1, - sym__quoted_content_i_curly, - STATE(5293), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_parenthesis, + STATE(5139), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396519,17 +396285,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266919] = 8, - ACTIONS(6408), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6326), 1, sym_escape_sequence, ACTIONS(7098), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(7100), 1, - sym__quoted_content_i_parenthesis, - STATE(5291), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_curly, + STATE(5735), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396538,17 +396304,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266946] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7102), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(7104), 1, - sym__quoted_content_i_single, - STATE(5180), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5785), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396557,17 +396323,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [266973] = 8, - ACTIONS(6200), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, ACTIONS(7106), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(7108), 1, - sym__quoted_content_i_double, - STATE(5167), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_square, + STATE(5718), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396576,17 +396342,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267000] = 8, - ACTIONS(6200), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6350), 1, sym_escape_sequence, ACTIONS(7110), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(7112), 1, - sym__quoted_content_i_double, - STATE(5413), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + sym__quoted_content_i_angle, + STATE(5715), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396595,17 +396361,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267027] = 8, - ACTIONS(6208), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6342), 1, sym_escape_sequence, ACTIONS(7114), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_PIPE, ACTIONS(7116), 1, - sym__quoted_content_i_heredoc_double, - STATE(5228), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_bar, + STATE(5709), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396614,17 +396380,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267054] = 8, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7118), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(7120), 1, - sym__quoted_content_i_heredoc_single, - STATE(5226), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + sym__quoted_content_i_single, + STATE(5208), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396633,17 +396399,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267081] = 8, - ACTIONS(6184), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, ACTIONS(7122), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(7124), 1, - sym__quoted_content_i_single, - STATE(5165), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_slash, + STATE(5707), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396652,17 +396418,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267108] = 8, - ACTIONS(6184), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7126), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(7128), 1, - sym__quoted_content_i_single, - STATE(5224), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_double, + STATE(5944), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396671,17 +396437,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267135] = 8, - ACTIONS(6408), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, ACTIONS(7130), 1, anon_sym_RPAREN, ACTIONS(7132), 1, sym__quoted_content_i_parenthesis, - STATE(5208), 1, + STATE(5151), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396690,16 +396456,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267162] = 8, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7134), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(7136), 1, - sym__quoted_content_i_double, - STATE(5222), 1, - aux_sym__quoted_i_double_repeat1, + sym__quoted_content_i_single, + STATE(5931), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -396709,17 +396475,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267189] = 8, - ACTIONS(6208), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7138), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(7140), 1, - sym__quoted_content_i_heredoc_double, - STATE(5796), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + sym__quoted_content_i_double, + STATE(5805), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396728,17 +396494,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267216] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(7142), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7144), 1, sym__quoted_content_i_heredoc_single, - STATE(5682), 1, + STATE(5410), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396747,17 +396513,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267243] = 8, - ACTIONS(6184), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(7146), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7148), 1, - sym__quoted_content_i_single, - STATE(5850), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + sym__quoted_content_i_heredoc_double, + STATE(5796), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396766,17 +396532,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267270] = 8, - ACTIONS(6408), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(7150), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7152), 1, - sym__quoted_content_i_parenthesis, - STATE(5139), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + sym__quoted_content_i_heredoc_single, + STATE(5682), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396785,17 +396551,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267297] = 8, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7154), 1, anon_sym_DQUOTE, ACTIONS(7156), 1, sym__quoted_content_i_double, - STATE(5083), 1, + STATE(5076), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396804,17 +396570,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267324] = 8, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7158), 1, anon_sym_SQUOTE, ACTIONS(7160), 1, sym__quoted_content_i_single, - STATE(5085), 1, + STATE(5078), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396823,17 +396589,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267351] = 8, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(7162), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7164), 1, sym__quoted_content_i_heredoc_single, - STATE(5087), 1, + STATE(5080), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396842,17 +396608,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267378] = 8, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(7166), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7168), 1, sym__quoted_content_i_heredoc_double, - STATE(5089), 1, + STATE(5082), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396861,17 +396627,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267405] = 8, - ACTIONS(6400), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7170), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(7172), 1, - sym__quoted_content_i_curly, - STATE(5141), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + sym__quoted_content_i_single, + STATE(5412), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396880,17 +396646,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267432] = 8, - ACTIONS(6392), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7174), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE, ACTIONS(7176), 1, - sym__quoted_content_i_square, - STATE(5143), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + sym__quoted_content_i_double, + STATE(5650), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396899,17 +396665,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267459] = 8, - ACTIONS(6384), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(7178), 1, - anon_sym_GT, + anon_sym_SQUOTE, ACTIONS(7180), 1, - sym__quoted_content_i_angle, - STATE(5145), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + sym__quoted_content_i_single, + STATE(5648), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396918,17 +396684,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267486] = 8, - ACTIONS(6376), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(7182), 1, - anon_sym_PIPE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(7184), 1, - sym__quoted_content_i_bar, - STATE(5147), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + sym__quoted_content_i_heredoc_single, + STATE(5645), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396937,17 +396703,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267513] = 8, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(7186), 1, - anon_sym_SLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7188), 1, - sym__quoted_content_i_slash, - STATE(5149), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + sym__quoted_content_i_heredoc_double, + STATE(5636), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396956,15 +396722,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267540] = 7, - ACTIONS(6408), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7190), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -396973,96 +396739,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [267564] = 7, - ACTIONS(6384), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(7192), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [267588] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7194), 1, - anon_sym_COMMA, - STATE(5738), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(5972), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [267608] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7196), 1, - anon_sym_COMMA, - STATE(5074), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3283), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [267628] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7199), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [267652] = 7, - ACTIONS(6400), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, - sym_escape_sequence, - ACTIONS(7201), 1, - anon_sym_RBRACE, - STATE(5849), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [267676] = 7, - ACTIONS(7203), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7205), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7208), 1, - sym_escape_sequence, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + anon_sym_DQUOTE, + STATE(5606), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397070,70 +396755,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267700] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7213), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [267726] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym__terminator_token1, - ACTIONS(1719), 1, - ts_builtin_sym_end, - ACTIONS(7215), 1, - anon_sym_SEMI, - STATE(441), 1, - sym__terminator, - STATE(1033), 1, - aux_sym__terminator_repeat1, - STATE(5562), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [267752] = 8, + [267588] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(894), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5106), 1, + STATE(5100), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [267778] = 7, - ACTIONS(6200), 1, + [267614] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7219), 1, + ACTIONS(7196), 1, anon_sym_DQUOTE, - STATE(5107), 1, + STATE(5101), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397141,16 +396790,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267802] = 7, - ACTIONS(6400), 1, + [267638] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7201), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7198), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397158,16 +396807,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267826] = 7, - ACTIONS(6200), 1, + [267662] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7219), 1, + ACTIONS(7196), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397175,16 +396824,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267850] = 7, - ACTIONS(6184), 1, + [267686] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7221), 1, + ACTIONS(7200), 1, anon_sym_SQUOTE, - STATE(5109), 1, + STATE(5103), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397192,16 +396841,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267874] = 7, - ACTIONS(6184), 1, + [267710] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7221), 1, + ACTIONS(7200), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397209,16 +396858,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267898] = 7, - ACTIONS(6192), 1, + [267734] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7223), 1, + ACTIONS(7202), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5110), 1, + STATE(5104), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397226,16 +396875,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267922] = 7, - ACTIONS(6192), 1, + [267758] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7223), 1, + ACTIONS(7202), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397243,16 +396892,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267946] = 7, - ACTIONS(6208), 1, + [267782] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7225), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5111), 1, + STATE(5105), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397260,16 +396909,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267970] = 7, - ACTIONS(6208), 1, + [267806] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7225), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397277,16 +396926,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [267994] = 7, - ACTIONS(6392), 1, + [267830] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7227), 1, - anon_sym_RBRACK, - STATE(5851), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7198), 1, + anon_sym_SLASH, + STATE(5417), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397294,16 +396943,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268018] = 7, - ACTIONS(6392), 1, + [267854] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7227), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7206), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397311,16 +396960,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268042] = 7, - ACTIONS(6384), 1, + [267878] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7229), 1, - anon_sym_GT, - STATE(5554), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7206), 1, + anon_sym_PIPE, + STATE(5261), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397328,16 +396977,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268066] = 7, - ACTIONS(6384), 1, + [267902] = 7, + ACTIONS(7208), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7210), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(7213), 1, sym_escape_sequence, - ACTIONS(7229), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397345,34 +396994,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268090] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_RPAREN, - ACTIONS(7231), 1, - aux_sym__terminator_token1, - ACTIONS(7234), 1, - anon_sym_SEMI, - STATE(353), 1, - sym__terminator, - STATE(1029), 1, - aux_sym__terminator_repeat1, - STATE(5701), 1, - aux_sym_source_repeat1, + [267926] = 7, + ACTIONS(6332), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(7216), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268116] = 7, - ACTIONS(6208), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [267950] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7237), 1, + ACTIONS(7218), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397380,14 +397028,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268140] = 8, + [267974] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7239), 1, + ACTIONS(7222), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -397398,33 +397046,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268166] = 7, - ACTIONS(6408), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, - sym_escape_sequence, - ACTIONS(7241), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, - sym_interpolation, - ACTIONS(3), 2, + [268000] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7224), 1, + anon_sym_COMMA, + STATE(5630), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [268190] = 7, - ACTIONS(7243), 1, + ACTIONS(5972), 3, anon_sym_RPAREN, - ACTIONS(7245), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [268020] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(7248), 1, + ACTIONS(6238), 1, sym_escape_sequence, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7226), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397432,16 +397078,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268214] = 7, - ACTIONS(7251), 1, + [268044] = 7, + ACTIONS(7228), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7253), 1, + ACTIONS(7230), 1, anon_sym_POUND_LBRACE, - ACTIONS(7256), 1, + ACTIONS(7233), 1, sym_escape_sequence, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397449,16 +397095,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268238] = 7, - ACTIONS(6368), 1, + [268068] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7259), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7226), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5180), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397466,16 +397112,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268262] = 7, - ACTIONS(6400), 1, + [268092] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7261), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7236), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397483,16 +397129,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268286] = 7, - ACTIONS(7263), 1, - anon_sym_RBRACE, - ACTIONS(7265), 1, + [268116] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(7268), 1, + ACTIONS(6186), 1, sym_escape_sequence, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7236), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5202), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397500,16 +397146,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268310] = 8, + [268140] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1777), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -397518,16 +397164,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268336] = 7, - ACTIONS(6192), 1, + [268166] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7271), 1, + ACTIONS(7238), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397535,52 +397181,69 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268360] = 8, + [268190] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1777), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3925), 1, + ACTIONS(3876), 1, anon_sym_SEMI, STATE(450), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268386] = 8, + [268216] = 7, + ACTIONS(6332), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(7216), 1, + anon_sym_SLASH, + STATE(5416), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [268240] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1777), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268412] = 7, - ACTIONS(6200), 1, + [268266] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7273), 1, + ACTIONS(7240), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397588,16 +397251,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268436] = 7, - ACTIONS(6392), 1, + [268290] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7275), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7242), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397605,16 +397268,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268460] = 7, - ACTIONS(6184), 1, + [268314] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7277), 1, + ACTIONS(7244), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397622,16 +397285,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268484] = 7, - ACTIONS(6192), 1, + [268338] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7279), 1, + ACTIONS(7246), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397639,16 +397302,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268508] = 7, - ACTIONS(6208), 1, + [268362] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7281), 1, + ACTIONS(7248), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397656,16 +397319,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268532] = 7, - ACTIONS(6368), 1, + [268386] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7259), 1, - anon_sym_SLASH, - STATE(5414), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7250), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397673,16 +397336,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268556] = 7, - ACTIONS(6376), 1, + [268410] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(7250), 1, + anon_sym_SQUOTE, + STATE(5206), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [268434] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(7252), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [268458] = 7, + ACTIONS(6340), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7283), 1, + ACTIONS(7242), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5112), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397690,16 +397387,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268580] = 7, - ACTIONS(6208), 1, + [268482] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7285), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7254), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397707,16 +397404,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268604] = 7, - ACTIONS(6208), 1, + [268506] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7285), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5262), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7254), 1, + anon_sym_DQUOTE, + STATE(5620), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397724,16 +397421,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268628] = 7, - ACTIONS(6192), 1, + [268530] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7287), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7256), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397741,16 +397438,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268652] = 7, - ACTIONS(6192), 1, + [268554] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7258), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5421), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [268580] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7287), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5263), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7260), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397758,16 +397473,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268676] = 7, - ACTIONS(6184), 1, + [268604] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7289), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7260), 1, + anon_sym_GT, + STATE(5260), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397775,16 +397490,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268700] = 7, - ACTIONS(6184), 1, + [268628] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1709), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5742), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [268654] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1709), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3936), 1, + anon_sym_SEMI, + STATE(421), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [268680] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7289), 1, - anon_sym_SQUOTE, - STATE(5264), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7262), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397792,16 +397543,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268724] = 7, - ACTIONS(6200), 1, + [268704] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7291), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7262), 1, + anon_sym_RBRACK, + STATE(5259), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397809,16 +397560,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268748] = 7, - ACTIONS(6200), 1, + [268728] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7291), 1, - anon_sym_DQUOTE, - STATE(5620), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7264), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397826,16 +397577,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268772] = 7, - ACTIONS(6376), 1, + [268752] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7283), 1, - anon_sym_PIPE, - STATE(5412), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7264), 1, + anon_sym_RBRACE, + STATE(5258), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397843,16 +397594,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268796] = 7, - ACTIONS(6192), 1, + [268776] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7293), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5933), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7266), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397860,16 +397611,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268820] = 7, - ACTIONS(7295), 1, - anon_sym_RBRACK, - ACTIONS(7297), 1, + [268800] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(7300), 1, + ACTIONS(6350), 1, sym_escape_sequence, - STATE(5124), 1, + ACTIONS(7252), 1, + anon_sym_GT, + STATE(5463), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [268824] = 7, + ACTIONS(6356), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(7268), 1, + anon_sym_RBRACK, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397877,14 +397645,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268844] = 8, + [268848] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7303), 1, + ACTIONS(7270), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -397895,34 +397663,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268870] = 8, + [268874] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7303), 1, + ACTIONS(7270), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [268896] = 7, - ACTIONS(6384), 1, + [268900] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7305), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7272), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397930,16 +397698,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268920] = 7, - ACTIONS(7307), 1, + [268924] = 7, + ACTIONS(7274), 1, anon_sym_SQUOTE, - ACTIONS(7309), 1, + ACTIONS(7276), 1, anon_sym_POUND_LBRACE, - ACTIONS(7312), 1, + ACTIONS(7279), 1, sym_escape_sequence, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397947,16 +397715,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268944] = 7, - ACTIONS(7315), 1, - anon_sym_GT, - ACTIONS(7317), 1, + [268948] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(7320), 1, + ACTIONS(6218), 1, sym_escape_sequence, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7266), 1, + anon_sym_RPAREN, + STATE(5243), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397964,16 +397732,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268968] = 7, - ACTIONS(6368), 1, + [268972] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7323), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7282), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397981,16 +397749,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [268992] = 7, - ACTIONS(6376), 1, + [268996] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7325), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7284), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -397998,16 +397766,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269016] = 7, - ACTIONS(6376), 1, + [269020] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7327), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7286), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398015,16 +397783,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269040] = 7, - ACTIONS(7329), 1, - anon_sym_PIPE, - ACTIONS(7331), 1, + [269044] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(7334), 1, + ACTIONS(6342), 1, sym_escape_sequence, - STATE(5133), 1, + ACTIONS(7288), 1, + anon_sym_PIPE, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398032,16 +397800,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269064] = 7, - ACTIONS(6368), 1, + [269068] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7337), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7290), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398049,16 +397817,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269088] = 7, - ACTIONS(6184), 1, + [269092] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7339), 1, + ACTIONS(7292), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398066,52 +397834,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269112] = 8, + [269116] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1779), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(7341), 1, + ACTIONS(7294), 1, anon_sym_SEMI, STATE(451), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [269138] = 8, + [269142] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1779), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [269164] = 7, - ACTIONS(6408), 1, + [269168] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7343), 1, + ACTIONS(7296), 1, anon_sym_RPAREN, STATE(5181), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398119,16 +397887,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269188] = 7, - ACTIONS(6408), 1, + [269192] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7343), 1, + ACTIONS(7296), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398136,16 +397904,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269212] = 7, - ACTIONS(6400), 1, + [269216] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7345), 1, + ACTIONS(7298), 1, anon_sym_RBRACE, STATE(5182), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398153,16 +397921,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269236] = 7, - ACTIONS(6400), 1, + [269240] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7345), 1, + ACTIONS(7298), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398170,16 +397938,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269260] = 7, - ACTIONS(6392), 1, + [269264] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7347), 1, + ACTIONS(7300), 1, anon_sym_RBRACK, STATE(5183), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398187,16 +397955,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269284] = 7, - ACTIONS(6392), 1, + [269288] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7347), 1, + ACTIONS(7300), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398204,16 +397972,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269308] = 7, - ACTIONS(6384), 1, + [269312] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7349), 1, + ACTIONS(7302), 1, anon_sym_GT, STATE(5184), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398221,16 +397989,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269332] = 7, - ACTIONS(6384), 1, + [269336] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7349), 1, + ACTIONS(7302), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398238,16 +398006,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269356] = 7, - ACTIONS(6376), 1, + [269360] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7351), 1, + ACTIONS(7304), 1, anon_sym_PIPE, STATE(5185), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398255,16 +398023,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269380] = 7, - ACTIONS(6376), 1, + [269384] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7351), 1, + ACTIONS(7304), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398272,16 +398040,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269404] = 7, - ACTIONS(6368), 1, + [269408] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7353), 1, + ACTIONS(7306), 1, anon_sym_SLASH, STATE(5186), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398289,16 +398057,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269428] = 7, - ACTIONS(6368), 1, + [269432] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7353), 1, + ACTIONS(7306), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398306,16 +398074,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269452] = 7, - ACTIONS(7355), 1, - anon_sym_SLASH, - ACTIONS(7357), 1, + [269456] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(7360), 1, + ACTIONS(6358), 1, sym_escape_sequence, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7308), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398323,16 +398091,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269476] = 7, - ACTIONS(6384), 1, + [269480] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7363), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7310), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398340,34 +398108,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269500] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5462), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [269526] = 7, - ACTIONS(6376), 1, + [269504] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7365), 1, - anon_sym_PIPE, - STATE(5132), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7268), 1, + anon_sym_RBRACK, + STATE(5652), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398375,52 +398125,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269550] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3953), 1, - anon_sym_SEMI, - STATE(434), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [269576] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1741), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [269602] = 7, - ACTIONS(6376), 1, + [269528] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7367), 1, - anon_sym_PIPE, - STATE(5927), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7312), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398428,16 +398142,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269626] = 7, - ACTIONS(6376), 1, + [269552] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7367), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7314), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398445,16 +398159,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269650] = 7, - ACTIONS(6368), 1, + [269576] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7369), 1, - anon_sym_SLASH, - STATE(5926), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7312), 1, + anon_sym_RBRACE, + STATE(5179), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398462,16 +398176,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269674] = 7, - ACTIONS(6368), 1, + [269600] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7369), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7316), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398479,16 +398193,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269698] = 7, - ACTIONS(6408), 1, + [269624] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7371), 1, + ACTIONS(7310), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5175), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398496,33 +398210,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269722] = 8, + [269648] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(7373), 1, - aux_sym__terminator_token1, - ACTIONS(7376), 1, - anon_sym_SEMI, - ACTIONS(7379), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, + ACTIONS(7318), 1, + anon_sym_COMMA, + STATE(5158), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - [269748] = 7, - ACTIONS(6200), 1, + aux_sym__terminator_token1, + ACTIONS(3534), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [269668] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7381), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7321), 1, + anon_sym_SQUOTE, + STATE(5355), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -398531,16 +398242,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269772] = 7, - ACTIONS(6184), 1, + [269692] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7383), 1, + ACTIONS(7321), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398548,33 +398259,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269796] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(7385), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, - ACTIONS(3), 2, + [269716] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7323), 1, + anon_sym_COMMA, + STATE(5161), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [269820] = 7, + ACTIONS(3120), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [269736] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7387), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7326), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5356), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398582,67 +398291,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [269844] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7387), 1, - anon_sym_SQUOTE, - STATE(5163), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, + [269760] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1313), 1, + anon_sym_RPAREN, + ACTIONS(7328), 1, + aux_sym__terminator_token1, + ACTIONS(7331), 1, + anon_sym_SEMI, + STATE(353), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(5189), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [269786] = 8, + ACTIONS(5), 1, sym_comment, - [269868] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(7389), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, + ACTIONS(6022), 1, + aux_sym__terminator_token1, + ACTIONS(6028), 1, + anon_sym_RPAREN, + ACTIONS(7334), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, + [269812] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_RPAREN, + ACTIONS(6030), 1, aux_sym__terminator_token1, + ACTIONS(7337), 1, + anon_sym_SEMI, + STATE(486), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [269838] = 8, + ACTIONS(5), 1, sym_comment, - [269892] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(7389), 1, - anon_sym_DQUOTE, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1623), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, STATE(5164), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [269864] = 8, + ACTIONS(5), 1, sym_comment, - [269916] = 7, + ACTIONS(1623), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(7340), 1, + anon_sym_SEMI, + STATE(452), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [269890] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7391), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7326), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398650,16 +398398,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + [269914] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1295), 1, + anon_sym_RPAREN, + ACTIONS(4615), 1, + aux_sym__terminator_token1, + ACTIONS(4618), 1, + anon_sym_SEMI, + STATE(352), 1, + sym__terminator, + STATE(1034), 1, + aux_sym__terminator_repeat1, + STATE(5189), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, [269940] = 7, - ACTIONS(6192), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7293), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7342), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5559), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398672,29 +398438,29 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7393), 1, + ACTIONS(7344), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [269990] = 7, - ACTIONS(6384), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7395), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7346), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398703,15 +398469,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [270014] = 7, - ACTIONS(6392), 1, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7397), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7348), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398720,15 +398486,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [270038] = 7, - ACTIONS(6400), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7399), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7350), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398737,15 +398503,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [270062] = 7, - ACTIONS(6184), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7401), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7352), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398753,16 +398519,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270086] = 7, - ACTIONS(6408), 1, + [270086] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7354), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [270112] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7403), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7342), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398770,31 +398554,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270110] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7405), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3160), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [270130] = 7, - ACTIONS(7408), 1, + [270136] = 7, + ACTIONS(7356), 1, anon_sym_DQUOTE, - ACTIONS(7410), 1, + ACTIONS(7358), 1, anon_sym_POUND_LBRACE, - ACTIONS(7413), 1, + ACTIONS(7361), 1, sym_escape_sequence, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398802,16 +398571,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270154] = 7, - ACTIONS(6200), 1, + [270160] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7416), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7364), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398819,16 +398588,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270178] = 7, - ACTIONS(6184), 1, + [270184] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7418), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7366), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398836,16 +398605,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270202] = 7, - ACTIONS(6408), 1, + [270208] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7420), 1, + ACTIONS(7368), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398853,16 +398622,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270226] = 7, - ACTIONS(6400), 1, + [270232] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7422), 1, + ACTIONS(7370), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398870,16 +398639,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270250] = 7, - ACTIONS(6392), 1, + [270256] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7424), 1, + ACTIONS(7372), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398887,16 +398656,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270274] = 7, - ACTIONS(6384), 1, + [270280] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7426), 1, + ACTIONS(7374), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398904,16 +398673,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270298] = 7, - ACTIONS(6376), 1, + [270304] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7428), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398921,16 +398690,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270322] = 7, - ACTIONS(6368), 1, + [270328] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7430), 1, + ACTIONS(7378), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398938,16 +398707,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270346] = 7, - ACTIONS(6184), 1, + [270352] = 7, + ACTIONS(7380), 1, + anon_sym_RBRACE, + ACTIONS(7382), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(7385), 1, sym_escape_sequence, - ACTIONS(7418), 1, - anon_sym_SQUOTE, - STATE(5175), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398955,16 +398724,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270370] = 7, - ACTIONS(6200), 1, + [270376] = 7, + ACTIONS(7388), 1, + anon_sym_RPAREN, + ACTIONS(7390), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(7393), 1, sym_escape_sequence, - ACTIONS(7432), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -398972,15 +398741,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270394] = 7, - ACTIONS(6200), 1, + [270400] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4297), 1, + anon_sym_RPAREN, + ACTIONS(6038), 1, + aux_sym__terminator_token1, + ACTIONS(7396), 1, + anon_sym_SEMI, + STATE(853), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5189), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [270426] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7432), 1, - anon_sym_DQUOTE, - STATE(5179), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7399), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -398989,16 +398776,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270418] = 7, - ACTIONS(6208), 1, + [270450] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7434), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7401), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399006,16 +398793,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270442] = 7, - ACTIONS(6208), 1, + [270474] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7436), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5932), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7403), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399023,16 +398810,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270466] = 7, - ACTIONS(6184), 1, + [270498] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7438), 1, + ACTIONS(7403), 1, anon_sym_SQUOTE, - STATE(5128), 1, + STATE(5190), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399040,16 +398827,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270490] = 7, - ACTIONS(6200), 1, + [270522] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7440), 1, + ACTIONS(7405), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399057,16 +398844,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270514] = 7, - ACTIONS(6184), 1, + [270546] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7442), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7405), 1, + anon_sym_DQUOTE, + STATE(5191), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399074,16 +398861,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270538] = 7, - ACTIONS(6184), 1, + [270570] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7442), 1, + ACTIONS(7407), 1, anon_sym_SQUOTE, - STATE(5192), 1, + STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399091,16 +398878,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270562] = 7, - ACTIONS(6200), 1, + [270594] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7444), 1, + ACTIONS(7409), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399108,16 +398895,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270586] = 7, - ACTIONS(6376), 1, + [270618] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7446), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7411), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399125,16 +398912,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270610] = 7, - ACTIONS(6208), 1, + [270642] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7436), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7411), 1, + anon_sym_SQUOTE, + STATE(5196), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399142,34 +398929,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270634] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7448), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [270660] = 7, - ACTIONS(6200), 1, + [270666] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7444), 1, + ACTIONS(7413), 1, anon_sym_DQUOTE, - STATE(5193), 1, + STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399177,16 +398946,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270684] = 7, - ACTIONS(6384), 1, + [270690] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7450), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7413), 1, + anon_sym_DQUOTE, + STATE(5197), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399194,16 +398963,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270708] = 7, - ACTIONS(6384), 1, + [270714] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7450), 1, - anon_sym_GT, - STATE(5276), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7415), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399211,33 +398980,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270732] = 7, - ACTIONS(6392), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, - sym_escape_sequence, - ACTIONS(7452), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, - sym_interpolation, + [270738] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(882), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5383), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [270756] = 7, - ACTIONS(6200), 1, + [270764] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7454), 1, + ACTIONS(7417), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399245,16 +399015,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270780] = 7, - ACTIONS(6392), 1, + [270788] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7452), 1, - anon_sym_RBRACK, - STATE(5267), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7419), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399262,16 +399032,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270804] = 7, - ACTIONS(6400), 1, + [270812] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7456), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7421), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399279,16 +399049,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270828] = 7, - ACTIONS(6184), 1, + [270836] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7458), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7423), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399296,16 +399066,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270852] = 7, - ACTIONS(6408), 1, + [270860] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7460), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7425), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399313,16 +399083,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270876] = 7, - ACTIONS(6400), 1, + [270884] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7462), 1, - anon_sym_RBRACE, - STATE(5101), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7425), 1, + anon_sym_SQUOTE, + STATE(5205), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399330,16 +399100,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270900] = 7, - ACTIONS(6400), 1, + [270908] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7456), 1, - anon_sym_RBRACE, - STATE(5266), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7427), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399347,16 +399117,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270924] = 7, - ACTIONS(6408), 1, + [270932] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7464), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7427), 1, + anon_sym_DQUOTE, + STATE(5207), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399364,16 +399134,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270948] = 7, - ACTIONS(6200), 1, + [270956] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7466), 1, + ACTIONS(7429), 1, anon_sym_DQUOTE, - STATE(5178), 1, + STATE(5629), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399381,16 +399151,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270972] = 7, - ACTIONS(6184), 1, + [270980] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7468), 1, + ACTIONS(7431), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399398,34 +399168,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [270996] = 8, + [271004] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1767), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [271022] = 7, - ACTIONS(6184), 1, + [271030] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7468), 1, - anon_sym_SQUOTE, - STATE(5207), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7433), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399433,15 +399203,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271046] = 7, - ACTIONS(6200), 1, + [271054] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7470), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7435), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -399450,15 +399220,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271070] = 7, - ACTIONS(6200), 1, + [271078] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7470), 1, - anon_sym_DQUOTE, - STATE(5212), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7435), 1, + anon_sym_SQUOTE, + STATE(5213), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -399467,16 +399237,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271094] = 7, - ACTIONS(6408), 1, + [271102] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7464), 1, - anon_sym_RPAREN, - STATE(5265), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7437), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399484,16 +399254,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271118] = 8, + [271126] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(878), 1, + ACTIONS(898), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -399502,16 +399272,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [271144] = 7, - ACTIONS(6200), 1, + [271152] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7472), 1, + ACTIONS(7439), 1, anon_sym_DQUOTE, STATE(5247), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399519,31 +399289,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271168] = 5, + [271176] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(7474), 1, + ACTIONS(7441), 1, anon_sym_COMMA, - STATE(5074), 1, + STATE(5161), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3389), 3, + ACTIONS(3583), 3, anon_sym_RPAREN, anon_sym_when, anon_sym_DASH_GT, - [271188] = 7, - ACTIONS(6200), 1, + [271196] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7472), 1, + ACTIONS(7439), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399551,16 +399321,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271212] = 7, - ACTIONS(6184), 1, + [271220] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7476), 1, + ACTIONS(7443), 1, anon_sym_SQUOTE, STATE(5249), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399568,16 +399338,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271236] = 7, - ACTIONS(6184), 1, + [271244] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7476), 1, + ACTIONS(7443), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399585,16 +399355,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271260] = 7, - ACTIONS(6192), 1, + [271268] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7478), 1, + ACTIONS(7445), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(5250), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399602,16 +399372,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271284] = 7, - ACTIONS(6192), 1, + [271292] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7478), 1, + ACTIONS(7445), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399619,16 +399389,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271308] = 7, - ACTIONS(6208), 1, + [271316] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7480), 1, + ACTIONS(7447), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(5251), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399636,16 +399406,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271332] = 7, - ACTIONS(6208), 1, + [271340] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7480), 1, + ACTIONS(7447), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399653,16 +399423,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271356] = 7, - ACTIONS(6368), 1, + [271364] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7482), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7437), 1, + anon_sym_DQUOTE, + STATE(5215), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399670,16 +399440,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271380] = 7, - ACTIONS(6184), 1, + [271388] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(7429), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [271412] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7484), 1, + ACTIONS(7449), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399687,16 +399474,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271404] = 7, - ACTIONS(6200), 1, + [271436] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7486), 1, + ACTIONS(7451), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399704,16 +399491,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271428] = 7, - ACTIONS(6184), 1, + [271460] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7488), 1, + ACTIONS(7453), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399721,16 +399508,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271452] = 7, - ACTIONS(6184), 1, + [271484] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7488), 1, - anon_sym_SQUOTE, - STATE(5230), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7455), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399738,32 +399525,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271476] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7213), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5517), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [271502] = 8, + [271508] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7490), 1, + ACTIONS(7457), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -399774,16 +399543,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [271528] = 7, - ACTIONS(6200), 1, + [271534] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7492), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7455), 1, + anon_sym_SLASH, + STATE(5127), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399791,16 +399560,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271552] = 7, - ACTIONS(6200), 1, + [271558] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7492), 1, - anon_sym_DQUOTE, - STATE(5231), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7459), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399808,16 +399577,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271576] = 7, - ACTIONS(6376), 1, + [271582] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7494), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7453), 1, + anon_sym_SQUOTE, + STATE(5231), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399825,16 +399594,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271600] = 7, - ACTIONS(6384), 1, + [271606] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7496), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7459), 1, + anon_sym_PIPE, + STATE(5130), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399842,16 +399611,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271624] = 7, - ACTIONS(6184), 1, + [271630] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7498), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7461), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399859,16 +399628,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271648] = 7, - ACTIONS(6200), 1, + [271654] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7500), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7463), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399876,16 +399645,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271672] = 8, + [271678] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1771), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -399894,16 +399663,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [271698] = 7, - ACTIONS(6392), 1, + [271704] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7502), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7465), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399911,34 +399680,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271722] = 8, + [271728] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1771), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3939), 1, + ACTIONS(3884), 1, anon_sym_SEMI, STATE(438), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [271748] = 7, - ACTIONS(6184), 1, + [271754] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7504), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7463), 1, + anon_sym_GT, + STATE(5131), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399946,34 +399715,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271772] = 8, + [271778] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1771), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [271798] = 7, - ACTIONS(6200), 1, + [271804] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7506), 1, + ACTIONS(7467), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399981,16 +399750,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271822] = 7, - ACTIONS(6184), 1, + [271828] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7504), 1, - anon_sym_SQUOTE, - STATE(5240), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7469), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -399998,16 +399767,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271846] = 7, - ACTIONS(6184), 1, + [271852] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7508), 1, + ACTIONS(7471), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400015,16 +399784,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271870] = 7, - ACTIONS(6192), 1, + [271876] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7510), 1, + ACTIONS(7473), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400032,16 +399801,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271894] = 7, - ACTIONS(6208), 1, + [271900] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7512), 1, + ACTIONS(7475), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400049,16 +399818,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271918] = 7, - ACTIONS(6200), 1, + [271924] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7469), 1, + anon_sym_RBRACK, + STATE(5172), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400066,16 +399835,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271942] = 7, - ACTIONS(6200), 1, + [271948] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7514), 1, - anon_sym_DQUOTE, - STATE(5241), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7477), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400083,16 +399852,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271966] = 7, - ACTIONS(6400), 1, + [271972] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7516), 1, + ACTIONS(7477), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5173), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400100,33 +399869,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [271990] = 7, - ACTIONS(6408), 1, + [271996] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7518), 1, + ACTIONS(7479), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [272014] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7520), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400134,16 +399886,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272038] = 7, - ACTIONS(6200), 1, + [272020] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7522), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7479), 1, + anon_sym_RPAREN, + STATE(5174), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400151,34 +399903,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272062] = 8, + [272044] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(886), 1, + ACTIONS(1765), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5857), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272088] = 7, - ACTIONS(6200), 1, + [272070] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7524), 1, - anon_sym_DQUOTE, - STATE(5858), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7481), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400186,16 +399938,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272112] = 7, - ACTIONS(6200), 1, + [272094] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7524), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7483), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400203,16 +399955,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272136] = 7, - ACTIONS(6184), 1, + [272118] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7199), 1, - anon_sym_SQUOTE, - STATE(5934), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7485), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400220,16 +399972,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272160] = 7, - ACTIONS(6208), 1, + [272142] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7526), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7487), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400237,16 +399989,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272184] = 7, - ACTIONS(6192), 1, + [272166] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7528), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7489), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400254,16 +400006,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272208] = 7, - ACTIONS(6184), 1, + [272190] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7530), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7489), 1, + anon_sym_SLASH, + STATE(5132), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400271,16 +400023,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272232] = 7, - ACTIONS(6408), 1, + [272214] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7532), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7491), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400288,16 +400040,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272256] = 7, - ACTIONS(6400), 1, + [272238] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7534), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7491), 1, + anon_sym_PIPE, + STATE(5133), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400305,16 +400057,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272280] = 7, - ACTIONS(6392), 1, + [272262] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7536), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7493), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400322,16 +400074,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272304] = 7, - ACTIONS(6184), 1, + [272286] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7538), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7493), 1, + anon_sym_GT, + STATE(5134), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [272310] = 7, + ACTIONS(6204), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(7461), 1, + anon_sym_DQUOTE, + STATE(5232), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400339,49 +400108,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272328] = 8, + [272334] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1767), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3884), 1, + ACTIONS(3888), 1, anon_sym_SEMI, STATE(379), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272354] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7538), 1, - anon_sym_SQUOTE, - STATE(5256), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, + [272360] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1765), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(7495), 1, + anon_sym_SEMI, + STATE(446), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [272378] = 8, + [272386] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7540), 1, + ACTIONS(7497), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -400392,33 +400162,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272404] = 8, + [272412] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7540), 1, + ACTIONS(7497), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272430] = 7, - ACTIONS(6200), 1, + [272438] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7542), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7499), 1, + anon_sym_SQUOTE, + STATE(5448), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -400427,33 +400197,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272454] = 8, + [272462] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1767), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5514), 1, + STATE(5166), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272480] = 7, - ACTIONS(6200), 1, + [272488] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7542), 1, - anon_sym_DQUOTE, - STATE(5257), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7499), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -400462,16 +400232,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272504] = 7, - ACTIONS(6384), 1, + [272512] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7544), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7501), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400479,16 +400249,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272528] = 7, - ACTIONS(6208), 1, + [272536] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7546), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7503), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400496,16 +400266,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272552] = 7, - ACTIONS(6368), 1, + [272560] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7548), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7505), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400513,16 +400283,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272576] = 7, - ACTIONS(6192), 1, + [272584] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7550), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7505), 1, + anon_sym_SQUOTE, + STATE(5276), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400530,16 +400300,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272600] = 7, - ACTIONS(6184), 1, + [272608] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7552), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7507), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400547,16 +400317,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272624] = 7, - ACTIONS(6200), 1, + [272632] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7554), 1, + ACTIONS(7507), 1, anon_sym_DQUOTE, - STATE(5178), 1, + STATE(5277), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400564,16 +400334,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272648] = 7, - ACTIONS(6208), 1, + [272656] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7556), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7509), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5449), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400581,16 +400351,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272672] = 7, - ACTIONS(6208), 1, + [272680] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7556), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5277), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7509), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400598,16 +400368,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272696] = 7, - ACTIONS(6192), 1, + [272704] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7558), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7511), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400615,16 +400385,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272720] = 7, - ACTIONS(6192), 1, + [272728] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7558), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5279), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7513), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400632,16 +400402,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272744] = 7, - ACTIONS(6184), 1, + [272752] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7560), 1, + ACTIONS(7515), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400649,16 +400419,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272768] = 7, - ACTIONS(6368), 1, + [272776] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7548), 1, - anon_sym_SLASH, - STATE(5130), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7515), 1, + anon_sym_SQUOTE, + STATE(5284), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400666,52 +400436,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272792] = 8, + [272800] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1751), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(7562), 1, + ACTIONS(7517), 1, anon_sym_SEMI, STATE(437), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272818] = 8, + [272826] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1751), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [272844] = 7, - ACTIONS(6408), 1, + [272852] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7564), 1, + ACTIONS(7519), 1, anon_sym_RPAREN, - STATE(5071), 1, + STATE(5333), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400719,16 +400489,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272868] = 7, - ACTIONS(6408), 1, + [272876] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7564), 1, + ACTIONS(7519), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400736,16 +400506,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272892] = 7, - ACTIONS(6400), 1, + [272900] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7566), 1, + ACTIONS(7521), 1, anon_sym_RBRACE, STATE(5334), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400753,16 +400523,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272916] = 7, - ACTIONS(6400), 1, + [272924] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7566), 1, + ACTIONS(7521), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400770,16 +400540,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272940] = 7, - ACTIONS(6392), 1, + [272948] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7568), 1, + ACTIONS(7523), 1, anon_sym_RBRACK, STATE(5335), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400787,16 +400557,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272964] = 7, - ACTIONS(6392), 1, + [272972] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7568), 1, + ACTIONS(7523), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400804,16 +400574,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [272988] = 7, - ACTIONS(6384), 1, + [272996] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7570), 1, + ACTIONS(7525), 1, anon_sym_GT, STATE(5336), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400821,16 +400591,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273012] = 7, - ACTIONS(6384), 1, + [273020] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7570), 1, + ACTIONS(7525), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400838,16 +400608,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273036] = 7, - ACTIONS(6376), 1, + [273044] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7572), 1, + ACTIONS(7527), 1, anon_sym_PIPE, STATE(5337), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400855,16 +400625,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273060] = 7, - ACTIONS(6376), 1, + [273068] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7572), 1, + ACTIONS(7527), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400872,16 +400642,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273084] = 7, - ACTIONS(6368), 1, + [273092] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7574), 1, + ACTIONS(7529), 1, anon_sym_SLASH, STATE(5338), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400889,33 +400659,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273108] = 7, - ACTIONS(6368), 1, + [273116] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7574), 1, + ACTIONS(7529), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [273132] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7560), 1, - anon_sym_SQUOTE, - STATE(5280), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400923,16 +400676,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273156] = 7, - ACTIONS(6200), 1, + [273140] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7576), 1, + ACTIONS(7531), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400940,16 +400693,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273180] = 7, - ACTIONS(6200), 1, + [273164] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7576), 1, + ACTIONS(7531), 1, anon_sym_DQUOTE, - STATE(5281), 1, + STATE(5285), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400957,16 +400710,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273204] = 7, - ACTIONS(6368), 1, + [273188] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7578), 1, - anon_sym_SLASH, - STATE(5134), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7533), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5450), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400974,16 +400727,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273228] = 7, - ACTIONS(6368), 1, + [273212] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7580), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7533), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -400991,52 +400744,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273252] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7582), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5736), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [273278] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7582), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [273304] = 7, - ACTIONS(6208), 1, + [273236] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7584), 1, + ACTIONS(7535), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401044,16 +400761,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273328] = 7, - ACTIONS(6192), 1, + [273260] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7586), 1, + ACTIONS(7537), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401061,16 +400778,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273352] = 7, - ACTIONS(6184), 1, + [273284] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7588), 1, + ACTIONS(7539), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401078,16 +400795,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273376] = 7, - ACTIONS(6200), 1, + [273308] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7590), 1, + ACTIONS(7541), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401095,16 +400812,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273400] = 7, - ACTIONS(6208), 1, + [273332] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7592), 1, + ACTIONS(7543), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401112,16 +400829,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273424] = 7, - ACTIONS(6208), 1, + [273356] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7592), 1, + ACTIONS(7543), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5309), 1, + STATE(5306), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401129,16 +400846,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273448] = 7, - ACTIONS(6192), 1, + [273380] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7594), 1, + ACTIONS(7545), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401146,16 +400863,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273472] = 7, - ACTIONS(6192), 1, + [273404] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7594), 1, + ACTIONS(7545), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5310), 1, + STATE(5307), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401163,16 +400880,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273496] = 7, - ACTIONS(6184), 1, + [273428] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7596), 1, + ACTIONS(7547), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401180,16 +400897,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273520] = 7, - ACTIONS(6184), 1, + [273452] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7596), 1, + ACTIONS(7547), 1, anon_sym_SQUOTE, - STATE(5311), 1, + STATE(5308), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401197,16 +400914,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273544] = 7, - ACTIONS(6200), 1, + [273476] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7598), 1, + ACTIONS(7549), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401214,16 +400931,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273568] = 7, - ACTIONS(6200), 1, + [273500] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7598), 1, + ACTIONS(7549), 1, anon_sym_DQUOTE, - STATE(5312), 1, + STATE(5309), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401231,34 +400948,85 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273592] = 8, + [273524] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(890), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(129), 1, + ACTIONS(7551), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5155), 1, - aux_sym_block_repeat1, + STATE(5543), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [273618] = 7, - ACTIONS(6376), 1, + [273550] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7365), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7553), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [273574] = 7, + ACTIONS(6184), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + sym_escape_sequence, + ACTIONS(7555), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [273598] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(7557), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [273622] = 7, + ACTIONS(6204), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(7559), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401266,34 +401034,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273642] = 8, + [273646] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7600), 1, + ACTIONS(7561), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [273668] = 7, - ACTIONS(6408), 1, + [273672] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7602), 1, - anon_sym_RPAREN, - STATE(5176), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7563), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401301,16 +401069,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273692] = 7, - ACTIONS(6376), 1, + [273696] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7446), 1, - anon_sym_PIPE, - STATE(5131), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7563), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5319), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401318,16 +401086,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273716] = 7, - ACTIONS(6384), 1, + [273720] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7604), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7565), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401335,16 +401103,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273740] = 7, - ACTIONS(6384), 1, + [273744] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7567), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [273770] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7567), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5176), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [273796] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7604), 1, - anon_sym_GT, - STATE(5172), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7565), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5320), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401352,16 +401156,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273764] = 7, - ACTIONS(6392), 1, + [273820] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7606), 1, + ACTIONS(7569), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401369,16 +401173,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273788] = 7, - ACTIONS(6392), 1, + [273844] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7606), 1, - anon_sym_RBRACK, - STATE(5173), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7571), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401386,16 +401190,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273812] = 7, - ACTIONS(6400), 1, + [273868] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7608), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7569), 1, + anon_sym_RBRACK, + STATE(5150), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401403,16 +401207,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273836] = 7, - ACTIONS(6368), 1, + [273892] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7580), 1, - anon_sym_SLASH, - STATE(5229), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7573), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401420,16 +401224,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273860] = 7, - ACTIONS(6400), 1, + [273916] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7608), 1, + ACTIONS(7575), 1, anon_sym_RBRACE, - STATE(5174), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401437,16 +401241,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273884] = 7, - ACTIONS(6384), 1, + [273940] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(7577), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [273964] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7363), 1, + ACTIONS(7579), 1, anon_sym_GT, - STATE(5127), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401454,16 +401275,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273908] = 7, - ACTIONS(6400), 1, + [273988] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7610), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7581), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401471,16 +401292,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273932] = 7, - ACTIONS(6392), 1, + [274012] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7612), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7583), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401488,16 +401309,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273956] = 7, - ACTIONS(6384), 1, + [274036] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7614), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7571), 1, + anon_sym_SQUOTE, + STATE(5321), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401505,16 +401326,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [273980] = 7, - ACTIONS(6376), 1, + [274060] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7616), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7585), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401522,16 +401343,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274004] = 7, - ACTIONS(6368), 1, + [274084] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7618), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7585), 1, + anon_sym_DQUOTE, + STATE(5322), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401539,34 +401360,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274028] = 8, + [274108] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(1653), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, anon_sym_SEMI, - ACTIONS(7620), 1, - anon_sym_end, - STATE(132), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5308), 1, - aux_sym_anonymous_function_repeat1, + STATE(5628), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [274054] = 7, - ACTIONS(6208), 1, + [274134] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7622), 1, + ACTIONS(7587), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401574,16 +401395,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274078] = 7, - ACTIONS(6192), 1, + [274158] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7624), 1, + ACTIONS(7589), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401591,16 +401412,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274102] = 7, - ACTIONS(6184), 1, + [274182] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7626), 1, + ACTIONS(7591), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401608,16 +401429,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274126] = 7, - ACTIONS(6200), 1, + [274206] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7628), 1, + ACTIONS(7593), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401625,16 +401446,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274150] = 7, - ACTIONS(6208), 1, + [274230] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7630), 1, + ACTIONS(7595), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401642,33 +401463,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274174] = 7, - ACTIONS(6208), 1, + [274254] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7630), 1, + ACTIONS(7595), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5340), 1, + STATE(5343), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [274198] = 7, - ACTIONS(6192), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, - sym_escape_sequence, - ACTIONS(7632), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401676,16 +401480,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274222] = 7, - ACTIONS(6192), 1, + [274278] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7632), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5341), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7597), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401693,16 +401497,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274246] = 7, - ACTIONS(6184), 1, + [274302] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7634), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7597), 1, + anon_sym_RBRACE, + STATE(5154), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401710,16 +401514,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274270] = 7, - ACTIONS(6408), 1, + [274326] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7602), 1, + ACTIONS(7599), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401727,16 +401531,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274294] = 7, - ACTIONS(6376), 1, + [274350] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7636), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7599), 1, + anon_sym_RPAREN, + STATE(5156), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401744,52 +401548,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274318] = 8, + [274374] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1713), 1, + ACTIONS(1709), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [274344] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1713), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(7638), 1, - anon_sym_SEMI, - STATE(423), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [274370] = 7, - ACTIONS(6368), 1, + [274400] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7640), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7601), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401797,34 +401583,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274394] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(6036), 1, - aux_sym__terminator_token1, - ACTIONS(6042), 1, - anon_sym_RPAREN, - ACTIONS(7642), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [274420] = 7, - ACTIONS(6184), 1, + [274424] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7634), 1, + ACTIONS(7603), 1, anon_sym_SQUOTE, - STATE(5342), 1, + STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401832,16 +401600,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274444] = 7, - ACTIONS(6200), 1, + [274448] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7645), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7605), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401849,16 +401617,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274468] = 7, - ACTIONS(6200), 1, + [274472] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7645), 1, - anon_sym_DQUOTE, - STATE(5343), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7607), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401866,16 +401634,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274492] = 7, - ACTIONS(6376), 1, + [274496] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7636), 1, - anon_sym_PIPE, - STATE(5238), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7609), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401883,16 +401651,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274516] = 7, - ACTIONS(6392), 1, + [274520] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7647), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7611), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401900,16 +401668,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274540] = 7, - ACTIONS(6384), 1, + [274544] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7649), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7613), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401917,16 +401685,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274564] = 7, - ACTIONS(6208), 1, + [274568] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7651), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7615), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -401934,67 +401702,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274588] = 7, - ACTIONS(6376), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, - sym_escape_sequence, - ACTIONS(7653), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, - sym_interpolation, + [274592] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [274618] = 8, + ACTIONS(5), 1, sym_comment, - [274612] = 7, - ACTIONS(6384), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, - sym_escape_sequence, - ACTIONS(7655), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, - sym_interpolation, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3892), 1, + anon_sym_SEMI, + STATE(444), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [274644] = 8, + ACTIONS(5), 1, sym_comment, - [274636] = 7, - ACTIONS(6384), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, - sym_escape_sequence, - ACTIONS(7649), 1, - anon_sym_GT, - STATE(5239), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, - sym_interpolation, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5257), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [274660] = 7, - ACTIONS(6192), 1, + [274670] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7657), 1, + ACTIONS(7617), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402002,16 +401773,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274684] = 7, + [274694] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7659), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7617), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5344), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402019,15 +401790,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274708] = 7, - ACTIONS(6200), 1, + [274718] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7661), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7619), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -402036,16 +401807,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274732] = 7, - ACTIONS(6208), 1, + [274742] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7663), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7619), 1, + anon_sym_SQUOTE, + STATE(5345), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402053,50 +401824,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274756] = 7, - ACTIONS(6208), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(7663), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5361), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, - sym_interpolation, + [274766] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7621), 1, + aux_sym__terminator_token1, + ACTIONS(7624), 1, + anon_sym_SEMI, + ACTIONS(7627), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [274792] = 8, + ACTIONS(5), 1, sym_comment, - [274780] = 7, - ACTIONS(6192), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, - sym_escape_sequence, - ACTIONS(7665), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, - sym_interpolation, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7629), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5327), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [274804] = 8, + [274818] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -402105,16 +401878,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [274830] = 7, - ACTIONS(6200), 1, + [274844] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7667), 1, + ACTIONS(7631), 1, anon_sym_DQUOTE, STATE(5398), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402122,16 +401895,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274854] = 7, - ACTIONS(6192), 1, + [274868] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7665), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5365), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7633), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402139,16 +401912,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274878] = 7, - ACTIONS(6200), 1, + [274892] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7667), 1, + ACTIONS(7631), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402156,16 +401929,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274902] = 7, - ACTIONS(6184), 1, + [274916] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7669), 1, + ACTIONS(7635), 1, anon_sym_SQUOTE, STATE(5400), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402173,16 +401946,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274926] = 7, - ACTIONS(6184), 1, + [274940] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7669), 1, + ACTIONS(7635), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402190,16 +401963,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274950] = 7, - ACTIONS(6192), 1, + [274964] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7671), 1, + ACTIONS(7637), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(5401), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402207,16 +401980,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274974] = 7, - ACTIONS(6192), 1, + [274988] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7671), 1, + ACTIONS(7637), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402224,16 +401997,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [274998] = 7, - ACTIONS(6208), 1, + [275012] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7673), 1, + ACTIONS(7639), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(5402), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402241,16 +402014,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275022] = 7, - ACTIONS(6208), 1, + [275036] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7673), 1, + ACTIONS(7639), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402258,16 +402031,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275046] = 7, - ACTIONS(6184), 1, + [275060] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7675), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7633), 1, + anon_sym_DQUOTE, + STATE(5346), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402275,68 +402048,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275070] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7675), 1, - anon_sym_SQUOTE, - STATE(5366), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [275084] = 8, + ACTIONS(5), 1, sym_comment, - [275094] = 7, - ACTIONS(6392), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, - sym_escape_sequence, - ACTIONS(7677), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, - sym_interpolation, + ACTIONS(1653), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3942), 1, + anon_sym_SEMI, + STATE(399), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [275118] = 8, + [275110] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(1653), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, anon_sym_SEMI, - ACTIONS(7679), 1, - anon_sym_end, - STATE(132), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [275144] = 7, - ACTIONS(6200), 1, + [275136] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7681), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7641), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402344,32 +402101,48 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275168] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, + [275160] = 7, + ACTIONS(6236), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6238), 1, + sym_escape_sequence, + ACTIONS(7643), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7679), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5199), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [275184] = 7, + ACTIONS(6236), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6238), 1, + sym_escape_sequence, + ACTIONS(7645), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [275194] = 8, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [275208] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7683), 1, + ACTIONS(7647), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -402380,16 +402153,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [275220] = 7, - ACTIONS(6200), 1, + [275234] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7681), 1, - anon_sym_DQUOTE, - STATE(5367), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7645), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5357), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402397,16 +402170,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275244] = 7, - ACTIONS(6208), 1, + [275258] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7685), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7649), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402414,16 +402187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275268] = 7, - ACTIONS(6192), 1, + [275282] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7687), 1, + ACTIONS(7651), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402431,16 +402204,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275292] = 7, + [275306] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7689), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7649), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5359), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402448,16 +402221,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275316] = 7, - ACTIONS(6392), 1, + [275330] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7691), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7653), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402465,16 +402238,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275340] = 8, + [275354] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1725), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -402483,16 +402256,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [275366] = 7, - ACTIONS(6392), 1, + [275380] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7691), 1, - anon_sym_RBRACK, - STATE(5243), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7653), 1, + anon_sym_SQUOTE, + STATE(5360), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402500,34 +402273,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275390] = 8, + [275404] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1725), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3923), 1, + ACTIONS(3894), 1, anon_sym_SEMI, STATE(420), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [275416] = 7, - ACTIONS(6400), 1, + [275430] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7693), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7655), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402535,34 +402308,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275440] = 8, + [275454] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1725), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [275466] = 7, - ACTIONS(6200), 1, + [275480] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7695), 1, + ACTIONS(7657), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402570,16 +402343,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275490] = 7, - ACTIONS(6400), 1, + [275504] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7697), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7655), 1, + anon_sym_DQUOTE, + STATE(5361), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402587,16 +402360,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275514] = 7, - ACTIONS(6184), 1, + [275528] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7699), 1, + ACTIONS(7659), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402604,16 +402377,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275538] = 7, - ACTIONS(6192), 1, + [275552] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7701), 1, + ACTIONS(7661), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402621,16 +402394,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275562] = 7, - ACTIONS(6208), 1, + [275576] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7703), 1, + ACTIONS(7663), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402638,16 +402411,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275586] = 7, - ACTIONS(6408), 1, + [275600] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(886), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5362), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [275626] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7705), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7665), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402655,16 +402446,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275610] = 7, - ACTIONS(6400), 1, + [275650] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7462), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7667), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402672,15 +402463,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275634] = 7, - ACTIONS(6200), 1, + [275674] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7707), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7669), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -402689,16 +402480,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275658] = 7, - ACTIONS(6208), 1, + [275698] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7709), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7671), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402706,34 +402497,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275682] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7711), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [275708] = 7, - ACTIONS(6208), 1, + [275722] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7709), 1, + ACTIONS(7673), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5389), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402741,16 +402514,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275732] = 7, - ACTIONS(6400), 1, + [275746] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7697), 1, - anon_sym_RBRACE, - STATE(5254), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7673), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5384), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402758,16 +402531,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275756] = 7, - ACTIONS(6408), 1, + [275770] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7713), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7675), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402775,16 +402548,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275780] = 7, - ACTIONS(6408), 1, + [275794] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7713), 1, - anon_sym_RPAREN, - STATE(5255), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7675), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5405), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402792,16 +402565,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275804] = 7, - ACTIONS(6376), 1, + [275818] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7715), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7677), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402809,15 +402582,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275828] = 7, - ACTIONS(6200), 1, + [275842] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7717), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7677), 1, + anon_sym_SQUOTE, + STATE(5406), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -402826,16 +402599,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275852] = 7, - ACTIONS(6368), 1, + [275866] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7719), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7679), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402843,34 +402616,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275876] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7721), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5795), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [275902] = 7, - ACTIONS(6208), 1, + [275890] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7723), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7679), 1, + anon_sym_DQUOTE, + STATE(5407), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402878,16 +402633,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275926] = 7, - ACTIONS(6192), 1, + [275914] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7725), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7681), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402895,16 +402650,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275950] = 7, - ACTIONS(6184), 1, + [275938] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7727), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7683), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402912,33 +402667,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [275974] = 7, - ACTIONS(6192), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, - sym_escape_sequence, - ACTIONS(7729), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, - sym_interpolation, + [275962] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7685), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5858), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [275998] = 7, - ACTIONS(6192), 1, + [275988] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7729), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5390), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7687), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402946,16 +402702,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276022] = 7, - ACTIONS(6200), 1, + [276012] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7731), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7689), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -402963,14 +402719,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276046] = 8, + [276036] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7733), 1, + ACTIONS(7685), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [276062] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7691), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -402981,34 +402755,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [276072] = 8, + [276088] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7733), 1, + ACTIONS(7691), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [276098] = 7, - ACTIONS(6200), 1, + [276114] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7717), 1, + ACTIONS(7609), 1, anon_sym_DQUOTE, - STATE(5162), 1, + STATE(5354), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403016,33 +402790,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276122] = 7, - ACTIONS(6192), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, - sym_escape_sequence, - ACTIONS(7735), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, - sym_interpolation, + [276138] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5353), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [276146] = 7, - ACTIONS(6208), 1, + [276164] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7737), 1, + ACTIONS(7689), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5385), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403050,16 +402825,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276170] = 7, - ACTIONS(6208), 1, + [276188] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7737), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5416), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7693), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403067,16 +402842,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276194] = 7, - ACTIONS(6192), 1, + [276212] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7739), 1, + ACTIONS(7693), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5390), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403084,34 +402859,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276218] = 8, + [276236] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(9), 1, aux_sym__terminator_token1, ACTIONS(1525), 1, ts_builtin_sym_end, - ACTIONS(4772), 1, + ACTIONS(4567), 1, anon_sym_SEMI, STATE(424), 1, sym__terminator, - STATE(1033), 1, + STATE(1031), 1, aux_sym__terminator_repeat1, - STATE(5562), 1, + STATE(5602), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [276244] = 7, - ACTIONS(6184), 1, + [276262] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7741), 1, + ACTIONS(7695), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403119,16 +402894,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276268] = 7, - ACTIONS(6184), 1, + [276286] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7741), 1, + ACTIONS(7695), 1, anon_sym_SQUOTE, - STATE(5391), 1, + STATE(5404), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403136,52 +402911,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276292] = 8, + [276310] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1711), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(7743), 1, + ACTIONS(7697), 1, anon_sym_SEMI, STATE(411), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [276318] = 8, + [276336] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1711), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [276344] = 7, - ACTIONS(6408), 1, + [276362] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7745), 1, + ACTIONS(7699), 1, anon_sym_RPAREN, STATE(5477), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403189,16 +402964,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276368] = 7, - ACTIONS(6408), 1, + [276386] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7745), 1, + ACTIONS(7699), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403206,16 +402981,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276392] = 7, - ACTIONS(6400), 1, + [276410] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7747), 1, + ACTIONS(7701), 1, anon_sym_RBRACE, STATE(5478), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403223,16 +402998,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276416] = 7, - ACTIONS(6400), 1, + [276434] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7747), 1, + ACTIONS(7701), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403240,16 +403015,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276440] = 7, - ACTIONS(6392), 1, + [276458] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7749), 1, + ACTIONS(7703), 1, anon_sym_RBRACK, STATE(5479), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403257,16 +403032,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276464] = 7, - ACTIONS(6392), 1, + [276482] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7749), 1, + ACTIONS(7703), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403274,16 +403049,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276488] = 7, - ACTIONS(6384), 1, + [276506] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7751), 1, + ACTIONS(7705), 1, anon_sym_GT, STATE(5480), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403291,16 +403066,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276512] = 7, - ACTIONS(6384), 1, + [276530] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7751), 1, + ACTIONS(7705), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403308,16 +403083,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276536] = 7, - ACTIONS(6376), 1, + [276554] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7753), 1, + ACTIONS(7707), 1, anon_sym_PIPE, STATE(5481), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403325,16 +403100,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276560] = 7, - ACTIONS(6376), 1, + [276578] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7753), 1, + ACTIONS(7707), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403342,16 +403117,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276584] = 7, - ACTIONS(6368), 1, + [276602] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7755), 1, + ACTIONS(7709), 1, anon_sym_SLASH, STATE(5482), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403359,16 +403134,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276608] = 7, - ACTIONS(6368), 1, + [276626] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7755), 1, + ACTIONS(7709), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403376,16 +403151,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276632] = 7, - ACTIONS(6200), 1, + [276650] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7757), 1, + ACTIONS(7711), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403393,15 +403168,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276656] = 7, - ACTIONS(6200), 1, + [276674] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7757), 1, + ACTIONS(7711), 1, anon_sym_DQUOTE, - STATE(5405), 1, + STATE(5419), 1, aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [276698] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(7713), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -403410,16 +403202,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276680] = 7, - ACTIONS(6192), 1, + [276722] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7759), 1, + ACTIONS(7715), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403427,16 +403219,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276704] = 7, - ACTIONS(6208), 1, + [276746] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7761), 1, + ACTIONS(7717), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403444,16 +403236,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276728] = 7, - ACTIONS(6192), 1, + [276770] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7763), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7719), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403461,16 +403253,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276752] = 7, + [276794] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7765), 1, + ACTIONS(7721), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [276818] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(7723), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403478,16 +403287,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276776] = 7, - ACTIONS(6200), 1, + [276842] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7767), 1, + ACTIONS(7725), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403495,16 +403304,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276800] = 7, - ACTIONS(6208), 1, + [276866] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7769), 1, + ACTIONS(7727), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403512,16 +403321,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276824] = 7, - ACTIONS(6208), 1, + [276890] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7769), 1, + ACTIONS(7727), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5449), 1, + STATE(5451), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403529,16 +403338,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276848] = 7, - ACTIONS(6192), 1, + [276914] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7771), 1, + ACTIONS(7729), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403546,16 +403355,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276872] = 7, - ACTIONS(6192), 1, + [276938] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7771), 1, + ACTIONS(7729), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5450), 1, + STATE(5452), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403563,16 +403372,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276896] = 7, - ACTIONS(6184), 1, + [276962] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7773), 1, + ACTIONS(7731), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403580,16 +403389,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276920] = 7, - ACTIONS(6184), 1, + [276986] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7773), 1, + ACTIONS(7731), 1, anon_sym_SQUOTE, - STATE(5451), 1, + STATE(5453), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403597,16 +403406,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276944] = 7, - ACTIONS(6200), 1, + [277010] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7775), 1, + ACTIONS(7733), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403614,16 +403423,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276968] = 7, - ACTIONS(6200), 1, + [277034] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7775), 1, + ACTIONS(7733), 1, anon_sym_DQUOTE, - STATE(5452), 1, + STATE(5454), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403631,52 +403440,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [276992] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(7777), 1, - anon_sym_SEMI, - STATE(436), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [277018] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1743), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [277044] = 7, - ACTIONS(6408), 1, + [277058] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7779), 1, - anon_sym_RPAREN, - STATE(5813), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7735), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403684,16 +403457,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277068] = 7, - ACTIONS(6408), 1, + [277082] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7779), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + STATE(5501), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403701,16 +403474,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277092] = 7, - ACTIONS(6208), 1, + [277106] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7781), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403718,16 +403491,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277116] = 7, - ACTIONS(6192), 1, + [277130] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7783), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + STATE(5555), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403735,34 +403508,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277140] = 8, + [277154] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7785), 1, + ACTIONS(7741), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [277166] = 7, - ACTIONS(6184), 1, + [277180] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7787), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7743), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403770,16 +403543,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277190] = 7, - ACTIONS(6200), 1, + [277204] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7789), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7745), 1, + anon_sym_PIPE, + STATE(5493), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403787,16 +403560,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277214] = 7, - ACTIONS(6208), 1, + [277228] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7791), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7747), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403804,16 +403577,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277238] = 7, - ACTIONS(6208), 1, + [277252] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7791), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5465), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7749), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403821,16 +403594,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277262] = 7, - ACTIONS(6192), 1, + [277276] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7793), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7751), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403838,16 +403611,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277286] = 7, - ACTIONS(6192), 1, + [277300] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7793), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5466), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7753), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403855,16 +403628,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277310] = 7, - ACTIONS(6184), 1, + [277324] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7795), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7753), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5468), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403872,16 +403645,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277334] = 7, - ACTIONS(6208), 1, + [277348] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7797), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7755), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403889,16 +403662,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277358] = 7, - ACTIONS(6192), 1, + [277372] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7799), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7757), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403906,16 +403679,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277382] = 7, - ACTIONS(6408), 1, + [277396] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7801), 1, + ACTIONS(7759), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403923,16 +403696,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277406] = 7, - ACTIONS(6400), 1, + [277420] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7803), 1, + ACTIONS(7761), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403940,16 +403713,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277430] = 7, - ACTIONS(6392), 1, + [277444] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7805), 1, + ACTIONS(7763), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403957,16 +403730,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277454] = 7, - ACTIONS(6384), 1, + [277468] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7807), 1, + ACTIONS(7765), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403974,16 +403747,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277478] = 7, - ACTIONS(6376), 1, + [277492] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7809), 1, + ACTIONS(7767), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -403991,16 +403764,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277502] = 7, - ACTIONS(6368), 1, + [277516] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7811), 1, + ACTIONS(7769), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404008,16 +403781,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277526] = 7, + [277540] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7795), 1, + ACTIONS(7755), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5470), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [277564] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(7771), 1, anon_sym_SQUOTE, - STATE(5468), 1, + STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404025,16 +403815,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277550] = 7, - ACTIONS(6200), 1, + [277588] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7813), 1, + ACTIONS(7771), 1, + anon_sym_SQUOTE, + STATE(5471), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [277612] = 7, + ACTIONS(6204), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(7773), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404042,16 +403849,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277574] = 7, - ACTIONS(6200), 1, + [277636] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7813), 1, + ACTIONS(7773), 1, anon_sym_DQUOTE, - STATE(5469), 1, + STATE(5472), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404059,16 +403866,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277598] = 7, - ACTIONS(6400), 1, + [277660] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7815), 1, - anon_sym_RBRACE, - STATE(5815), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404076,16 +403883,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277622] = 7, - ACTIONS(6400), 1, + [277684] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7815), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(7775), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5556), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404093,16 +403900,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277646] = 7, - ACTIONS(6392), 1, + [277708] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7817), 1, - anon_sym_RBRACK, - STATE(5827), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7775), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404110,16 +403917,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277670] = 7, - ACTIONS(6392), 1, + [277732] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7817), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7777), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5557), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404127,16 +403934,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277694] = 7, - ACTIONS(6208), 1, + [277756] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7819), 1, + ACTIONS(7779), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404144,16 +403951,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277718] = 7, - ACTIONS(6192), 1, + [277780] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7821), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7781), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404161,16 +403968,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277742] = 7, - ACTIONS(6184), 1, + [277804] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7823), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7783), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404178,16 +403985,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277766] = 7, - ACTIONS(6184), 1, + [277828] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7825), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7785), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [277852] = 7, + ACTIONS(6324), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6326), 1, + sym_escape_sequence, + ACTIONS(7787), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [277876] = 7, + ACTIONS(6216), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6218), 1, + sym_escape_sequence, + ACTIONS(7789), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404195,16 +404036,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277790] = 7, - ACTIONS(6200), 1, + [277900] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7827), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7777), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404212,34 +404053,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277814] = 8, + [277924] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1709), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(129), 1, + ACTIONS(7791), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [277840] = 7, - ACTIONS(6200), 1, + [277950] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7829), 1, + ACTIONS(7793), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [277974] = 7, + ACTIONS(6204), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(7795), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404247,34 +404105,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277864] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1709), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3951), 1, - anon_sym_SEMI, - STATE(421), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + [277998] = 7, + ACTIONS(6332), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(7797), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [277890] = 7, - ACTIONS(6192), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [278022] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7739), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5417), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7799), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404282,52 +404139,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277914] = 8, + [278046] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1709), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(129), 1, + ACTIONS(7801), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5351), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [277940] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4426), 1, - anon_sym_RPAREN, - ACTIONS(6044), 1, - aux_sym__terminator_token1, - ACTIONS(7831), 1, - anon_sym_SEMI, - STATE(484), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [277966] = 7, - ACTIONS(6208), 1, + [278072] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7834), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7803), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404335,16 +404174,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [277990] = 7, - ACTIONS(6184), 1, + [278096] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7836), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7805), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404352,16 +404191,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278014] = 7, - ACTIONS(6208), 1, + [278120] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7834), 1, + ACTIONS(7805), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5490), 1, + STATE(5492), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404369,16 +404208,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278038] = 7, - ACTIONS(6192), 1, + [278144] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7838), 1, + ACTIONS(7807), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404386,16 +404225,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278062] = 7, - ACTIONS(6192), 1, + [278168] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7838), 1, + ACTIONS(7807), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5491), 1, + STATE(5500), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404403,16 +404242,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278086] = 7, - ACTIONS(6184), 1, + [278192] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7840), 1, + ACTIONS(7809), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404420,16 +404259,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278110] = 7, - ACTIONS(6184), 1, + [278216] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7840), 1, + ACTIONS(7809), 1, anon_sym_SQUOTE, - STATE(5492), 1, + STATE(5503), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404437,16 +404276,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278134] = 7, - ACTIONS(6200), 1, + [278240] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7842), 1, + ACTIONS(7811), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404454,50 +404293,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278158] = 7, - ACTIONS(6200), 1, + [278264] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7842), 1, + ACTIONS(7811), 1, anon_sym_DQUOTE, - STATE(5496), 1, + STATE(5505), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [278182] = 7, - ACTIONS(6384), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, - sym_escape_sequence, - ACTIONS(7844), 1, - anon_sym_GT, - STATE(5882), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [278206] = 7, - ACTIONS(6384), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, - sym_escape_sequence, - ACTIONS(7844), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404505,16 +404310,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278230] = 7, - ACTIONS(6376), 1, + [278288] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7846), 1, + ACTIONS(7813), 1, anon_sym_PIPE, - STATE(5883), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404522,52 +404327,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278254] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7848), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5384), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [278280] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1623), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [278306] = 8, + [278312] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(910), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -404576,16 +404345,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [278332] = 7, - ACTIONS(6200), 1, + [278338] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7850), 1, + ACTIONS(7815), 1, anon_sym_DQUOTE, STATE(5542), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404593,34 +404362,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278356] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7852), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, + [278362] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(7817), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [278382] = 7, - ACTIONS(6200), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [278386] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7850), 1, + ACTIONS(7815), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404628,16 +404396,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278406] = 7, - ACTIONS(6184), 1, + [278410] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7854), 1, + ACTIONS(7819), 1, anon_sym_SQUOTE, STATE(5544), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404645,16 +404413,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278430] = 7, - ACTIONS(6184), 1, + [278434] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7854), 1, + ACTIONS(7819), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404662,16 +404430,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278454] = 7, - ACTIONS(6192), 1, + [278458] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7856), 1, + ACTIONS(7821), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(5545), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404679,16 +404447,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278478] = 7, - ACTIONS(6192), 1, + [278482] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7856), 1, + ACTIONS(7821), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404696,16 +404464,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278502] = 7, - ACTIONS(6208), 1, + [278506] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7858), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(5546), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404713,16 +404481,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278526] = 7, - ACTIONS(6208), 1, + [278530] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7858), 1, + ACTIONS(7823), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404730,16 +404498,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278550] = 7, - ACTIONS(6208), 1, + [278554] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7825), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5888), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [278580] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7860), 1, + ACTIONS(7827), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404747,16 +404533,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278574] = 7, - ACTIONS(6192), 1, + [278604] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7862), 1, + ACTIONS(7829), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404764,16 +404550,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278598] = 7, - ACTIONS(6184), 1, + [278628] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7864), 1, + ACTIONS(7831), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404781,33 +404567,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278622] = 7, - ACTIONS(6200), 1, + [278652] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7866), 1, + ACTIONS(7833), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [278646] = 7, - ACTIONS(6208), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(7868), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404815,16 +404584,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278670] = 7, - ACTIONS(6208), 1, + [278676] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7870), 1, + ACTIONS(7835), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404832,14 +404601,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278694] = 8, + [278700] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7872), 1, + ACTIONS(7837), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -404850,16 +404619,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [278720] = 7, - ACTIONS(6208), 1, + [278726] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7870), 1, + ACTIONS(7835), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5475), 1, + STATE(5526), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404867,16 +404636,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278744] = 7, - ACTIONS(6192), 1, + [278750] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7874), 1, + ACTIONS(7839), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404884,16 +404653,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278768] = 7, - ACTIONS(6208), 1, + [278774] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7868), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5525), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7839), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5527), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404901,16 +404670,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278792] = 7, - ACTIONS(6192), 1, + [278798] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7874), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5476), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7841), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404918,16 +404687,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278816] = 7, - ACTIONS(6184), 1, + [278822] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7876), 1, + ACTIONS(7841), 1, anon_sym_SQUOTE, - STATE(5128), 1, + STATE(5528), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404935,16 +404704,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278840] = 8, + [278846] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1657), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -404953,16 +404722,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [278866] = 7, - ACTIONS(6184), 1, + [278872] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7836), 1, - anon_sym_SQUOTE, - STATE(5418), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7843), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -404970,34 +404739,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278890] = 8, + [278896] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1657), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3965), 1, + ACTIONS(3900), 1, anon_sym_SEMI, STATE(389), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [278916] = 7, - ACTIONS(6192), 1, + [278922] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7878), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7843), 1, + anon_sym_DQUOTE, + STATE(5529), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405005,34 +404774,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278940] = 8, + [278946] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1657), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [278966] = 7, - ACTIONS(6200), 1, + [278972] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7880), 1, + ACTIONS(7845), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405040,33 +404809,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [278990] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7876), 1, - anon_sym_SQUOTE, - STATE(5493), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, + [278996] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(7825), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [279014] = 7, - ACTIONS(6184), 1, + [279022] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7882), 1, + ACTIONS(7847), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405074,16 +404844,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279038] = 7, - ACTIONS(6192), 1, + [279046] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7884), 1, + ACTIONS(7849), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405091,16 +404861,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279062] = 7, - ACTIONS(6208), 1, + [279070] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7886), 1, + ACTIONS(7851), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405108,16 +404878,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279086] = 7, - ACTIONS(6192), 1, + [279094] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7878), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5526), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7853), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405125,16 +404895,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279110] = 7, + [279118] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7888), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7855), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405142,16 +404912,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279134] = 7, - ACTIONS(6184), 1, + [279142] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7888), 1, + ACTIONS(7857), 1, anon_sym_SQUOTE, - STATE(5527), 1, + STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405159,16 +404929,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279158] = 7, - ACTIONS(6200), 1, + [279166] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7859), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405176,16 +404946,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279182] = 7, - ACTIONS(6200), 1, + [279190] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7892), 1, + ACTIONS(7861), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405193,16 +404963,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279206] = 7, - ACTIONS(6200), 1, + [279214] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7892), 1, - anon_sym_DQUOTE, - STATE(5528), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7863), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405210,16 +404980,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279230] = 7, - ACTIONS(6200), 1, + [279238] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7890), 1, - anon_sym_DQUOTE, - STATE(5421), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7865), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405227,16 +404997,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279254] = 7, - ACTIONS(6384), 1, + [279262] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7894), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7867), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405244,15 +405014,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279278] = 7, - ACTIONS(6200), 1, + [279286] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7896), 1, - anon_sym_DQUOTE, - STATE(5684), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7869), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -405261,16 +405031,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279302] = 7, - ACTIONS(6200), 1, + [279310] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7896), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7871), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405278,16 +405048,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279326] = 7, - ACTIONS(6408), 1, + [279334] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7460), 1, - anon_sym_RPAREN, - STATE(5097), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7873), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405295,33 +405065,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279350] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7898), 1, - anon_sym_SQUOTE, - STATE(5691), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, + [279358] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4297), 1, + anon_sym_end, + ACTIONS(6038), 1, + aux_sym__terminator_token1, + ACTIONS(7875), 1, + anon_sym_SEMI, + STATE(797), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5558), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [279374] = 7, - ACTIONS(6184), 1, + [279384] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7898), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7878), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405329,16 +405100,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279398] = 7, - ACTIONS(6192), 1, + [279408] = 7, + ACTIONS(7880), 1, + anon_sym_SLASH, + ACTIONS(7882), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(7885), 1, sym_escape_sequence, - ACTIONS(7900), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5692), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405346,52 +405117,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279422] = 8, + [279432] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1671), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7902), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(401), 1, + ACTIONS(7888), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, - STATE(1031), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279448] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4468), 1, - ts_builtin_sym_end, - ACTIONS(6018), 1, - aux_sym__terminator_token1, - ACTIONS(7904), 1, - anon_sym_SEMI, - STATE(578), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5562), 1, - aux_sym_source_repeat1, + [279458] = 7, + ACTIONS(6216), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6218), 1, + sym_escape_sequence, + ACTIONS(7890), 1, + anon_sym_RPAREN, + STATE(5743), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279474] = 7, - ACTIONS(6376), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [279482] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7846), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7863), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5547), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405399,16 +405169,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279498] = 7, - ACTIONS(6200), 1, + [279506] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7907), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7892), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405416,32 +405186,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279522] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1623), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(7909), 1, - anon_sym_SEMI, - STATE(452), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + [279530] = 7, + ACTIONS(6184), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + sym_escape_sequence, + ACTIONS(7892), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5548), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279548] = 8, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [279554] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7911), 1, + ACTIONS(7894), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -405452,33 +405221,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279574] = 8, + [279580] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7911), 1, + ACTIONS(7894), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279600] = 7, - ACTIONS(6200), 1, + [279606] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7907), 1, - anon_sym_DQUOTE, - STATE(5494), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7896), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -405487,16 +405256,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279624] = 7, - ACTIONS(6368), 1, + [279630] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7913), 1, - anon_sym_SLASH, - STATE(5884), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7896), 1, + anon_sym_SQUOTE, + STATE(5549), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405504,34 +405273,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279648] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(914), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5495), 1, - aux_sym_block_repeat1, + [279654] = 7, + ACTIONS(6204), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(7898), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279674] = 7, - ACTIONS(6368), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [279678] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7915), 1, + ACTIONS(7900), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405539,16 +405307,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279698] = 7, - ACTIONS(6368), 1, + [279702] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7913), 1, + ACTIONS(7900), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5476), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405556,16 +405324,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279722] = 7, - ACTIONS(6208), 1, + [279726] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7917), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7745), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405573,16 +405341,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279746] = 7, - ACTIONS(6192), 1, + [279750] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7919), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7898), 1, + anon_sym_DQUOTE, + STATE(5551), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405590,16 +405358,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279770] = 7, - ACTIONS(6184), 1, + [279774] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7921), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7902), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405607,52 +405375,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279794] = 8, + [279798] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1639), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(7923), 1, + ACTIONS(7904), 1, anon_sym_SEMI, STATE(388), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279820] = 8, + [279824] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1639), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [279846] = 7, - ACTIONS(6408), 1, + [279850] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7925), 1, + ACTIONS(7906), 1, anon_sym_RPAREN, STATE(5621), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405660,16 +405428,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279870] = 7, - ACTIONS(6408), 1, + [279874] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7925), 1, + ACTIONS(7906), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405677,16 +405445,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279894] = 7, - ACTIONS(6400), 1, + [279898] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7927), 1, + ACTIONS(7908), 1, anon_sym_RBRACE, STATE(5622), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405694,16 +405462,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279918] = 7, - ACTIONS(6400), 1, + [279922] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7927), 1, + ACTIONS(7908), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405711,16 +405479,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279942] = 7, - ACTIONS(6392), 1, + [279946] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7929), 1, + ACTIONS(7910), 1, anon_sym_RBRACK, STATE(5623), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405728,16 +405496,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279966] = 7, - ACTIONS(6392), 1, + [279970] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7929), 1, + ACTIONS(7910), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405745,16 +405513,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [279990] = 7, - ACTIONS(6384), 1, + [279994] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7931), 1, + ACTIONS(7912), 1, anon_sym_GT, STATE(5624), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405762,16 +405530,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280014] = 7, - ACTIONS(6384), 1, + [280018] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7931), 1, + ACTIONS(7912), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405779,16 +405547,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280038] = 7, - ACTIONS(6376), 1, + [280042] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7933), 1, + ACTIONS(7914), 1, anon_sym_PIPE, STATE(5625), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405796,16 +405564,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280062] = 7, - ACTIONS(6376), 1, + [280066] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7933), 1, + ACTIONS(7914), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405813,16 +405581,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280086] = 7, - ACTIONS(6368), 1, + [280090] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7935), 1, + ACTIONS(7916), 1, anon_sym_SLASH, STATE(5626), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405830,16 +405598,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280110] = 7, - ACTIONS(6368), 1, + [280114] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7935), 1, + ACTIONS(7916), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405847,16 +405615,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280134] = 7, - ACTIONS(6200), 1, + [280138] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7937), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7918), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405864,16 +405632,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280158] = 7, - ACTIONS(6208), 1, + [280162] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7939), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7920), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405881,16 +405649,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280182] = 7, - ACTIONS(6208), 1, + [280186] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7939), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5573), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7922), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405898,16 +405666,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280206] = 7, - ACTIONS(6192), 1, + [280210] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7941), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7924), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405915,16 +405683,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280230] = 7, - ACTIONS(6192), 1, + [280234] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7941), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5574), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7924), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5575), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405932,16 +405700,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280254] = 7, + [280258] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7926), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405949,16 +405717,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280278] = 7, + [280282] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - STATE(5575), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7926), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5590), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -405966,15 +405734,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280302] = 7, - ACTIONS(6200), 1, + [280306] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7945), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7928), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -405983,15 +405751,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280326] = 7, - ACTIONS(6200), 1, + [280330] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7945), 1, - anon_sym_DQUOTE, - STATE(5590), 1, - aux_sym__quoted_i_double_repeat1, + ACTIONS(7928), 1, + anon_sym_SQUOTE, + STATE(5591), 1, + aux_sym__quoted_i_single_repeat1, STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, @@ -406000,16 +405768,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280350] = 7, - ACTIONS(6208), 1, + [280354] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7947), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7930), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406017,16 +405785,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280374] = 7, - ACTIONS(6192), 1, + [280378] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7949), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7930), 1, + anon_sym_DQUOTE, + STATE(5592), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406034,50 +405802,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280398] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(7951), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, + [280402] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1295), 1, + anon_sym_end, + ACTIONS(4722), 1, + aux_sym__terminator_token1, + ACTIONS(4725), 1, + anon_sym_SEMI, + STATE(348), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(5558), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [280428] = 8, + ACTIONS(5), 1, sym_comment, - [280422] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(7953), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, + ACTIONS(4295), 1, + ts_builtin_sym_end, + ACTIONS(6038), 1, + aux_sym__terminator_token1, + ACTIONS(7932), 1, + anon_sym_SEMI, + STATE(578), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5602), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [280446] = 7, - ACTIONS(6208), 1, + [280454] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7955), 1, + ACTIONS(7935), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406085,16 +405855,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280470] = 7, - ACTIONS(6208), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(7955), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5599), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + [280478] = 7, + ACTIONS(6184), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + sym_escape_sequence, + ACTIONS(7937), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406102,16 +405872,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280494] = 7, - ACTIONS(6192), 1, + [280502] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7957), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7939), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406119,16 +405889,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280518] = 7, - ACTIONS(6192), 1, + [280526] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7957), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5600), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7941), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406136,16 +405906,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280542] = 7, - ACTIONS(6184), 1, + [280550] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7959), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7943), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406153,16 +405923,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280566] = 7, - ACTIONS(6184), 1, + [280574] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7959), 1, - anon_sym_SQUOTE, - STATE(5601), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7943), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5603), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406170,16 +405940,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280590] = 7, - ACTIONS(6200), 1, + [280598] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7961), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7945), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406187,16 +405957,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280614] = 7, - ACTIONS(6200), 1, + [280622] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7961), 1, - anon_sym_DQUOTE, - STATE(5602), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7945), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5604), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406204,34 +405974,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280638] = 8, + [280646] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(7963), 1, + ACTIONS(7947), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [280664] = 7, - ACTIONS(6208), 1, + [280672] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7965), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7949), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406239,16 +406009,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280688] = 7, - ACTIONS(6192), 1, + [280696] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7967), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7890), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406256,34 +406026,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280712] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_RPAREN, - ACTIONS(4678), 1, - aux_sym__terminator_token1, - ACTIONS(4681), 1, - anon_sym_SEMI, - STATE(352), 1, - sym__terminator, - STATE(1029), 1, - aux_sym__terminator_repeat1, - STATE(5701), 1, - aux_sym_source_repeat1, + [280720] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(7951), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [280738] = 7, - ACTIONS(6184), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [280744] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7969), 1, + ACTIONS(7949), 1, anon_sym_SQUOTE, - STATE(5128), 1, + STATE(5605), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406291,16 +406060,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280762] = 7, - ACTIONS(6368), 1, + [280768] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7915), 1, - anon_sym_SLASH, - STATE(5353), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7951), 1, + anon_sym_GT, + STATE(5494), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406308,16 +406077,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280786] = 7, - ACTIONS(6376), 1, + [280792] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7971), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7953), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406325,16 +406094,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280810] = 7, - ACTIONS(6200), 1, + [280816] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7973), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7953), 1, + anon_sym_RBRACK, + STATE(5495), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406342,16 +406111,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280834] = 7, - ACTIONS(6376), 1, + [280840] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7971), 1, - anon_sym_PIPE, - STATE(5362), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7192), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406359,16 +406128,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280858] = 7, - ACTIONS(6200), 1, + [280864] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7975), 1, + ACTIONS(7955), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406376,16 +406145,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280882] = 7, - ACTIONS(6408), 1, + [280888] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7977), 1, + ACTIONS(7957), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406393,16 +406162,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280906] = 7, - ACTIONS(6400), 1, + [280912] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7979), 1, + ACTIONS(7959), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406410,16 +406179,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280930] = 7, - ACTIONS(6392), 1, + [280936] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7981), 1, + ACTIONS(7961), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406427,16 +406196,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280954] = 7, - ACTIONS(6384), 1, + [280960] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(7983), 1, + ACTIONS(7963), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406444,16 +406213,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [280978] = 7, - ACTIONS(6376), 1, + [280984] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(7985), 1, + ACTIONS(7965), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406461,16 +406230,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281002] = 7, - ACTIONS(6368), 1, + [281008] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(7987), 1, + ACTIONS(7967), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406478,33 +406247,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281026] = 7, - ACTIONS(6208), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(7989), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, - sym_interpolation, + [281032] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(7969), 1, + anon_sym_SEMI, + STATE(401), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [281058] = 8, + ACTIONS(5), 1, sym_comment, - [281050] = 7, - ACTIONS(6208), 1, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1671), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [281084] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7989), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5612), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(7971), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406512,16 +406300,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281074] = 7, - ACTIONS(6192), 1, + [281108] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7973), 1, + anon_sym_COMMA, + STATE(5630), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [281128] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(7991), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7976), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406529,16 +406332,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281098] = 7, - ACTIONS(6192), 1, + [281152] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7991), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5613), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7978), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406546,16 +406349,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281122] = 7, + [281176] = 7, ACTIONS(6184), 1, anon_sym_POUND_LBRACE, ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7993), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(7980), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406563,16 +406366,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281146] = 7, - ACTIONS(6184), 1, + [281200] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(7993), 1, + ACTIONS(7982), 1, anon_sym_SQUOTE, - STATE(5615), 1, + STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406580,16 +406383,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281170] = 7, - ACTIONS(6200), 1, + [281224] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7995), 1, + ACTIONS(7984), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406597,16 +406400,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281194] = 7, - ACTIONS(6200), 1, + [281248] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7995), 1, - anon_sym_DQUOTE, - STATE(5618), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(7986), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406614,34 +406417,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281218] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(7997), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [281244] = 7, - ACTIONS(6368), 1, + [281272] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(7578), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7986), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5632), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406649,16 +406434,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281268] = 7, - ACTIONS(6368), 1, + [281296] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7999), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(7988), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406666,34 +406451,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281292] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1295), 1, - anon_sym_end, - ACTIONS(4523), 1, - aux_sym__terminator_token1, - ACTIONS(4526), 1, - anon_sym_SEMI, - STATE(348), 1, - sym__terminator, - STATE(1032), 1, - aux_sym__terminator_repeat1, - STATE(5702), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [281318] = 7, - ACTIONS(6384), 1, + [281320] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7192), 1, - anon_sym_GT, - STATE(5363), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7988), 1, + anon_sym_RBRACE, + STATE(5496), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406701,16 +406468,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281342] = 7, - ACTIONS(6376), 1, + [281344] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8001), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(7990), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406718,16 +406485,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281366] = 7, - ACTIONS(6384), 1, + [281368] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8003), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(7990), 1, + anon_sym_RPAREN, + STATE(5497), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406735,68 +406502,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281390] = 7, - ACTIONS(6392), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, - sym_escape_sequence, - ACTIONS(8005), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, - sym_interpolation, + [281392] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1743), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [281418] = 8, + ACTIONS(5), 1, sym_comment, - [281414] = 7, - ACTIONS(6400), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, - sym_escape_sequence, - ACTIONS(8007), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, - sym_interpolation, + ACTIONS(1743), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(7992), 1, + anon_sym_SEMI, + STATE(436), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [281438] = 8, + [281444] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8009), 1, + ACTIONS(7994), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5078), 1, + STATE(5794), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [281464] = 7, - ACTIONS(6392), 1, + [281470] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8011), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7996), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406804,16 +406573,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281488] = 7, - ACTIONS(6192), 1, + [281494] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(7900), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(7998), 1, + anon_sym_RBRACE, + STATE(5746), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406821,16 +406590,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281512] = 7, - ACTIONS(6408), 1, + [281518] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8013), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(7996), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5633), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406838,16 +406607,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281536] = 7, - ACTIONS(6392), 1, + [281542] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8011), 1, - anon_sym_RBRACK, - STATE(5383), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8000), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406855,16 +406624,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281560] = 7, - ACTIONS(6400), 1, + [281566] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8015), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8000), 1, + anon_sym_SQUOTE, + STATE(5634), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406872,16 +406641,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281584] = 7, - ACTIONS(6400), 1, + [281590] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8015), 1, - anon_sym_RBRACE, - STATE(5396), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406889,16 +406658,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281608] = 7, - ACTIONS(6408), 1, + [281614] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8017), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8002), 1, + anon_sym_DQUOTE, + STATE(5635), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406906,16 +406675,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281632] = 7, - ACTIONS(6368), 1, + [281638] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8019), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8004), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406923,16 +406692,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281656] = 7, - ACTIONS(6368), 1, + [281662] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8019), 1, - anon_sym_SLASH, - STATE(5637), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8006), 1, + anon_sym_RBRACE, + STATE(5891), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406940,16 +406709,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281680] = 7, - ACTIONS(6376), 1, + [281686] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8021), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8006), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406957,16 +406726,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281704] = 7, - ACTIONS(6376), 1, + [281710] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8021), 1, - anon_sym_PIPE, - STATE(5640), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8008), 1, + anon_sym_RBRACK, + STATE(5932), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406974,16 +406743,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281728] = 7, - ACTIONS(6208), 1, + [281734] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8023), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5693), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8008), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -406991,51 +406760,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281752] = 7, - ACTIONS(6408), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, - sym_escape_sequence, - ACTIONS(8017), 1, - anon_sym_RPAREN, - STATE(5403), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, - sym_interpolation, + [281758] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(8010), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [281776] = 8, + [281784] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1765), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(129), 1, + ACTIONS(8010), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, + STATE(5504), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [281802] = 8, + [281810] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(902), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -407044,16 +406814,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [281828] = 7, - ACTIONS(6200), 1, + [281836] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8025), 1, + ACTIONS(8012), 1, anon_sym_DQUOTE, - STATE(5686), 1, + STATE(5071), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407061,34 +406831,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281852] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1765), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(8027), 1, - anon_sym_SEMI, - STATE(446), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + [281860] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(8014), 1, + anon_sym_GT, + STATE(5933), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [281878] = 7, - ACTIONS(6200), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [281884] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8025), 1, + ACTIONS(8012), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407096,16 +406865,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281902] = 7, - ACTIONS(6184), 1, + [281908] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8029), 1, + ACTIONS(8016), 1, anon_sym_SQUOTE, STATE(5688), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407113,16 +406882,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281926] = 7, - ACTIONS(6184), 1, + [281932] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8029), 1, + ACTIONS(8016), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407130,16 +406899,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281950] = 7, - ACTIONS(6192), 1, + [281956] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8031), 1, + ACTIONS(8018), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(5689), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407147,16 +406916,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281974] = 7, - ACTIONS(6192), 1, + [281980] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8031), 1, + ACTIONS(8018), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407164,16 +406933,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [281998] = 7, - ACTIONS(6208), 1, + [282004] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8033), 1, + ACTIONS(8020), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(5690), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407181,16 +406950,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282022] = 7, - ACTIONS(6208), 1, + [282028] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8033), 1, + ACTIONS(8020), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407198,16 +406967,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282046] = 7, - ACTIONS(6384), 1, + [282052] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8035), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8022), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407215,16 +406984,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282070] = 7, - ACTIONS(6384), 1, + [282076] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8035), 1, - anon_sym_GT, - STATE(5641), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8024), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407232,34 +407001,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282094] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8037), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5407), 1, - aux_sym_anonymous_function_repeat1, + [282100] = 7, + ACTIONS(6324), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6326), 1, + sym_escape_sequence, + ACTIONS(7998), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282120] = 7, - ACTIONS(6392), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [282124] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8039), 1, + ACTIONS(8026), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5820), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407267,16 +407035,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282144] = 7, - ACTIONS(6392), 1, + [282148] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8039), 1, - anon_sym_RBRACK, - STATE(5642), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8028), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407284,16 +407052,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282168] = 7, - ACTIONS(6400), 1, + [282172] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8041), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8026), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407301,14 +407069,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282192] = 8, + [282196] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8043), 1, + ACTIONS(8030), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -407319,16 +407087,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282218] = 7, - ACTIONS(6400), 1, + [282222] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8041), 1, - anon_sym_RBRACE, - STATE(5643), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8032), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407336,16 +407104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282242] = 7, - ACTIONS(6408), 1, + [282246] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8045), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8034), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407353,16 +407121,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282266] = 7, - ACTIONS(6408), 1, + [282270] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8045), 1, + ACTIONS(8036), 1, anon_sym_RPAREN, - STATE(5647), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407370,34 +407138,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282290] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(882), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5788), 1, - aux_sym_block_repeat1, + [282294] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(8038), 1, + anon_sym_GT, + STATE(5821), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282316] = 7, - ACTIONS(6208), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [282318] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8023), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8038), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407405,16 +407172,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282340] = 8, + [282342] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1613), 1, + ACTIONS(1615), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -407423,16 +407190,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282366] = 7, - ACTIONS(6192), 1, + [282368] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8047), 1, + ACTIONS(8040), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407440,34 +407207,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282390] = 8, + [282392] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1613), 1, + ACTIONS(1615), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3876), 1, + ACTIONS(3910), 1, anon_sym_SEMI, STATE(356), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282416] = 7, - ACTIONS(6200), 1, + [282418] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8049), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8042), 1, + anon_sym_PIPE, + STATE(5855), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407475,34 +407242,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282440] = 8, + [282442] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1613), 1, + ACTIONS(1615), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282466] = 7, - ACTIONS(6200), 1, + [282468] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8051), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8042), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407510,16 +407277,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282490] = 7, - ACTIONS(6200), 1, + [282492] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8053), 1, - anon_sym_DQUOTE, - STATE(5791), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8044), 1, + anon_sym_SLASH, + STATE(5856), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407527,16 +407294,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282514] = 7, - ACTIONS(6184), 1, + [282516] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8055), 1, + ACTIONS(8046), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407544,16 +407311,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282538] = 7, - ACTIONS(6192), 1, + [282540] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8057), 1, + ACTIONS(8048), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407561,16 +407328,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282562] = 7, - ACTIONS(6208), 1, + [282564] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8059), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407578,16 +407345,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282586] = 7, - ACTIONS(6184), 1, + [282588] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8061), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8044), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407595,16 +407362,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282610] = 7, - ACTIONS(6192), 1, + [282612] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1741), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [282638] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8063), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8052), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407612,16 +407397,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282634] = 7, - ACTIONS(6208), 1, + [282662] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8065), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8054), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407629,16 +407414,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282658] = 7, - ACTIONS(6184), 1, + [282686] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8067), 1, + ACTIONS(8056), 1, anon_sym_SQUOTE, - STATE(5169), 1, + STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407646,16 +407431,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282682] = 7, - ACTIONS(6368), 1, + [282710] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8069), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8058), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407663,16 +407448,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282706] = 7, - ACTIONS(6376), 1, + [282734] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8071), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8060), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407680,16 +407465,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282730] = 7, - ACTIONS(6384), 1, + [282758] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8073), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8060), 1, + anon_sym_SLASH, + STATE(5502), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407697,16 +407482,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282754] = 7, - ACTIONS(6392), 1, + [282782] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8075), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8062), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407714,16 +407499,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282778] = 7, - ACTIONS(6400), 1, + [282806] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8077), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8062), 1, + anon_sym_PIPE, + STATE(5514), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407731,16 +407516,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282802] = 7, - ACTIONS(6408), 1, + [282830] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8079), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8064), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407748,52 +407533,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282826] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_RPAREN, - ACTIONS(6018), 1, - aux_sym__terminator_token1, - ACTIONS(8081), 1, - anon_sym_SEMI, - STATE(853), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5701), 1, - aux_sym_source_repeat1, + [282854] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(8064), 1, + anon_sym_GT, + STATE(5517), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282852] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4470), 1, - anon_sym_end, - ACTIONS(6018), 1, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(8084), 1, - anon_sym_SEMI, - STATE(777), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5702), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, + sym_comment, [282878] = 7, - ACTIONS(6184), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8067), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8066), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407802,15 +407568,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [282902] = 7, - ACTIONS(6192), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(7735), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5448), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8066), 1, + anon_sym_RBRACK, + STATE(5550), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407818,34 +407584,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282926] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8087), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, + [282926] = 7, + ACTIONS(6324), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6326), 1, + sym_escape_sequence, + ACTIONS(8068), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [282952] = 7, - ACTIONS(6408), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [282950] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8089), 1, - anon_sym_RPAREN, - STATE(5786), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8068), 1, + anon_sym_RBRACE, + STATE(5553), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407853,16 +407618,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [282976] = 7, - ACTIONS(6408), 1, + [282974] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8089), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8070), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407870,16 +407635,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283000] = 7, - ACTIONS(6400), 1, + [282998] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8091), 1, - anon_sym_RBRACE, - STATE(5787), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8070), 1, + anon_sym_SLASH, + STATE(5669), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407887,16 +407652,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283024] = 7, - ACTIONS(6208), 1, + [283022] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8093), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8072), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407904,14 +407669,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283048] = 8, + [283046] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8095), 1, + ACTIONS(8074), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -407922,69 +407687,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [283074] = 8, + [283072] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8095), 1, + ACTIONS(8074), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [283100] = 8, + [283098] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1741), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3914), 1, + anon_sym_SEMI, + STATE(434), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [283124] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1653), 1, + ACTIONS(1741), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5881), 1, + STATE(5642), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [283126] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(8053), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, [283150] = 7, - ACTIONS(6184), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8097), 1, - anon_sym_SQUOTE, - STATE(5801), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8072), 1, + anon_sym_PIPE, + STATE(5670), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -407993,15 +407759,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [283174] = 7, - ACTIONS(6184), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8097), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8076), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408010,15 +407776,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [283198] = 7, - ACTIONS(6192), 1, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8099), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5802), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8078), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408027,15 +407793,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [283222] = 7, - ACTIONS(6192), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8099), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8076), 1, + anon_sym_GT, + STATE(5673), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408044,15 +407810,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [283246] = 7, - ACTIONS(6192), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8101), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8080), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408060,69 +407826,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283270] = 7, - ACTIONS(6208), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(8103), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5814), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, - sym_interpolation, + [283270] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(8082), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5657), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [283294] = 8, + [283296] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(1535), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(8105), 1, + ACTIONS(8084), 1, anon_sym_SEMI, STATE(439), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [283320] = 8, + [283322] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, ACTIONS(1535), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [283346] = 7, - ACTIONS(6408), 1, + [283348] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8107), 1, + ACTIONS(8086), 1, anon_sym_RPAREN, STATE(5765), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408130,16 +407897,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283370] = 7, - ACTIONS(6408), 1, + [283372] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8107), 1, + ACTIONS(8086), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408147,16 +407914,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283394] = 7, - ACTIONS(6400), 1, + [283396] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8109), 1, + ACTIONS(8088), 1, anon_sym_RBRACE, STATE(5766), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408164,16 +407931,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283418] = 7, - ACTIONS(6400), 1, + [283420] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8109), 1, + ACTIONS(8088), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408181,16 +407948,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283442] = 7, - ACTIONS(6392), 1, + [283444] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8111), 1, + ACTIONS(8090), 1, anon_sym_RBRACK, STATE(5767), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408198,16 +407965,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283466] = 7, - ACTIONS(6392), 1, + [283468] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8111), 1, + ACTIONS(8090), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408215,16 +407982,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283490] = 7, - ACTIONS(6384), 1, + [283492] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8113), 1, + ACTIONS(8092), 1, anon_sym_GT, STATE(5768), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408232,16 +407999,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283514] = 7, - ACTIONS(6384), 1, + [283516] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8113), 1, + ACTIONS(8092), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408249,16 +408016,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283538] = 7, - ACTIONS(6376), 1, + [283540] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8115), 1, + ACTIONS(8094), 1, anon_sym_PIPE, STATE(5769), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408266,16 +408033,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283562] = 7, - ACTIONS(6376), 1, + [283564] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8115), 1, + ACTIONS(8094), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408283,16 +408050,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283586] = 7, - ACTIONS(6368), 1, + [283588] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8117), 1, + ACTIONS(8096), 1, anon_sym_SLASH, STATE(5770), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408300,16 +408067,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283610] = 7, - ACTIONS(6368), 1, + [283612] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8117), 1, + ACTIONS(8096), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408317,16 +408084,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283634] = 7, - ACTIONS(6184), 1, + [283636] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8119), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8080), 1, + anon_sym_RBRACK, + STATE(5676), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408334,16 +408101,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283658] = 7, - ACTIONS(6200), 1, + [283660] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8121), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8098), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408351,67 +408118,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283682] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8123), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, + [283684] = 7, + ACTIONS(6324), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6326), 1, + sym_escape_sequence, + ACTIONS(8098), 1, + anon_sym_RBRACE, + STATE(5677), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [283708] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1313), 1, - anon_sym_end, - ACTIONS(8125), 1, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(8128), 1, - anon_sym_SEMI, - STATE(347), 1, - sym__terminator, - STATE(1032), 1, - aux_sym__terminator_repeat1, - STATE(5702), 1, - aux_sym_source_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [283734] = 5, - ACTIONS(5), 1, sym_comment, - ACTIONS(8131), 1, - anon_sym_COMMA, - STATE(5738), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3283), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [283754] = 7, - ACTIONS(6208), 1, + [283708] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8134), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8100), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408419,16 +408152,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283778] = 7, - ACTIONS(6208), 1, + [283732] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8134), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5709), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8100), 1, + anon_sym_RPAREN, + STATE(5678), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408436,16 +408169,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283802] = 7, - ACTIONS(6192), 1, + [283756] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8136), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8078), 1, + anon_sym_RPAREN, + STATE(5554), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408453,33 +408186,70 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283826] = 7, - ACTIONS(6192), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, - sym_escape_sequence, - ACTIONS(8136), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5718), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, - sym_interpolation, + [283780] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1669), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, + [283806] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1669), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, aux_sym__terminator_token1, + ACTIONS(8102), 1, + anon_sym_SEMI, + STATE(403), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [283832] = 8, + ACTIONS(5), 1, sym_comment, - [283850] = 7, - ACTIONS(6184), 1, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1713), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [283858] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8138), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8104), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408487,16 +408257,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283874] = 7, - ACTIONS(6184), 1, + [283882] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8138), 1, - anon_sym_SQUOTE, - STATE(5734), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8106), 1, + anon_sym_RPAREN, + STATE(5857), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408504,16 +408274,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283898] = 7, - ACTIONS(6200), 1, + [283906] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8140), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8106), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408521,16 +408291,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283922] = 7, - ACTIONS(6200), 1, + [283930] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8140), 1, - anon_sym_DQUOTE, - STATE(5735), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8108), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408538,16 +408308,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283946] = 7, - ACTIONS(6400), 1, + [283954] = 7, + ACTIONS(8110), 1, + anon_sym_PIPE, + ACTIONS(8112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(8115), 1, sym_escape_sequence, - ACTIONS(8091), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408555,16 +408325,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283970] = 7, - ACTIONS(6392), 1, + [283978] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(5837), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8118), 1, + anon_sym_RBRACE, + STATE(5854), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408572,16 +408342,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [283994] = 7, - ACTIONS(6368), 1, + [284002] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8144), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8014), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408589,16 +408359,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284018] = 7, - ACTIONS(6376), 1, + [284026] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8146), 1, + ACTIONS(8120), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5934), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408606,16 +408376,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284042] = 7, - ACTIONS(6384), 1, + [284050] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8148), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8120), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408623,16 +408393,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284066] = 7, - ACTIONS(6392), 1, + [284074] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8150), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8122), 1, + anon_sym_SLASH, + STATE(5935), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408640,16 +408410,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284090] = 7, - ACTIONS(6400), 1, + [284098] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8152), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8122), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408657,16 +408427,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284114] = 7, - ACTIONS(6408), 1, + [284122] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8154), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8124), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408674,34 +408444,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284138] = 8, + [284146] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8156), 1, + ACTIONS(8126), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [284164] = 7, - ACTIONS(6208), 1, + [284172] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8103), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8128), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408709,16 +408479,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284188] = 7, - ACTIONS(6368), 1, + [284196] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8158), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8130), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408726,16 +408496,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284212] = 7, - ACTIONS(6368), 1, + [284220] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8158), 1, - anon_sym_SLASH, - STATE(5749), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8132), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408743,16 +408513,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284236] = 7, - ACTIONS(6376), 1, + [284244] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8160), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8134), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408760,16 +408530,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284260] = 7, - ACTIONS(6376), 1, + [284268] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8160), 1, - anon_sym_PIPE, - STATE(5750), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8134), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5754), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408777,34 +408547,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284284] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8162), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5842), 1, - aux_sym_anonymous_function_repeat1, + [284292] = 7, + ACTIONS(6236), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6238), 1, + sym_escape_sequence, + ACTIONS(8136), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [284310] = 7, - ACTIONS(6384), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [284316] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8164), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8136), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5693), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408812,16 +408581,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284334] = 7, - ACTIONS(6384), 1, + [284340] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8164), 1, - anon_sym_GT, - STATE(5751), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8138), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408829,16 +408598,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284358] = 7, - ACTIONS(6392), 1, + [284364] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8166), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8140), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408846,16 +408615,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284382] = 7, - ACTIONS(6408), 1, + [284388] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8168), 1, + ACTIONS(8142), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408863,16 +408632,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284406] = 7, - ACTIONS(6400), 1, + [284412] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8170), 1, + ACTIONS(8144), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408880,16 +408649,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284430] = 7, - ACTIONS(6392), 1, + [284436] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8172), 1, + ACTIONS(8146), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408897,16 +408666,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284454] = 7, - ACTIONS(6384), 1, + [284460] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8174), 1, + ACTIONS(8148), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408914,16 +408683,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284478] = 7, - ACTIONS(6376), 1, + [284484] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8176), 1, + ACTIONS(8150), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408931,16 +408700,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284502] = 7, - ACTIONS(6368), 1, + [284508] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8178), 1, + ACTIONS(8152), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408948,16 +408717,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284526] = 7, - ACTIONS(6392), 1, + [284532] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8166), 1, - anon_sym_RBRACK, - STATE(5752), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8138), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5756), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408965,16 +408734,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284550] = 7, - ACTIONS(6400), 1, + [284556] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8180), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8154), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408982,16 +408751,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284574] = 7, - ACTIONS(6400), 1, + [284580] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8180), 1, - anon_sym_RBRACE, - STATE(5753), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8154), 1, + anon_sym_SQUOTE, + STATE(5757), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -408999,16 +408768,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284598] = 7, - ACTIONS(6408), 1, + [284604] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8182), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8156), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409016,16 +408785,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284622] = 7, - ACTIONS(6408), 1, + [284628] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8182), 1, - anon_sym_RPAREN, - STATE(5754), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8156), 1, + anon_sym_DQUOTE, + STATE(5758), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409033,16 +408802,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284646] = 7, - ACTIONS(6392), 1, + [284652] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8142), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(7976), 1, + anon_sym_RPAREN, + STATE(5890), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409050,16 +408819,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284670] = 7, - ACTIONS(6384), 1, + [284676] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8184), 1, - anon_sym_GT, - STATE(5838), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8158), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409067,16 +408836,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284694] = 7, - ACTIONS(6384), 1, + [284700] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8184), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8160), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409084,16 +408853,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284718] = 7, - ACTIONS(6376), 1, + [284724] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8186), 1, - anon_sym_PIPE, - STATE(5839), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8162), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409101,16 +408870,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284742] = 7, - ACTIONS(6376), 1, + [284748] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8186), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8164), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409118,31 +408887,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284766] = 5, + [284772] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8190), 1, + ACTIONS(8168), 1, anon_sym_COMMA, - STATE(5073), 1, + STATE(5090), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(8188), 3, + ACTIONS(8166), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, - [284786] = 7, - ACTIONS(6368), 1, + [284792] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8192), 1, - anon_sym_SLASH, - STATE(5840), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8140), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5694), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409150,16 +408919,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284810] = 7, - ACTIONS(6368), 1, + [284816] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8192), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8170), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409167,34 +408936,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284834] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1653), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3906), 1, - anon_sym_SEMI, - STATE(399), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + [284840] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(8170), 1, + anon_sym_SQUOTE, + STATE(5695), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [284860] = 7, - ACTIONS(6392), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [284864] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7647), 1, - anon_sym_RBRACK, - STATE(5108), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8172), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409202,16 +408970,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284884] = 7, - ACTIONS(6408), 1, + [284888] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8194), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8174), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409219,16 +408987,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284908] = 7, - ACTIONS(6400), 1, + [284912] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8196), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8172), 1, + anon_sym_DQUOTE, + STATE(5696), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409236,34 +409004,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284932] = 8, + [284936] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1653), 1, + ACTIONS(874), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5692), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [284958] = 7, - ACTIONS(6368), 1, + [284962] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8198), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8176), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409271,50 +409039,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [284982] = 7, - ACTIONS(6368), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, - sym_escape_sequence, - ACTIONS(8198), 1, - anon_sym_SLASH, - STATE(5695), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [284986] = 8, + ACTIONS(5), 1, sym_comment, - [285006] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(8200), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(8178), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [285030] = 7, - ACTIONS(6208), 1, + [285012] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8202), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8180), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409322,68 +409074,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285054] = 7, - ACTIONS(6376), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, - sym_escape_sequence, - ACTIONS(8204), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, - sym_interpolation, + [285036] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(8182), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5499), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [285062] = 8, + ACTIONS(5), 1, sym_comment, - [285078] = 7, - ACTIONS(6376), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, - sym_escape_sequence, - ACTIONS(8204), 1, - anon_sym_PIPE, - STATE(5696), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, - sym_interpolation, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(8178), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5561), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [285102] = 8, + [285088] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8037), 1, + ACTIONS(8182), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [285128] = 7, - ACTIONS(6208), 1, + [285114] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1719), 1, + ts_builtin_sym_end, + ACTIONS(8184), 1, + anon_sym_SEMI, + STATE(441), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(5602), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [285140] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8206), 1, + ACTIONS(8186), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409391,16 +409163,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285152] = 7, - ACTIONS(6384), 1, + [285164] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8208), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8118), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409408,16 +409180,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285176] = 7, - ACTIONS(6384), 1, + [285188] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8208), 1, - anon_sym_GT, - STATE(5697), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8180), 1, + anon_sym_SLASH, + STATE(5777), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409425,16 +409197,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285200] = 7, - ACTIONS(6392), 1, + [285212] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8210), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8188), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409442,16 +409214,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285224] = 7, - ACTIONS(6208), 1, + [285236] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8206), 1, + ACTIONS(8186), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5095), 1, + STATE(5088), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409459,16 +409231,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285248] = 7, - ACTIONS(6184), 1, + [285260] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8212), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8188), 1, + anon_sym_PIPE, + STATE(5778), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409476,16 +409248,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285272] = 7, - ACTIONS(6192), 1, + [285284] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8214), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8190), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409493,16 +409265,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285296] = 8, + [285308] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(898), 1, + ACTIONS(890), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -409511,16 +409283,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [285322] = 7, - ACTIONS(6200), 1, + [285334] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8216), 1, + ACTIONS(8192), 1, anon_sym_DQUOTE, STATE(5829), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409528,16 +409300,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285346] = 7, - ACTIONS(6200), 1, + [285358] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8216), 1, + ACTIONS(8192), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409545,16 +409317,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285370] = 7, - ACTIONS(6184), 1, + [285382] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8218), 1, + ACTIONS(8194), 1, anon_sym_SQUOTE, STATE(5830), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409562,16 +409334,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285394] = 7, - ACTIONS(6184), 1, + [285406] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8218), 1, + ACTIONS(8194), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409579,16 +409351,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285418] = 7, - ACTIONS(6192), 1, + [285430] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8220), 1, + ACTIONS(8196), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(5831), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409596,16 +409368,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285442] = 7, - ACTIONS(6192), 1, + [285454] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8220), 1, + ACTIONS(8196), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409613,16 +409385,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285466] = 7, - ACTIONS(6208), 1, + [285478] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8222), 1, + ACTIONS(8198), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(5832), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409630,16 +409402,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285490] = 7, - ACTIONS(6208), 1, + [285502] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8222), 1, + ACTIONS(8198), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409647,16 +409419,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285514] = 7, - ACTIONS(6392), 1, + [285526] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8210), 1, - anon_sym_RBRACK, - STATE(5698), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8190), 1, + anon_sym_GT, + STATE(5779), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409664,16 +409436,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285538] = 7, - ACTIONS(6408), 1, + [285550] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8224), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8200), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409681,16 +409453,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285562] = 7, - ACTIONS(6208), 1, + [285574] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8226), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8200), 1, + anon_sym_RBRACK, + STATE(5780), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409698,16 +409470,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285586] = 7, - ACTIONS(6400), 1, + [285598] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8228), 1, + ACTIONS(8202), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409715,16 +409487,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285610] = 7, - ACTIONS(6208), 1, + [285622] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8230), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8202), 1, + anon_sym_RBRACE, + STATE(5786), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409732,16 +409504,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285634] = 7, - ACTIONS(6192), 1, + [285646] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8232), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8204), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409749,14 +409521,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285658] = 8, + [285670] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8234), 1, + ACTIONS(8206), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -409767,16 +409539,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [285684] = 7, - ACTIONS(6400), 1, + [285696] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8236), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8204), 1, + anon_sym_RPAREN, + STATE(5789), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409784,16 +409556,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285708] = 7, - ACTIONS(6400), 1, + [285720] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8236), 1, - anon_sym_RBRACE, - STATE(5699), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + ACTIONS(8208), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409801,16 +409573,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285732] = 7, - ACTIONS(6184), 1, + [285744] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8238), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8210), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409818,16 +409590,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285756] = 7, - ACTIONS(6200), 1, + [285768] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8240), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8212), 1, + anon_sym_RBRACK, + STATE(5851), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409835,16 +409607,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285780] = 7, - ACTIONS(6408), 1, + [285792] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8242), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8212), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409852,16 +409624,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285804] = 8, + [285816] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1569), 1, + ACTIONS(1567), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, @@ -409870,16 +409642,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [285830] = 7, - ACTIONS(6192), 1, + [285842] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8047), 1, + ACTIONS(8040), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5104), 1, + STATE(5097), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409887,34 +409659,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285854] = 8, + [285866] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1569), 1, + ACTIONS(1567), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(3949), 1, + ACTIONS(3922), 1, anon_sym_SEMI, STATE(368), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [285880] = 7, - ACTIONS(6392), 1, + [285892] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8244), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8214), 1, + anon_sym_GT, + STATE(5838), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409922,34 +409694,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285904] = 8, + [285916] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1569), 1, + ACTIONS(1567), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [285930] = 7, - ACTIONS(6200), 1, + [285942] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8246), 1, + ACTIONS(8216), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409957,16 +409729,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285954] = 7, - ACTIONS(6184), 1, + [285966] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8248), 1, + ACTIONS(8218), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409974,16 +409746,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [285978] = 7, - ACTIONS(6192), 1, + [285990] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8250), 1, + ACTIONS(8220), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -409991,16 +409763,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286002] = 7, - ACTIONS(6208), 1, + [286014] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8252), 1, + ACTIONS(8222), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410008,16 +409780,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286026] = 7, - ACTIONS(6408), 1, + [286038] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8242), 1, - anon_sym_RPAREN, - STATE(5700), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8214), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410025,16 +409797,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286050] = 7, - ACTIONS(6408), 1, + [286062] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8254), 1, - anon_sym_RPAREN, - STATE(5098), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8224), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410042,52 +409814,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286074] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1669), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, + [286086] = 7, + ACTIONS(6340), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(8226), 1, + anon_sym_PIPE, + STATE(5837), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286100] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(8256), 1, - anon_sym_SEMI, - STATE(403), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + sym_comment, + [286110] = 7, + ACTIONS(6332), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(8228), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286126] = 7, - ACTIONS(6392), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [286134] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8258), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + ACTIONS(8230), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410095,16 +409865,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286150] = 7, - ACTIONS(6384), 1, + [286158] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8260), 1, + ACTIONS(8232), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410112,16 +409882,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286174] = 7, - ACTIONS(6376), 1, + [286182] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8262), 1, + ACTIONS(8226), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410129,16 +409899,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286198] = 7, - ACTIONS(6368), 1, + [286206] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8264), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8234), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410146,16 +409916,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286222] = 7, - ACTIONS(6208), 1, + [286230] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8202), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5190), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8236), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410163,70 +409933,68 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286246] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8266), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, + [286254] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(8238), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286272] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8268), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5161), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [286278] = 7, + ACTIONS(6204), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(8240), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286298] = 8, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [286302] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, anon_sym_SEMI, - ACTIONS(8268), 1, - anon_sym_end, - STATE(132), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5705), 1, - aux_sym_anonymous_function_repeat1, + STATE(5164), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286324] = 7, - ACTIONS(6200), 1, + [286328] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8270), 1, - anon_sym_DQUOTE, - STATE(5929), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8224), 1, + anon_sym_SLASH, + STATE(5836), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410234,84 +410002,85 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286348] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(8270), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, + [286352] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(3928), 1, + anon_sym_SEMI, + STATE(398), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [286378] = 5, + ACTIONS(5), 1, sym_comment, - [286372] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(8272), 1, - anon_sym_SQUOTE, - STATE(5931), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, - ACTIONS(3), 2, + ACTIONS(7441), 1, + anon_sym_COMMA, + STATE(5221), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, + ACTIONS(3577), 3, + anon_sym_RPAREN, + anon_sym_when, + anon_sym_DASH_GT, + [286398] = 8, + ACTIONS(5), 1, sym_comment, - [286396] = 7, - ACTIONS(6184), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, - sym_escape_sequence, - ACTIONS(8272), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, - sym_interpolation, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(7194), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5740), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [286424] = 8, + ACTIONS(5), 1, sym_comment, - [286420] = 7, - ACTIONS(6400), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, - sym_escape_sequence, - ACTIONS(8274), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, - sym_interpolation, + ACTIONS(1713), 1, + anon_sym_RPAREN, + ACTIONS(3720), 1, + aux_sym__terminator_token1, + ACTIONS(8242), 1, + anon_sym_SEMI, + STATE(423), 1, + sym__terminator, + STATE(1030), 1, + aux_sym__terminator_repeat1, + STATE(5165), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [286444] = 7, - ACTIONS(6184), 1, + [286450] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8276), 1, + ACTIONS(8244), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410319,16 +410088,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286468] = 7, - ACTIONS(6392), 1, + [286474] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8278), 1, + ACTIONS(8246), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410336,14 +410105,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286492] = 8, + [286498] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8280), 1, + ACTIONS(8248), 1, anon_sym_end, STATE(132), 1, sym__terminator, @@ -410354,140 +410123,138 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286518] = 8, + [286524] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8280), 1, + ACTIONS(8248), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286544] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, + [286550] = 7, + ACTIONS(6324), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6326), 1, + sym_escape_sequence, + ACTIONS(8250), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, - ACTIONS(8266), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5635), 1, - aux_sym_anonymous_function_repeat1, + sym_comment, + [286574] = 7, + ACTIONS(6340), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6342), 1, + sym_escape_sequence, + ACTIONS(8252), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286570] = 8, - ACTIONS(5), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, sym_comment, - ACTIONS(680), 1, + [286598] = 7, + ACTIONS(6332), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(8254), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(1763), 1, + sym_comment, + [286622] = 7, + ACTIONS(6216), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6218), 1, + sym_escape_sequence, + ACTIONS(8256), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5658), 1, - aux_sym_block_repeat1, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286596] = 8, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [286646] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(3917), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(444), 1, + ACTIONS(8258), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, - STATE(1031), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286622] = 8, + [286672] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1763), 1, + ACTIONS(906), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5214), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286648] = 7, - ACTIONS(6200), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, - sym_escape_sequence, - ACTIONS(8282), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [286672] = 7, - ACTIONS(6208), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(8284), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, - sym_interpolation, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [286696] = 7, - ACTIONS(6208), 1, + [286698] = 7, + ACTIONS(8260), 1, + anon_sym_GT, + ACTIONS(8262), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(8265), 1, sym_escape_sequence, - ACTIONS(8284), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5816), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410495,52 +410262,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286720] = 8, + [286722] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1589), 1, + ACTIONS(1587), 1, anon_sym_RPAREN, - ACTIONS(3769), 1, + ACTIONS(3720), 1, aux_sym__terminator_token1, - ACTIONS(8286), 1, + ACTIONS(8268), 1, anon_sym_SEMI, STATE(373), 1, sym__terminator, - STATE(1031), 1, + STATE(1030), 1, aux_sym__terminator_repeat1, - STATE(5500), 1, + STATE(5165), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286746] = 8, + [286748] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1589), 1, + ACTIONS(1587), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5354), 1, + STATE(5164), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [286772] = 7, - ACTIONS(6408), 1, + [286774] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8288), 1, + ACTIONS(8270), 1, anon_sym_RPAREN, STATE(5905), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410548,16 +410315,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286796] = 7, - ACTIONS(6408), 1, + [286798] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8288), 1, + ACTIONS(8270), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410565,16 +410332,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286820] = 7, - ACTIONS(6400), 1, + [286822] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8290), 1, + ACTIONS(8272), 1, anon_sym_RBRACE, STATE(5906), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410582,16 +410349,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286844] = 7, - ACTIONS(6400), 1, + [286846] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8290), 1, + ACTIONS(8272), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410599,16 +410366,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286868] = 7, - ACTIONS(6392), 1, + [286870] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8292), 1, + ACTIONS(8274), 1, anon_sym_RBRACK, STATE(5907), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410616,16 +410383,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286892] = 7, - ACTIONS(6392), 1, + [286894] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8292), 1, + ACTIONS(8274), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410633,16 +410400,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286916] = 7, - ACTIONS(6384), 1, + [286918] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8294), 1, + ACTIONS(8276), 1, anon_sym_GT, STATE(5908), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410650,16 +410417,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286940] = 7, - ACTIONS(6384), 1, + [286942] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8294), 1, + ACTIONS(8276), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410667,16 +410434,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286964] = 7, - ACTIONS(6376), 1, + [286966] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8296), 1, + ACTIONS(8278), 1, anon_sym_PIPE, STATE(5909), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410684,16 +410451,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [286988] = 7, - ACTIONS(6376), 1, + [286990] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8296), 1, + ACTIONS(8278), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410701,16 +410468,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287012] = 7, - ACTIONS(6368), 1, + [287014] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8298), 1, + ACTIONS(8280), 1, anon_sym_SLASH, STATE(5910), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410718,16 +410485,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287036] = 7, - ACTIONS(6368), 1, + [287038] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8298), 1, + ACTIONS(8280), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410735,16 +410502,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287060] = 7, - ACTIONS(6192), 1, + [287062] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8300), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8282), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410752,16 +410519,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287084] = 7, - ACTIONS(6192), 1, + [287086] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8300), 1, + ACTIONS(8284), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5817), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410769,16 +410536,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287108] = 7, - ACTIONS(6184), 1, + [287110] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8302), 1, + ACTIONS(8286), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410786,16 +410553,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287132] = 7, - ACTIONS(6184), 1, + [287134] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8302), 1, - anon_sym_SQUOTE, - STATE(5821), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8288), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410803,16 +410570,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287156] = 7, - ACTIONS(6200), 1, + [287158] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8304), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8290), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410820,16 +410587,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287180] = 7, - ACTIONS(6200), 1, + [287182] = 7, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8304), 1, - anon_sym_DQUOTE, - STATE(5822), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8290), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5875), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410837,34 +410604,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287204] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1671), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, + [287206] = 7, + ACTIONS(6184), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, [287230] = 7, - ACTIONS(6384), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8306), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8292), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5876), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410873,15 +410639,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [287254] = 7, - ACTIONS(6376), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8308), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8294), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410890,15 +410656,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [287278] = 7, - ACTIONS(6368), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8310), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8294), 1, + anon_sym_SQUOTE, + STATE(5877), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410907,15 +410673,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [287302] = 7, - ACTIONS(6368), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8312), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8296), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410924,15 +410690,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [287326] = 7, - ACTIONS(6376), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8314), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8296), 1, + anon_sym_DQUOTE, + STATE(5878), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410941,15 +410707,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [287350] = 7, - ACTIONS(6384), 1, + ACTIONS(8298), 1, + anon_sym_RBRACK, + ACTIONS(8300), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(8303), 1, sym_escape_sequence, - ACTIONS(8316), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -410957,50 +410723,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287374] = 7, - ACTIONS(6392), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, - sym_escape_sequence, - ACTIONS(8318), 1, - anon_sym_RBRACK, - STATE(5124), 1, - aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, - sym_interpolation, + [287374] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym__terminator_token1, + ACTIONS(7220), 1, + anon_sym_SEMI, + ACTIONS(8306), 1, + anon_sym_end, + STATE(132), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(5369), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [287400] = 8, + ACTIONS(5), 1, sym_comment, - [287398] = 7, - ACTIONS(6400), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, - sym_escape_sequence, - ACTIONS(8320), 1, - anon_sym_RBRACE, - STATE(5102), 1, - aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, - sym_interpolation, + ACTIONS(1313), 1, + anon_sym_end, + ACTIONS(8308), 1, + aux_sym__terminator_token1, + ACTIONS(8311), 1, + anon_sym_SEMI, + STATE(347), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(5558), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [287422] = 7, - ACTIONS(6408), 1, + [287426] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8322), 1, + ACTIONS(8314), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411008,16 +410776,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287446] = 7, - ACTIONS(6368), 1, + [287450] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8324), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + ACTIONS(8316), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411025,16 +410793,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287470] = 7, - ACTIONS(6368), 1, + [287474] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8324), 1, + ACTIONS(8318), 1, anon_sym_SLASH, - STATE(5885), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411042,16 +410810,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287494] = 7, - ACTIONS(6376), 1, + [287498] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8326), 1, + ACTIONS(8320), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411059,16 +410827,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287518] = 7, - ACTIONS(6376), 1, + [287522] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8326), 1, - anon_sym_PIPE, - STATE(5886), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8322), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411076,16 +410844,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287542] = 7, - ACTIONS(6384), 1, + [287546] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8328), 1, - anon_sym_GT, - STATE(5129), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8324), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411093,34 +410861,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287566] = 8, + [287570] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(7211), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - ACTIONS(8330), 1, + ACTIONS(8326), 1, anon_sym_end, STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5161), 1, + STATE(5369), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [287592] = 7, - ACTIONS(6208), 1, + [287596] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8332), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8328), 1, + anon_sym_RBRACE, + STATE(5187), 1, + aux_sym__quoted_i_curly_repeat1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411128,16 +410896,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287616] = 7, - ACTIONS(6192), 1, + [287620] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8334), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8330), 1, + anon_sym_RPAREN, + STATE(5188), 1, + aux_sym__quoted_i_parenthesis_repeat1, + STATE(6137), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [287644] = 7, + ACTIONS(6332), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6334), 1, + sym_escape_sequence, + ACTIONS(8332), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411145,16 +410930,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287640] = 7, - ACTIONS(6184), 1, + [287668] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8336), 1, + ACTIONS(8244), 1, anon_sym_SQUOTE, - STATE(5128), 1, + STATE(5135), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411162,16 +410947,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287664] = 7, - ACTIONS(6184), 1, + [287692] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8276), 1, - anon_sym_SQUOTE, - STATE(5135), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8332), 1, + anon_sym_SLASH, + STATE(5892), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411179,16 +410964,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287688] = 7, - ACTIONS(6200), 1, + [287716] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8338), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8334), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411196,34 +410981,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287712] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(1651), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5354), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [287738] = 7, - ACTIONS(6200), 1, + [287740] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8340), 1, + ACTIONS(8336), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411231,16 +410998,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287762] = 7, - ACTIONS(6384), 1, + [287764] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8328), 1, - anon_sym_GT, - STATE(5887), 1, - aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + ACTIONS(8334), 1, + anon_sym_PIPE, + STATE(5893), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411248,16 +411015,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287786] = 7, - ACTIONS(6408), 1, + [287788] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8342), 1, + ACTIONS(8338), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411265,16 +411032,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287810] = 7, - ACTIONS(6400), 1, + [287812] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8344), 1, + ACTIONS(8340), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411282,16 +411049,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287834] = 7, - ACTIONS(6392), 1, + [287836] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8346), 1, + ACTIONS(8342), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411299,16 +411066,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287858] = 7, - ACTIONS(6384), 1, + [287860] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6386), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8348), 1, + ACTIONS(8344), 1, anon_sym_GT, - STATE(5129), 1, + STATE(5860), 1, aux_sym__quoted_i_angle_repeat1, - STATE(6010), 1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411316,16 +411083,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287882] = 7, - ACTIONS(6376), 1, + [287884] = 7, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8350), 1, + ACTIONS(8346), 1, anon_sym_PIPE, - STATE(5133), 1, + STATE(5747), 1, aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411333,16 +411100,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287906] = 7, - ACTIONS(6368), 1, + [287908] = 7, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8352), 1, + ACTIONS(8348), 1, anon_sym_SLASH, - STATE(5150), 1, + STATE(5560), 1, aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411350,16 +411117,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287930] = 7, - ACTIONS(6392), 1, + [287932] = 7, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8354), 1, + ACTIONS(8350), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [287956] = 7, + ACTIONS(6348), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6350), 1, + sym_escape_sequence, + ACTIONS(8350), 1, + anon_sym_GT, + STATE(5894), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, + sym_interpolation, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [287980] = 7, + ACTIONS(6356), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6358), 1, + sym_escape_sequence, + ACTIONS(8352), 1, anon_sym_RBRACK, - STATE(5124), 1, + STATE(5887), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411367,16 +411168,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287954] = 7, - ACTIONS(6392), 1, + [288004] = 7, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8354), 1, + ACTIONS(8352), 1, anon_sym_RBRACK, - STATE(5888), 1, + STATE(5895), 1, aux_sym__quoted_i_square_repeat1, - STATE(6092), 1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411384,16 +411185,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [287978] = 7, - ACTIONS(6400), 1, + [288028] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8356), 1, + ACTIONS(8354), 1, anon_sym_RBRACE, - STATE(5102), 1, + STATE(5187), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411401,16 +411202,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288002] = 7, - ACTIONS(6400), 1, + [288052] = 7, + ACTIONS(6324), 1, anon_sym_POUND_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(8356), 1, + ACTIONS(8354), 1, anon_sym_RBRACE, - STATE(5889), 1, + STATE(5897), 1, aux_sym__quoted_i_curly_repeat1, - STATE(6148), 1, + STATE(6138), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411418,16 +411219,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288026] = 7, - ACTIONS(6408), 1, + [288076] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8358), 1, + ACTIONS(8356), 1, anon_sym_RPAREN, - STATE(5098), 1, + STATE(5188), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411435,16 +411236,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288050] = 7, - ACTIONS(6408), 1, + [288100] = 7, + ACTIONS(6216), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6218), 1, sym_escape_sequence, - ACTIONS(8358), 1, + ACTIONS(8356), 1, anon_sym_RPAREN, - STATE(5890), 1, + STATE(5898), 1, aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + STATE(6137), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411452,67 +411253,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288074] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1651), 1, - anon_sym_RPAREN, - ACTIONS(3769), 1, - aux_sym__terminator_token1, - ACTIONS(3941), 1, - anon_sym_SEMI, - STATE(398), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(5500), 1, - aux_sym_block_repeat2, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - [288100] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(7474), 1, - anon_sym_COMMA, - STATE(5221), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3355), 3, - anon_sym_RPAREN, - anon_sym_when, - anon_sym_DASH_GT, - [288120] = 8, + [288124] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(680), 1, aux_sym__terminator_token1, - ACTIONS(1651), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7220), 1, anon_sym_SEMI, - STATE(129), 1, + ACTIONS(8358), 1, + anon_sym_end, + STATE(132), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5835), 1, - aux_sym_block_repeat1, + STATE(5790), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [288146] = 7, - ACTIONS(6192), 1, + [288150] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(8360), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5940), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + anon_sym_DQUOTE, + STATE(5939), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411520,16 +411288,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288170] = 7, - ACTIONS(6192), 1, + [288174] = 7, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(8360), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411537,16 +411305,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288194] = 7, - ACTIONS(6208), 1, + [288198] = 7, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6198), 1, sym_escape_sequence, ACTIONS(8362), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5939), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + anon_sym_SQUOTE, + STATE(5938), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411554,34 +411322,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288218] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(906), 1, - anon_sym_RPAREN, - ACTIONS(7217), 1, - anon_sym_SEMI, - STATE(129), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5214), 1, - aux_sym_block_repeat1, + [288222] = 7, + ACTIONS(6196), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + sym_escape_sequence, + ACTIONS(8362), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - [288244] = 7, - ACTIONS(6208), 1, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [288246] = 7, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8362), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8364), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5937), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411589,34 +411356,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288268] = 8, - ACTIONS(5), 1, - sym_comment, - ACTIONS(680), 1, - aux_sym__terminator_token1, - ACTIONS(7211), 1, - anon_sym_SEMI, + [288270] = 7, + ACTIONS(6184), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + sym_escape_sequence, ACTIONS(8364), 1, - anon_sym_end, - STATE(132), 1, - sym__terminator, - STATE(1026), 1, - aux_sym__terminator_repeat1, - STATE(5843), 1, - aux_sym_anonymous_function_repeat1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, + sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, [288294] = 7, - ACTIONS(6368), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(8366), 1, - anon_sym_SLASH, - STATE(5150), 1, - aux_sym__quoted_i_slash_repeat1, - STATE(6024), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411625,15 +411391,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288318] = 7, - ACTIONS(6376), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6378), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8368), 1, - anon_sym_PIPE, - STATE(5133), 1, - aux_sym__quoted_i_bar_repeat1, - STATE(6116), 1, + ACTIONS(8366), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5840), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411642,15 +411408,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288342] = 7, - ACTIONS(6408), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(7371), 1, - anon_sym_RPAREN, - STATE(5834), 1, - aux_sym__quoted_i_parenthesis_repeat1, - STATE(6074), 1, + ACTIONS(8368), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5092), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411659,15 +411425,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288366] = 7, - ACTIONS(6200), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6186), 1, sym_escape_sequence, - ACTIONS(8370), 1, - anon_sym_DQUOTE, - STATE(5178), 1, - aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + ACTIONS(8368), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5841), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411676,15 +411442,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288390] = 7, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8340), 1, + ACTIONS(8336), 1, anon_sym_DQUOTE, STATE(5204), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411693,15 +411459,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288414] = 7, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8372), 1, + ACTIONS(8370), 1, anon_sym_SQUOTE, STATE(5128), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411710,15 +411476,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288438] = 7, - ACTIONS(6208), 1, + ACTIONS(6356), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6358), 1, sym_escape_sequence, - ACTIONS(8374), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8372), 1, + anon_sym_RBRACK, + STATE(5887), 1, + aux_sym__quoted_i_square_repeat1, + STATE(6147), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411727,15 +411493,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288462] = 7, - ACTIONS(6192), 1, + ACTIONS(6348), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(8376), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8374), 1, + anon_sym_GT, + STATE(5860), 1, + aux_sym__quoted_i_angle_repeat1, + STATE(6141), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411744,15 +411510,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288486] = 7, - ACTIONS(6184), 1, + ACTIONS(6340), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6342), 1, sym_escape_sequence, - ACTIONS(8378), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + ACTIONS(8376), 1, + anon_sym_PIPE, + STATE(5747), 1, + aux_sym__quoted_i_bar_repeat1, + STATE(6162), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411761,15 +411527,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288510] = 7, - ACTIONS(6208), 1, + ACTIONS(6332), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6334), 1, sym_escape_sequence, - ACTIONS(8380), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8378), 1, + anon_sym_SLASH, + STATE(5560), 1, + aux_sym__quoted_i_slash_repeat1, + STATE(6163), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411778,15 +411544,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288534] = 7, - ACTIONS(6208), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(8380), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5897), 1, + STATE(5086), 1, aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411795,15 +411561,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288558] = 7, - ACTIONS(6192), 1, + ACTIONS(6184), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6186), 1, sym_escape_sequence, ACTIONS(8382), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, + STATE(5092), 1, aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + STATE(5989), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411812,15 +411578,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288582] = 7, - ACTIONS(6192), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8382), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5898), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8384), 1, + anon_sym_SQUOTE, + STATE(5128), 1, + aux_sym__quoted_i_single_repeat1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411829,15 +411595,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288606] = 7, - ACTIONS(6208), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6210), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(8384), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5077), 1, - aux_sym__quoted_i_heredoc_double_repeat1, - STATE(6009), 1, + ACTIONS(8386), 1, + anon_sym_DQUOTE, + STATE(5178), 1, + aux_sym__quoted_i_double_repeat1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411846,15 +411612,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288630] = 7, - ACTIONS(6192), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6194), 1, + ACTIONS(6238), 1, sym_escape_sequence, - ACTIONS(8386), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5099), 1, - aux_sym__quoted_i_heredoc_single_repeat1, - STATE(6004), 1, + ACTIONS(8388), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5086), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411863,15 +411629,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288654] = 7, - ACTIONS(6184), 1, + ACTIONS(6236), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6238), 1, sym_escape_sequence, ACTIONS(8388), 1, - anon_sym_SQUOTE, - STATE(5128), 1, - aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5936), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + STATE(5990), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411886,27 +411652,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, ACTIONS(870), 1, anon_sym_RPAREN, - ACTIONS(7217), 1, + ACTIONS(7194), 1, anon_sym_SEMI, - STATE(129), 1, + STATE(134), 1, sym__terminator, STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(5902), 1, + STATE(5844), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [288704] = 7, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(8390), 1, anon_sym_DQUOTE, - STATE(5901), 1, + STATE(5843), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411915,15 +411681,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288728] = 7, - ACTIONS(6200), 1, + ACTIONS(6204), 1, anon_sym_POUND_LBRACE, - ACTIONS(6202), 1, + ACTIONS(6206), 1, sym_escape_sequence, ACTIONS(8390), 1, anon_sym_DQUOTE, STATE(5178), 1, aux_sym__quoted_i_double_repeat1, - STATE(5961), 1, + STATE(5955), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411932,15 +411698,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288752] = 7, - ACTIONS(6184), 1, + ACTIONS(6196), 1, anon_sym_POUND_LBRACE, - ACTIONS(6186), 1, + ACTIONS(6198), 1, sym_escape_sequence, - ACTIONS(8388), 1, + ACTIONS(8370), 1, anon_sym_SQUOTE, - STATE(5899), 1, + STATE(5842), 1, aux_sym__quoted_i_single_repeat1, - STATE(5976), 1, + STATE(5961), 1, sym_interpolation, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411955,7 +411721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, ACTIONS(8396), 1, sym__quoted_content_heredoc_single, - STATE(6538), 1, + STATE(6499), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -411964,14 +411730,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288797] = 6, + ACTIONS(8394), 1, + sym_escape_sequence, ACTIONS(8398), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8400), 1, - sym_escape_sequence, - ACTIONS(8402), 1, - sym__quoted_content_heredoc_double, - STATE(6384), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_heredoc_single, + STATE(6336), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -411979,14 +411745,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288818] = 6, + ACTIONS(8402), 1, + anon_sym_RPAREN, ACTIONS(8404), 1, - anon_sym_DQUOTE, - ACTIONS(8406), 1, sym_escape_sequence, - ACTIONS(8408), 1, - sym__quoted_content_double, - STATE(6378), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(8406), 1, + sym__quoted_content_parenthesis, + STATE(6376), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -411994,11 +411760,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288839] = 6, - ACTIONS(8410), 1, + ACTIONS(8408), 1, anon_sym_SQUOTE, - ACTIONS(8412), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8414), 1, + ACTIONS(8412), 1, sym__quoted_content_single, STATE(6380), 1, aux_sym__quoted_single_repeat1, @@ -412011,9 +411777,9 @@ static const uint16_t ts_small_parse_table[] = { [288860] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8416), 1, + ACTIONS(8414), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8418), 1, + ACTIONS(8416), 1, sym__quoted_content_heredoc_single, STATE(6382), 1, aux_sym__quoted_heredoc_single_repeat1, @@ -412024,14 +411790,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288881] = 6, + ACTIONS(8418), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8420), 1, - anon_sym_RPAREN, - ACTIONS(8422), 1, sym_escape_sequence, - ACTIONS(8424), 1, - sym__quoted_content_parenthesis, - STATE(6640), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(8422), 1, + sym__quoted_content_heredoc_double, + STATE(6384), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -412039,58 +411805,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [288902] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - sym__quoted_i_double, - STATE(1445), 1, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [288923] = 6, + ACTIONS(8424), 1, + anon_sym_RBRACE, ACTIONS(8426), 1, - anon_sym_SLASH, - ACTIONS(8428), 1, sym_escape_sequence, - ACTIONS(8430), 1, - sym__quoted_content_slash, - STATE(6545), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(8428), 1, + sym__quoted_content_curly, + STATE(6386), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288944] = 6, - ACTIONS(8428), 1, - sym_escape_sequence, + [288923] = 6, + ACTIONS(8430), 1, + anon_sym_RBRACK, ACTIONS(8432), 1, - anon_sym_SLASH, + sym_escape_sequence, ACTIONS(8434), 1, - sym__quoted_content_slash, - STATE(6566), 1, - aux_sym__quoted_slash_repeat1, + sym__quoted_content_square, + STATE(6388), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288965] = 6, + [288944] = 6, ACTIONS(8436), 1, anon_sym_GT, ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(8440), 1, sym__quoted_content_angle, - STATE(6539), 1, + STATE(6390), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -412098,763 +411849,771 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [288986] = 6, - ACTIONS(8442), 1, - anon_sym_RBRACE, + [288965] = 4, ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(8446), 1, - sym__quoted_content_curly, - STATE(6386), 1, - aux_sym__quoted_curly_repeat1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289007] = 6, + ACTIONS(8442), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [288982] = 6, + ACTIONS(8446), 1, + anon_sym_DQUOTE, ACTIONS(8448), 1, - anon_sym_RBRACK, - ACTIONS(8450), 1, sym_escape_sequence, - ACTIONS(8452), 1, - sym__quoted_content_square, - STATE(6536), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(8450), 1, + sym__quoted_content_double, + STATE(6511), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289028] = 6, - ACTIONS(8444), 1, - sym_escape_sequence, + [289003] = 6, + ACTIONS(8452), 1, + anon_sym_SLASH, ACTIONS(8454), 1, - anon_sym_RBRACE, + sym_escape_sequence, ACTIONS(8456), 1, - sym__quoted_content_curly, - STATE(6534), 1, - aux_sym__quoted_curly_repeat1, + sym__quoted_content_slash, + STATE(6394), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289049] = 6, - ACTIONS(8400), 1, + [289024] = 6, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(8458), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RPAREN, ACTIONS(8460), 1, - sym__quoted_content_heredoc_double, - STATE(6532), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_parenthesis, + STATE(6462), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289070] = 6, - ACTIONS(8394), 1, + [289045] = 6, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(8462), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(8464), 1, - sym__quoted_content_heredoc_single, - STATE(6546), 1, - aux_sym__quoted_heredoc_single_repeat1, + sym__quoted_content_double, + STATE(6464), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289091] = 4, + [289066] = 6, + ACTIONS(8410), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_SQUOTE, ACTIONS(8468), 1, - sym__quoted_content_i_double, + sym__quoted_content_single, + STATE(6466), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, - anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289108] = 6, - ACTIONS(8450), 1, - sym_escape_sequence, - ACTIONS(8470), 1, - anon_sym_RBRACK, + [289087] = 4, ACTIONS(8472), 1, - sym__quoted_content_square, - STATE(6388), 1, - aux_sym__quoted_square_repeat1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289129] = 6, - ACTIONS(8438), 1, + ACTIONS(8470), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [289104] = 6, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(8474), 1, - anon_sym_GT, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8476), 1, - sym__quoted_content_angle, - STATE(6390), 1, - aux_sym__quoted_angle_repeat1, + sym__quoted_content_heredoc_single, + STATE(6468), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289150] = 6, + [289125] = 6, + ACTIONS(8454), 1, + sym_escape_sequence, ACTIONS(8478), 1, - anon_sym_PIPE, + anon_sym_SLASH, ACTIONS(8480), 1, - sym_escape_sequence, - ACTIONS(8482), 1, - sym__quoted_content_bar, - STATE(6392), 1, - aux_sym__quoted_bar_repeat1, + sym__quoted_content_slash, + STATE(6399), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289171] = 6, - ACTIONS(8428), 1, - sym_escape_sequence, + [289146] = 6, + ACTIONS(8482), 1, + anon_sym_PIPE, ACTIONS(8484), 1, - anon_sym_SLASH, + sym_escape_sequence, ACTIONS(8486), 1, - sym__quoted_content_slash, - STATE(6394), 1, - aux_sym__quoted_slash_repeat1, + sym__quoted_content_bar, + STATE(6411), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289192] = 4, + [289167] = 6, + ACTIONS(8438), 1, + sym_escape_sequence, + ACTIONS(8488), 1, + anon_sym_GT, ACTIONS(8490), 1, - sym__quoted_content_i_slash, + sym__quoted_content_angle, + STATE(6413), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289209] = 6, - ACTIONS(8412), 1, + [289188] = 6, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(8492), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, ACTIONS(8494), 1, - sym__quoted_content_single, - STATE(6529), 1, - aux_sym__quoted_single_repeat1, + sym__quoted_content_square, + STATE(6416), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289230] = 6, - ACTIONS(8406), 1, + [289209] = 6, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(8496), 1, - anon_sym_DQUOTE, + anon_sym_RBRACE, ACTIONS(8498), 1, - sym__quoted_content_double, - STATE(6527), 1, - aux_sym__quoted_double_repeat1, + sym__quoted_content_curly, + STATE(6418), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289251] = 6, - ACTIONS(8422), 1, + [289230] = 6, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(8500), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8502), 1, - sym__quoted_content_parenthesis, - STATE(6519), 1, - aux_sym__quoted_parenthesis_repeat1, + sym__quoted_content_heredoc_double, + STATE(6420), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289272] = 6, - ACTIONS(8412), 1, + [289251] = 6, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(8504), 1, - anon_sym_SQUOTE, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8506), 1, - sym__quoted_content_single, - STATE(6679), 1, - aux_sym__quoted_single_repeat1, + sym__quoted_content_heredoc_single, + STATE(6422), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289293] = 6, - ACTIONS(8394), 1, + [289272] = 6, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(8508), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_SQUOTE, ACTIONS(8510), 1, - sym__quoted_content_heredoc_single, - STATE(6657), 1, - aux_sym__quoted_heredoc_single_repeat1, + sym__quoted_content_single, + STATE(6424), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289314] = 6, - ACTIONS(8400), 1, + [289293] = 6, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(8512), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(8514), 1, - sym__quoted_content_heredoc_double, - STATE(6659), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_double, + STATE(6430), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289335] = 6, - ACTIONS(8444), 1, + [289314] = 6, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(8516), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(8518), 1, - sym__quoted_content_curly, - STATE(6661), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [289356] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_heredoc_single, + sym__quoted_content_parenthesis, + STATE(6432), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, + [289335] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - [289373] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(73), 1, - anon_sym_DQUOTE, - ACTIONS(75), 1, - anon_sym_SQUOTE, - STATE(1716), 1, - sym__quoted_i_double, - STATE(1718), 1, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [289394] = 4, + ACTIONS(8520), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8522), 1, - sym__quoted_content_i_single, + sym__quoted_content_heredoc_double, + STATE(6470), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8520), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289411] = 6, - ACTIONS(8428), 1, + [289356] = 6, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(8524), 1, - anon_sym_SLASH, + anon_sym_RBRACE, ACTIONS(8526), 1, - sym__quoted_content_slash, - STATE(6372), 1, - aux_sym__quoted_slash_repeat1, + sym__quoted_content_curly, + STATE(6472), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289432] = 6, - ACTIONS(8422), 1, + [289377] = 6, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(8528), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(8530), 1, - sym__quoted_content_parenthesis, - STATE(6310), 1, - aux_sym__quoted_parenthesis_repeat1, + sym__quoted_content_square, + STATE(6474), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289453] = 6, - ACTIONS(8406), 1, + [289398] = 6, + ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(8532), 1, - anon_sym_DQUOTE, + anon_sym_GT, ACTIONS(8534), 1, - sym__quoted_content_double, - STATE(6288), 1, - aux_sym__quoted_double_repeat1, + sym__quoted_content_angle, + STATE(6476), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289474] = 6, - ACTIONS(8412), 1, + [289419] = 6, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(8536), 1, - anon_sym_SQUOTE, + anon_sym_PIPE, ACTIONS(8538), 1, - sym__quoted_content_single, - STATE(6286), 1, - aux_sym__quoted_single_repeat1, + sym__quoted_content_bar, + STATE(6478), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289495] = 6, - ACTIONS(8394), 1, + [289440] = 6, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(8540), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RPAREN, ACTIONS(8542), 1, - sym__quoted_content_heredoc_single, - STATE(6284), 1, - aux_sym__quoted_heredoc_single_repeat1, + sym__quoted_content_parenthesis, + STATE(6288), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289516] = 6, - ACTIONS(8400), 1, + [289461] = 6, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(8544), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(8546), 1, - sym__quoted_content_heredoc_double, - STATE(6282), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_double, + STATE(6286), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289537] = 6, - ACTIONS(8444), 1, + [289482] = 6, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(8548), 1, - anon_sym_RBRACE, + anon_sym_SQUOTE, ACTIONS(8550), 1, - sym__quoted_content_curly, - STATE(6280), 1, - aux_sym__quoted_curly_repeat1, + sym__quoted_content_single, + STATE(6284), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289558] = 6, - ACTIONS(8450), 1, + [289503] = 6, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(8552), 1, - anon_sym_RBRACK, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8554), 1, - sym__quoted_content_square, - STATE(6278), 1, - aux_sym__quoted_square_repeat1, + sym__quoted_content_heredoc_single, + STATE(6282), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289579] = 6, - ACTIONS(8438), 1, + [289524] = 6, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(8556), 1, - anon_sym_GT, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8558), 1, - sym__quoted_content_angle, - STATE(6276), 1, - aux_sym__quoted_angle_repeat1, + sym__quoted_content_heredoc_double, + STATE(6280), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289600] = 6, - ACTIONS(8480), 1, + [289545] = 6, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(8560), 1, - anon_sym_PIPE, + anon_sym_RBRACE, ACTIONS(8562), 1, - sym__quoted_content_bar, - STATE(6274), 1, - aux_sym__quoted_bar_repeat1, + sym__quoted_content_curly, + STATE(6278), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289621] = 6, - ACTIONS(8428), 1, + [289566] = 6, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(8564), 1, - anon_sym_SLASH, + anon_sym_RBRACK, ACTIONS(8566), 1, - sym__quoted_content_slash, - STATE(6272), 1, - aux_sym__quoted_slash_repeat1, + sym__quoted_content_square, + STATE(6276), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289642] = 6, - ACTIONS(8480), 1, + [289587] = 6, + ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(8568), 1, - anon_sym_PIPE, + anon_sym_GT, ACTIONS(8570), 1, - sym__quoted_content_bar, - STATE(6374), 1, - aux_sym__quoted_bar_repeat1, + sym__quoted_content_angle, + STATE(6274), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289663] = 6, - ACTIONS(8438), 1, + [289608] = 6, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(8572), 1, - anon_sym_GT, + anon_sym_PIPE, ACTIONS(8574), 1, - sym__quoted_content_angle, - STATE(6396), 1, - aux_sym__quoted_angle_repeat1, + sym__quoted_content_bar, + STATE(6272), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289684] = 6, - ACTIONS(8450), 1, + [289629] = 6, + ACTIONS(8454), 1, sym_escape_sequence, ACTIONS(8576), 1, - anon_sym_RBRACK, + anon_sym_SLASH, ACTIONS(8578), 1, - sym__quoted_content_square, - STATE(6398), 1, - aux_sym__quoted_square_repeat1, + sym__quoted_content_slash, + STATE(6270), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289705] = 6, - ACTIONS(8444), 1, + [289650] = 6, + ACTIONS(8454), 1, sym_escape_sequence, ACTIONS(8580), 1, - anon_sym_RBRACE, + anon_sym_SLASH, ACTIONS(8582), 1, - sym__quoted_content_curly, - STATE(6400), 1, - aux_sym__quoted_curly_repeat1, + sym__quoted_content_slash, + STATE(6480), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289726] = 6, - ACTIONS(8400), 1, - sym_escape_sequence, - ACTIONS(8584), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + [289671] = 4, ACTIONS(8586), 1, - sym__quoted_content_heredoc_double, - STATE(6414), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289747] = 6, - ACTIONS(8450), 1, + ACTIONS(8584), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(8588), 1, - anon_sym_RBRACK, + [289688] = 4, ACTIONS(8590), 1, - sym__quoted_content_square, - STATE(6335), 1, - aux_sym__quoted_square_repeat1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289768] = 6, - ACTIONS(8394), 1, + ACTIONS(8588), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [289705] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1103), 1, + anon_sym_SQUOTE, + STATE(4542), 1, + sym__quoted_i_single, + STATE(4544), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [289726] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(548), 1, + anon_sym_DQUOTE, + ACTIONS(550), 1, + anon_sym_SQUOTE, + STATE(2964), 1, + sym__quoted_i_double, + STATE(2965), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [289747] = 6, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(8592), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RPAREN, ACTIONS(8594), 1, - sym__quoted_content_heredoc_single, - STATE(6416), 1, - aux_sym__quoted_heredoc_single_repeat1, + sym__quoted_content_parenthesis, + STATE(6548), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289789] = 6, - ACTIONS(8412), 1, + [289768] = 6, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(8596), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(8598), 1, - sym__quoted_content_single, - STATE(6418), 1, - aux_sym__quoted_single_repeat1, + sym__quoted_content_double, + STATE(6550), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289810] = 6, - ACTIONS(8406), 1, + [289789] = 6, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(8600), 1, - anon_sym_DQUOTE, - ACTIONS(8602), 1, - sym__quoted_content_double, - STATE(6420), 1, - aux_sym__quoted_double_repeat1, + anon_sym_SQUOTE, + ACTIONS(8602), 1, + sym__quoted_content_single, + STATE(6552), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289831] = 6, - ACTIONS(8422), 1, + [289810] = 6, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(8604), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8606), 1, - sym__quoted_content_parenthesis, - STATE(6422), 1, - aux_sym__quoted_parenthesis_repeat1, + sym__quoted_content_heredoc_single, + STATE(6554), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289852] = 6, - ACTIONS(8450), 1, + [289831] = 6, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(8608), 1, - anon_sym_RBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8610), 1, - sym__quoted_content_square, - STATE(6663), 1, - aux_sym__quoted_square_repeat1, + sym__quoted_content_heredoc_double, + STATE(6556), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289873] = 6, - ACTIONS(8438), 1, + [289852] = 6, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(8612), 1, - anon_sym_GT, + anon_sym_RBRACE, ACTIONS(8614), 1, - sym__quoted_content_angle, - STATE(6675), 1, - aux_sym__quoted_angle_repeat1, + sym__quoted_content_curly, + STATE(6558), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289894] = 6, - ACTIONS(8480), 1, + [289873] = 6, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(8616), 1, - anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(8618), 1, - sym__quoted_content_bar, - STATE(6677), 1, - aux_sym__quoted_bar_repeat1, + sym__quoted_content_square, + STATE(6560), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289915] = 6, - ACTIONS(8428), 1, + [289894] = 6, + ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(8620), 1, - anon_sym_SLASH, + anon_sym_GT, ACTIONS(8622), 1, - sym__quoted_content_slash, - STATE(6687), 1, - aux_sym__quoted_slash_repeat1, + sym__quoted_content_angle, + STATE(6562), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [289936] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_parenthesis, + [289915] = 6, + ACTIONS(8484), 1, + sym_escape_sequence, + ACTIONS(8624), 1, + anon_sym_PIPE, + ACTIONS(8626), 1, + sym__quoted_content_bar, + STATE(6564), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_RPAREN, - anon_sym_POUND_LBRACE, + [289936] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - [289953] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(8628), 1, + anon_sym_SLASH, + ACTIONS(8630), 1, + sym__quoted_content_slash, + STATE(6566), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, + [289957] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - [289970] = 4, - ACTIONS(8630), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(8632), 1, + anon_sym_RPAREN, + ACTIONS(8634), 1, + sym__quoted_content_parenthesis, + STATE(6203), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8628), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [289987] = 6, - ACTIONS(8406), 1, + [289978] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8632), 1, - anon_sym_DQUOTE, - ACTIONS(8634), 1, - sym__quoted_content_double, - STATE(6641), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(8636), 1, + anon_sym_SLASH, + ACTIONS(8638), 1, + sym__quoted_content_slash, + STATE(6521), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290008] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_square, + [289999] = 6, + ACTIONS(8484), 1, + sym_escape_sequence, + ACTIONS(8640), 1, + anon_sym_PIPE, + ACTIONS(8642), 1, + sym__quoted_content_bar, + STATE(6523), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290025] = 6, + [290020] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8636), 1, + ACTIONS(8644), 1, anon_sym_GT, - ACTIONS(8638), 1, + ACTIONS(8646), 1, sym__quoted_content_angle, - STATE(6370), 1, + STATE(6525), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -412862,83 +412621,104 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290046] = 6, - ACTIONS(8480), 1, + [290041] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8640), 1, - anon_sym_PIPE, - ACTIONS(8642), 1, - sym__quoted_content_bar, - STATE(6268), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(8648), 1, + anon_sym_RBRACK, + ACTIONS(8650), 1, + sym__quoted_content_square, + STATE(6527), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290067] = 4, - ACTIONS(8646), 1, - sym__quoted_content_i_heredoc_double, + [290062] = 6, + ACTIONS(8426), 1, + sym_escape_sequence, + ACTIONS(8652), 1, + anon_sym_RBRACE, + ACTIONS(8654), 1, + sym__quoted_content_curly, + STATE(6529), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8644), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, + [290083] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - [290084] = 4, - ACTIONS(8650), 1, - sym__quoted_content_i_angle, + ACTIONS(8656), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8658), 1, + sym__quoted_content_heredoc_double, + STATE(6531), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8648), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, + [290104] = 6, + ACTIONS(8394), 1, sym_escape_sequence, - [290101] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_slash, + ACTIONS(8660), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8662), 1, + sym__quoted_content_heredoc_single, + STATE(6533), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, + [290125] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - [290118] = 6, - ACTIONS(5), 1, + ACTIONS(8664), 1, + anon_sym_SQUOTE, + ACTIONS(8666), 1, + sym__quoted_content_single, + STATE(6535), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, sym_comment, - ACTIONS(548), 1, + [290146] = 6, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(8668), 1, anon_sym_DQUOTE, - ACTIONS(550), 1, - anon_sym_SQUOTE, - STATE(2954), 1, - sym__quoted_i_double, - STATE(2955), 1, - sym__quoted_i_single, - ACTIONS(3), 3, + ACTIONS(8670), 1, + sym__quoted_content_double, + STATE(6537), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [290139] = 6, - ACTIONS(8422), 1, + sym_comment, + [290167] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(8652), 1, + ACTIONS(8672), 1, anon_sym_RPAREN, - ACTIONS(8654), 1, + ACTIONS(8674), 1, sym__quoted_content_parenthesis, - STATE(6462), 1, + STATE(6539), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -412946,14 +412726,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290160] = 6, - ACTIONS(8406), 1, + [290188] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8656), 1, + ACTIONS(8676), 1, anon_sym_DQUOTE, - ACTIONS(8658), 1, + ACTIONS(8678), 1, sym__quoted_content_double, - STATE(6464), 1, + STATE(6646), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -412961,14 +412741,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290181] = 6, - ACTIONS(8412), 1, + [290209] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8660), 1, + ACTIONS(8680), 1, anon_sym_SQUOTE, - ACTIONS(8662), 1, + ACTIONS(8682), 1, sym__quoted_content_single, - STATE(6466), 1, + STATE(6171), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -412976,14 +412756,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290202] = 6, + [290230] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8664), 1, + ACTIONS(8684), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8666), 1, + ACTIONS(8686), 1, sym__quoted_content_heredoc_single, - STATE(6468), 1, + STATE(6649), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -412991,14 +412771,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290223] = 6, - ACTIONS(8400), 1, + [290251] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8668), 1, + ACTIONS(8688), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8670), 1, + ACTIONS(8690), 1, sym__quoted_content_heredoc_double, - STATE(6470), 1, + STATE(6654), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413006,14 +412786,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290244] = 6, - ACTIONS(8444), 1, + [290272] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8672), 1, + ACTIONS(8692), 1, anon_sym_RBRACE, - ACTIONS(8674), 1, + ACTIONS(8694), 1, sym__quoted_content_curly, - STATE(6472), 1, + STATE(6657), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413021,14 +412801,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290265] = 6, - ACTIONS(8450), 1, + [290293] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8676), 1, + ACTIONS(8696), 1, anon_sym_RBRACK, - ACTIONS(8678), 1, + ACTIONS(8698), 1, sym__quoted_content_square, - STATE(6474), 1, + STATE(6664), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413036,14 +412816,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290286] = 6, + [290314] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8680), 1, + ACTIONS(8700), 1, anon_sym_GT, - ACTIONS(8682), 1, + ACTIONS(8702), 1, sym__quoted_content_angle, - STATE(6476), 1, + STATE(6669), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413051,14 +412831,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290307] = 6, - ACTIONS(8480), 1, + [290335] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8684), 1, + ACTIONS(8704), 1, anon_sym_PIPE, - ACTIONS(8686), 1, + ACTIONS(8706), 1, sym__quoted_content_bar, - STATE(6478), 1, + STATE(6675), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413066,14 +412846,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290328] = 6, - ACTIONS(8428), 1, + [290356] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8688), 1, + ACTIONS(8708), 1, anon_sym_SLASH, - ACTIONS(8690), 1, + ACTIONS(8710), 1, sym__quoted_content_slash, - STATE(6480), 1, + STATE(6678), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413081,42 +412861,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290349] = 6, - ACTIONS(8428), 1, - sym_escape_sequence, - ACTIONS(8692), 1, - anon_sym_SLASH, - ACTIONS(8694), 1, - sym__quoted_content_slash, - STATE(6513), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [290377] = 6, + ACTIONS(5), 1, sym_comment, - [290370] = 4, - ACTIONS(8698), 1, - sym__quoted_content_i_slash, - ACTIONS(3), 2, + ACTIONS(602), 1, + anon_sym_DQUOTE, + ACTIONS(604), 1, + anon_sym_SQUOTE, + STATE(4042), 1, + sym__quoted_i_single, + STATE(4043), 1, + sym__quoted_i_double, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - ACTIONS(8696), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290387] = 6, - ACTIONS(8422), 1, + [290398] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(8700), 1, + ACTIONS(8712), 1, anon_sym_RPAREN, - ACTIONS(8702), 1, + ACTIONS(8714), 1, sym__quoted_content_parenthesis, - STATE(6548), 1, + STATE(6643), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413124,29 +412891,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290408] = 6, - ACTIONS(8406), 1, - sym_escape_sequence, - ACTIONS(8704), 1, - anon_sym_DQUOTE, - ACTIONS(8706), 1, - sym__quoted_content_double, - STATE(6550), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [290429] = 6, - ACTIONS(8428), 1, + [290419] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8708), 1, + ACTIONS(8716), 1, anon_sym_SLASH, - ACTIONS(8710), 1, + ACTIONS(8718), 1, sym__quoted_content_slash, - STATE(6483), 1, + STATE(6612), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413154,12 +412906,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290450] = 6, - ACTIONS(8428), 1, + [290440] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8712), 1, + ACTIONS(8720), 1, anon_sym_SLASH, - ACTIONS(8714), 1, + ACTIONS(8722), 1, sym__quoted_content_slash, STATE(6308), 1, aux_sym__quoted_slash_repeat1, @@ -413169,12 +412921,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290471] = 6, - ACTIONS(8480), 1, + [290461] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8716), 1, + ACTIONS(8724), 1, anon_sym_PIPE, - ACTIONS(8718), 1, + ACTIONS(8726), 1, sym__quoted_content_bar, STATE(6306), 1, aux_sym__quoted_bar_repeat1, @@ -413184,12 +412936,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290492] = 6, + [290482] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8720), 1, + ACTIONS(8728), 1, anon_sym_GT, - ACTIONS(8722), 1, + ACTIONS(8730), 1, sym__quoted_content_angle, STATE(6304), 1, aux_sym__quoted_angle_repeat1, @@ -413199,12 +412951,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290513] = 6, - ACTIONS(8450), 1, + [290503] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8724), 1, + ACTIONS(8732), 1, anon_sym_RBRACK, - ACTIONS(8726), 1, + ACTIONS(8734), 1, sym__quoted_content_square, STATE(6302), 1, aux_sym__quoted_square_repeat1, @@ -413214,12 +412966,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290534] = 6, - ACTIONS(8444), 1, + [290524] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8728), 1, + ACTIONS(8736), 1, anon_sym_RBRACE, - ACTIONS(8730), 1, + ACTIONS(8738), 1, sym__quoted_content_curly, STATE(6300), 1, aux_sym__quoted_curly_repeat1, @@ -413229,12 +412981,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290555] = 6, - ACTIONS(8400), 1, + [290545] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8732), 1, + ACTIONS(8740), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8734), 1, + ACTIONS(8742), 1, sym__quoted_content_heredoc_double, STATE(6298), 1, aux_sym__quoted_heredoc_double_repeat1, @@ -413244,12 +412996,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290576] = 6, + [290566] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8736), 1, + ACTIONS(8744), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8738), 1, + ACTIONS(8746), 1, sym__quoted_content_heredoc_single, STATE(6296), 1, aux_sym__quoted_heredoc_single_repeat1, @@ -413259,40 +413011,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290597] = 6, - ACTIONS(8480), 1, - sym_escape_sequence, - ACTIONS(8740), 1, - anon_sym_PIPE, - ACTIONS(8742), 1, - sym__quoted_content_bar, - STATE(6485), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [290618] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(8624), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [290635] = 6, - ACTIONS(8412), 1, + [290587] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8744), 1, + ACTIONS(8748), 1, anon_sym_SQUOTE, - ACTIONS(8746), 1, + ACTIONS(8750), 1, sym__quoted_content_single, STATE(6294), 1, aux_sym__quoted_single_repeat1, @@ -413302,12 +413026,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290656] = 6, - ACTIONS(8406), 1, + [290608] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8748), 1, + ACTIONS(8752), 1, anon_sym_DQUOTE, - ACTIONS(8750), 1, + ACTIONS(8754), 1, sym__quoted_content_double, STATE(6292), 1, aux_sym__quoted_double_repeat1, @@ -413317,29 +413041,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290677] = 6, - ACTIONS(8422), 1, + [290629] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8752), 1, - anon_sym_RPAREN, - ACTIONS(8754), 1, - sym__quoted_content_parenthesis, - STATE(6290), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(8756), 1, + anon_sym_PIPE, + ACTIONS(8758), 1, + sym__quoted_content_bar, + STATE(6614), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290698] = 6, + [290650] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8756), 1, + ACTIONS(8760), 1, anon_sym_GT, - ACTIONS(8758), 1, + ACTIONS(8762), 1, sym__quoted_content_angle, - STATE(6498), 1, + STATE(6616), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413347,14 +413071,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290719] = 6, - ACTIONS(8450), 1, + [290671] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8760), 1, + ACTIONS(8764), 1, anon_sym_RBRACK, - ACTIONS(8762), 1, + ACTIONS(8766), 1, sym__quoted_content_square, - STATE(6503), 1, + STATE(6618), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413362,104 +413086,87 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290740] = 6, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(8764), 1, - anon_sym_RBRACE, - ACTIONS(8766), 1, - sym__quoted_content_curly, - STATE(6505), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [290761] = 6, - ACTIONS(8400), 1, + [290692] = 6, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(8768), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RPAREN, ACTIONS(8770), 1, - sym__quoted_content_heredoc_double, - STATE(6507), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_parenthesis, + STATE(6290), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290782] = 6, - ACTIONS(8394), 1, + [290713] = 6, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(8772), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RBRACE, ACTIONS(8774), 1, - sym__quoted_content_heredoc_single, - STATE(6509), 1, - aux_sym__quoted_heredoc_single_repeat1, + sym__quoted_content_curly, + STATE(6622), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290803] = 6, - ACTIONS(8412), 1, - sym_escape_sequence, - ACTIONS(8776), 1, - anon_sym_SQUOTE, + [290734] = 4, ACTIONS(8778), 1, - sym__quoted_content_single, - STATE(6511), 1, - aux_sym__quoted_single_repeat1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290824] = 6, - ACTIONS(8406), 1, + ACTIONS(8776), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [290751] = 6, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(8780), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8782), 1, - sym__quoted_content_double, - STATE(6514), 1, - aux_sym__quoted_double_repeat1, + sym__quoted_content_heredoc_double, + STATE(6624), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290845] = 6, - ACTIONS(8422), 1, + [290772] = 6, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(8784), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(8786), 1, - sym__quoted_content_parenthesis, - STATE(6516), 1, - aux_sym__quoted_parenthesis_repeat1, + sym__quoted_content_heredoc_single, + STATE(6626), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290866] = 6, - ACTIONS(8412), 1, + [290793] = 6, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(8788), 1, anon_sym_SQUOTE, ACTIONS(8790), 1, sym__quoted_content_single, - STATE(6552), 1, + STATE(6628), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413467,119 +413174,148 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290887] = 6, - ACTIONS(8394), 1, + [290814] = 6, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(8792), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_DQUOTE, ACTIONS(8794), 1, - sym__quoted_content_heredoc_single, - STATE(6554), 1, - aux_sym__quoted_heredoc_single_repeat1, + sym__quoted_content_double, + STATE(6630), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290908] = 6, - ACTIONS(8444), 1, + [290835] = 6, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(8796), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(8798), 1, - sym__quoted_content_curly, - STATE(6426), 1, - aux_sym__quoted_curly_repeat1, + sym__quoted_content_parenthesis, + STATE(6632), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290929] = 6, - ACTIONS(8400), 1, - sym_escape_sequence, + [290856] = 5, + ACTIONS(5), 1, + sym_comment, ACTIONS(8800), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_COMMA, + STATE(5158), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(1169), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [290875] = 6, + ACTIONS(8454), 1, + sym_escape_sequence, ACTIONS(8802), 1, - sym__quoted_content_heredoc_double, - STATE(6556), 1, - aux_sym__quoted_heredoc_double_repeat1, + anon_sym_SLASH, + ACTIONS(8804), 1, + sym__quoted_content_slash, + STATE(6425), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290950] = 6, - ACTIONS(8400), 1, + [290896] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8804), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(8806), 1, - sym__quoted_content_heredoc_double, - STATE(6430), 1, - aux_sym__quoted_heredoc_double_repeat1, + anon_sym_PIPE, + ACTIONS(8808), 1, + sym__quoted_content_bar, + STATE(6427), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [290971] = 6, + [290917] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(812), 1, + ACTIONS(369), 1, anon_sym_DQUOTE, - ACTIONS(814), 1, + ACTIONS(371), 1, anon_sym_SQUOTE, - STATE(4200), 1, + STATE(2267), 1, sym__quoted_i_single, - STATE(4201), 1, + STATE(2268), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [290992] = 6, - ACTIONS(8444), 1, + [290938] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8808), 1, - anon_sym_RBRACE, ACTIONS(8810), 1, - sym__quoted_content_curly, - STATE(6558), 1, - aux_sym__quoted_curly_repeat1, + anon_sym_SLASH, + ACTIONS(8812), 1, + sym__quoted_content_slash, + STATE(6739), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291013] = 6, - ACTIONS(8450), 1, + [290959] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8812), 1, - anon_sym_RBRACK, ACTIONS(8814), 1, - sym__quoted_content_square, - STATE(6560), 1, - aux_sym__quoted_square_repeat1, + anon_sym_PIPE, + ACTIONS(8816), 1, + sym__quoted_content_bar, + STATE(6591), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291034] = 6, + [290980] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1051), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + anon_sym_SQUOTE, + STATE(3287), 1, + sym__quoted_i_single, + STATE(3312), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [291001] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8816), 1, - anon_sym_GT, ACTIONS(8818), 1, + anon_sym_GT, + ACTIONS(8820), 1, sym__quoted_content_angle, - STATE(6562), 1, + STATE(6584), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413587,117 +413323,104 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291055] = 6, - ACTIONS(8480), 1, + [291022] = 6, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8820), 1, - anon_sym_PIPE, ACTIONS(8822), 1, - sym__quoted_content_bar, - STATE(6564), 1, - aux_sym__quoted_bar_repeat1, + anon_sym_GT, + ACTIONS(8824), 1, + sym__quoted_content_angle, + STATE(6433), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291076] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(602), 1, - anon_sym_DQUOTE, - ACTIONS(604), 1, - anon_sym_SQUOTE, - STATE(3650), 1, - sym__quoted_i_double, - STATE(3651), 1, - sym__quoted_i_single, - ACTIONS(3), 3, + [291043] = 6, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(8826), 1, + anon_sym_RBRACK, + ACTIONS(8828), 1, + sym__quoted_content_square, + STATE(6435), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [291097] = 6, - ACTIONS(8422), 1, + sym_comment, + [291064] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8824), 1, - anon_sym_RPAREN, - ACTIONS(8826), 1, - sym__quoted_content_parenthesis, - STATE(6376), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(8830), 1, + anon_sym_RBRACE, + ACTIONS(8832), 1, + sym__quoted_content_curly, + STATE(6437), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291118] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_parenthesis, + [291085] = 6, + ACTIONS(8420), 1, + sym_escape_sequence, + ACTIONS(8834), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8836), 1, + sym__quoted_content_heredoc_double, + STATE(6347), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_RPAREN, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [291135] = 6, - ACTIONS(8480), 1, + [291106] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8828), 1, - anon_sym_PIPE, - ACTIONS(8830), 1, - sym__quoted_content_bar, - STATE(6543), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(8838), 1, + anon_sym_DQUOTE, + ACTIONS(8840), 1, + sym__quoted_content_double, + STATE(6378), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291156] = 6, + [291127] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1051), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(1053), 1, + ACTIONS(247), 1, anon_sym_SQUOTE, - STATE(3432), 1, - sym__quoted_i_double, - STATE(3433), 1, + STATE(1445), 1, sym__quoted_i_single, + STATE(1446), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [291177] = 6, - ACTIONS(8428), 1, - sym_escape_sequence, - ACTIONS(8832), 1, - anon_sym_SLASH, - ACTIONS(8834), 1, - sym__quoted_content_slash, - STATE(6608), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [291198] = 6, - ACTIONS(8480), 1, + [291148] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8836), 1, + ACTIONS(8842), 1, anon_sym_PIPE, - ACTIONS(8838), 1, + ACTIONS(8844), 1, sym__quoted_content_bar, - STATE(6610), 1, + STATE(6392), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413705,29 +413428,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291219] = 6, - ACTIONS(8438), 1, + [291169] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(8840), 1, - anon_sym_GT, - ACTIONS(8842), 1, - sym__quoted_content_angle, - STATE(6612), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(8846), 1, + anon_sym_RPAREN, + ACTIONS(8848), 1, + sym__quoted_content_parenthesis, + STATE(6514), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291240] = 6, - ACTIONS(8450), 1, + [291190] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8844), 1, + ACTIONS(8850), 1, anon_sym_RBRACK, - ACTIONS(8846), 1, + ACTIONS(8852), 1, sym__quoted_content_square, - STATE(6614), 1, + STATE(6571), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413735,14 +413458,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291261] = 6, - ACTIONS(8444), 1, + [291211] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8848), 1, + ACTIONS(8854), 1, anon_sym_RBRACE, - ACTIONS(8850), 1, + ACTIONS(8856), 1, sym__quoted_content_curly, - STATE(6616), 1, + STATE(6541), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413750,14 +413473,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291282] = 6, - ACTIONS(8400), 1, + [291232] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8852), 1, + ACTIONS(8858), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8854), 1, + ACTIONS(8860), 1, sym__quoted_content_heredoc_double, - STATE(6622), 1, + STATE(6509), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413765,172 +413488,179 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291303] = 6, - ACTIONS(8394), 1, + [291253] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8856), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8858), 1, - sym__quoted_content_heredoc_single, - STATE(6624), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(8862), 1, + anon_sym_SLASH, + ACTIONS(8864), 1, + sym__quoted_content_slash, + STATE(6700), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291324] = 6, - ACTIONS(8412), 1, + [291274] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8860), 1, - anon_sym_SQUOTE, - ACTIONS(8862), 1, - sym__quoted_content_single, - STATE(6626), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(8866), 1, + anon_sym_PIPE, + ACTIONS(8868), 1, + sym__quoted_content_bar, + STATE(6702), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291345] = 6, - ACTIONS(8406), 1, + [291295] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8864), 1, - anon_sym_DQUOTE, - ACTIONS(8866), 1, - sym__quoted_content_double, - STATE(6628), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(8870), 1, + anon_sym_SLASH, + ACTIONS(8872), 1, + sym__quoted_content_slash, + STATE(6397), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291366] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_single, + [291316] = 6, + ACTIONS(8484), 1, + sym_escape_sequence, + ACTIONS(8874), 1, + anon_sym_PIPE, + ACTIONS(8876), 1, + sym__quoted_content_bar, + STATE(6395), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [291383] = 6, - ACTIONS(8422), 1, + [291337] = 6, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8868), 1, - anon_sym_RPAREN, - ACTIONS(8870), 1, - sym__quoted_content_parenthesis, - STATE(6630), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(8878), 1, + anon_sym_GT, + ACTIONS(8880), 1, + sym__quoted_content_angle, + STATE(6373), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291404] = 4, - ACTIONS(8874), 1, - sym__quoted_content_i_parenthesis, + [291358] = 6, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(8882), 1, + anon_sym_RBRACK, + ACTIONS(8884), 1, + sym__quoted_content_square, + STATE(6360), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8872), 3, - anon_sym_RPAREN, - anon_sym_POUND_LBRACE, + [291379] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - [291421] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_heredoc_double, + ACTIONS(8886), 1, + anon_sym_RBRACE, + ACTIONS(8888), 1, + sym__quoted_content_curly, + STATE(6358), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, + [291400] = 6, + ACTIONS(8438), 1, sym_escape_sequence, - [291438] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(369), 1, - anon_sym_DQUOTE, - ACTIONS(371), 1, - anon_sym_SQUOTE, - STATE(2208), 1, - sym__quoted_i_single, - STATE(2209), 1, - sym__quoted_i_double, - ACTIONS(3), 3, + ACTIONS(8890), 1, + anon_sym_GT, + ACTIONS(8892), 1, + sym__quoted_content_angle, + STATE(6704), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [291459] = 5, - ACTIONS(5), 1, sym_comment, - ACTIONS(8876), 1, - anon_sym_COMMA, - STATE(6077), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(5134), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, + [291421] = 6, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(8894), 1, + anon_sym_RBRACK, + ACTIONS(8896), 1, + sym__quoted_content_square, + STATE(6633), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [291478] = 6, - ACTIONS(8406), 1, + sym_comment, + [291442] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8879), 1, - anon_sym_DQUOTE, - ACTIONS(8881), 1, - sym__quoted_content_double, - STATE(6718), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(8898), 1, + anon_sym_RBRACE, + ACTIONS(8900), 1, + sym__quoted_content_curly, + STATE(6708), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291499] = 6, - ACTIONS(8412), 1, + [291463] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8883), 1, - anon_sym_SQUOTE, - ACTIONS(8885), 1, - sym__quoted_content_single, - STATE(6709), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(8902), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8904), 1, + sym__quoted_content_heredoc_double, + STATE(6710), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291520] = 6, + [291484] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8887), 1, + ACTIONS(8906), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8889), 1, + ACTIONS(8908), 1, sym__quoted_content_heredoc_single, - STATE(6706), 1, + STATE(6712), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413938,29 +413668,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291541] = 6, - ACTIONS(8400), 1, + [291505] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8891), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8893), 1, - sym__quoted_content_heredoc_double, - STATE(6701), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(8910), 1, + anon_sym_SQUOTE, + ACTIONS(8912), 1, + sym__quoted_content_single, + STATE(6715), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291562] = 6, - ACTIONS(8406), 1, + [291526] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8895), 1, + ACTIONS(8914), 1, anon_sym_DQUOTE, - ACTIONS(8897), 1, + ACTIONS(8916), 1, sym__quoted_content_double, - STATE(6429), 1, + STATE(6717), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -413968,117 +413698,119 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291583] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_square, + [291547] = 6, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(8918), 1, + anon_sym_RPAREN, + ACTIONS(8920), 1, + sym__quoted_content_parenthesis, + STATE(6719), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [291600] = 6, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(8899), 1, - anon_sym_RBRACE, - ACTIONS(8901), 1, - sym__quoted_content_curly, - STATE(6699), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, + [291568] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(812), 1, + anon_sym_DQUOTE, + ACTIONS(814), 1, + anon_sym_SQUOTE, + STATE(4203), 1, + sym__quoted_i_single, + STATE(4354), 1, + sym__quoted_i_double, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [291621] = 6, - ACTIONS(8450), 1, + [291589] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8903), 1, - anon_sym_RBRACK, - ACTIONS(8905), 1, - sym__quoted_content_square, - STATE(6680), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(8922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8924), 1, + sym__quoted_content_heredoc_double, + STATE(6356), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291642] = 6, - ACTIONS(8428), 1, + [291610] = 6, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8907), 1, - anon_sym_SLASH, - ACTIONS(8909), 1, - sym__quoted_content_slash, - STATE(6682), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(8926), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8928), 1, + sym__quoted_content_heredoc_single, + STATE(6354), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291663] = 6, - ACTIONS(8480), 1, + [291631] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8911), 1, - anon_sym_PIPE, - ACTIONS(8913), 1, - sym__quoted_content_bar, - STATE(6684), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(8930), 1, + anon_sym_SQUOTE, + ACTIONS(8932), 1, + sym__quoted_content_single, + STATE(6352), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291684] = 6, - ACTIONS(8438), 1, + [291652] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8915), 1, - anon_sym_GT, - ACTIONS(8917), 1, - sym__quoted_content_angle, - STATE(6686), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(8934), 1, + anon_sym_DQUOTE, + ACTIONS(8936), 1, + sym__quoted_content_double, + STATE(6343), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291705] = 6, - ACTIONS(8450), 1, + [291673] = 6, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8919), 1, - anon_sym_RBRACK, - ACTIONS(8921), 1, - sym__quoted_content_square, - STATE(6688), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(8938), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8940), 1, + sym__quoted_content_heredoc_single, + STATE(6449), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291726] = 6, - ACTIONS(8412), 1, + [291694] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8923), 1, + ACTIONS(8942), 1, anon_sym_SQUOTE, - ACTIONS(8925), 1, + ACTIONS(8944), 1, sym__quoted_content_single, - STATE(6710), 1, + STATE(6349), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414086,57 +413818,119 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291747] = 6, - ACTIONS(8444), 1, + [291715] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8927), 1, - anon_sym_RBRACE, - ACTIONS(8929), 1, - sym__quoted_content_curly, - STATE(6690), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(8946), 1, + anon_sym_DQUOTE, + ACTIONS(8948), 1, + sym__quoted_content_double, + STATE(6332), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291768] = 4, - ACTIONS(8933), 1, - sym__quoted_content_i_square, + [291736] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_DQUOTE, + ACTIONS(75), 1, + anon_sym_SQUOTE, + STATE(1748), 1, + sym__quoted_i_single, + STATE(1749), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [291757] = 6, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(8952), 1, + sym__quoted_content_parenthesis, + STATE(6334), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8931), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, + [291778] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(199), 1, + anon_sym_DQUOTE, + ACTIONS(201), 1, + anon_sym_SQUOTE, + STATE(1142), 1, + sym__quoted_i_single, + STATE(1143), 1, + sym__quoted_i_double, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [291799] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - [291785] = 6, - ACTIONS(8400), 1, + ACTIONS(8954), 1, + anon_sym_RPAREN, + ACTIONS(8956), 1, + sym__quoted_content_parenthesis, + STATE(6679), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [291820] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8935), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8937), 1, - sym__quoted_content_heredoc_double, - STATE(6692), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(8958), 1, + anon_sym_DQUOTE, + ACTIONS(8960), 1, + sym__quoted_content_double, + STATE(6672), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [291841] = 6, + ACTIONS(8410), 1, + sym_escape_sequence, + ACTIONS(8962), 1, + anon_sym_SQUOTE, + ACTIONS(8964), 1, + sym__quoted_content_single, + STATE(6667), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291806] = 6, + [291862] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8939), 1, + ACTIONS(8966), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8941), 1, + ACTIONS(8968), 1, sym__quoted_content_heredoc_single, - STATE(6694), 1, + STATE(6663), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414144,14 +413938,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291827] = 6, - ACTIONS(8422), 1, + [291883] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(8943), 1, + ACTIONS(8970), 1, anon_sym_RPAREN, - ACTIONS(8945), 1, + ACTIONS(8972), 1, sym__quoted_content_parenthesis, - STATE(6224), 1, + STATE(6227), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414159,14 +413953,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291848] = 6, - ACTIONS(8406), 1, + [291904] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8947), 1, + ACTIONS(8974), 1, anon_sym_DQUOTE, - ACTIONS(8949), 1, + ACTIONS(8976), 1, sym__quoted_content_double, - STATE(6222), 1, + STATE(6225), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414174,14 +413968,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291869] = 6, - ACTIONS(8412), 1, + [291925] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(8951), 1, + ACTIONS(8978), 1, anon_sym_SQUOTE, - ACTIONS(8953), 1, + ACTIONS(8980), 1, sym__quoted_content_single, - STATE(6173), 1, + STATE(6578), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414189,14 +413983,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291890] = 6, + [291946] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(8955), 1, + ACTIONS(8982), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8957), 1, + ACTIONS(8984), 1, sym__quoted_content_heredoc_single, - STATE(6175), 1, + STATE(6174), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414204,14 +413998,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291911] = 6, - ACTIONS(8400), 1, + [291967] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8959), 1, + ACTIONS(8986), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8961), 1, + ACTIONS(8988), 1, sym__quoted_content_heredoc_double, - STATE(6177), 1, + STATE(6176), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414219,14 +414013,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291932] = 6, - ACTIONS(8444), 1, + [291988] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8963), 1, + ACTIONS(8990), 1, anon_sym_RBRACE, - ACTIONS(8965), 1, + ACTIONS(8992), 1, sym__quoted_content_curly, - STATE(6179), 1, + STATE(6178), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414234,14 +414028,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291953] = 6, - ACTIONS(8450), 1, + [292009] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8967), 1, + ACTIONS(8994), 1, anon_sym_RBRACK, - ACTIONS(8969), 1, + ACTIONS(8996), 1, sym__quoted_content_square, - STATE(6181), 1, + STATE(6180), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414249,14 +414043,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291974] = 6, + [292030] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8971), 1, + ACTIONS(8998), 1, anon_sym_GT, - ACTIONS(8973), 1, + ACTIONS(9000), 1, sym__quoted_content_angle, - STATE(6183), 1, + STATE(6182), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414264,14 +414058,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [291995] = 6, - ACTIONS(8480), 1, + [292051] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8975), 1, + ACTIONS(9002), 1, anon_sym_PIPE, - ACTIONS(8977), 1, + ACTIONS(9004), 1, sym__quoted_content_bar, - STATE(6185), 1, + STATE(6184), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414279,14 +414073,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292016] = 6, - ACTIONS(8428), 1, + [292072] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(8979), 1, + ACTIONS(9006), 1, anon_sym_SLASH, - ACTIONS(8981), 1, + ACTIONS(9008), 1, sym__quoted_content_slash, - STATE(6187), 1, + STATE(6186), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414294,59 +414088,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292037] = 6, - ACTIONS(8412), 1, + [292093] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8983), 1, - anon_sym_SQUOTE, - ACTIONS(8985), 1, - sym__quoted_content_single, - STATE(6696), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9010), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9012), 1, + sym__quoted_content_heredoc_double, + STATE(6659), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292058] = 6, - ACTIONS(8406), 1, + [292114] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8987), 1, - anon_sym_DQUOTE, - ACTIONS(8989), 1, - sym__quoted_content_double, - STATE(6698), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9014), 1, + anon_sym_RBRACE, + ACTIONS(9016), 1, + sym__quoted_content_curly, + STATE(6651), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292079] = 6, - ACTIONS(8422), 1, + [292135] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8991), 1, - anon_sym_RPAREN, - ACTIONS(8993), 1, - sym__quoted_content_parenthesis, - STATE(6703), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9018), 1, + anon_sym_RBRACK, + ACTIONS(9020), 1, + sym__quoted_content_square, + STATE(6754), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292100] = 6, + [292156] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8995), 1, + ACTIONS(9022), 1, anon_sym_GT, - ACTIONS(8997), 1, + ACTIONS(9024), 1, sym__quoted_content_angle, - STATE(6655), 1, + STATE(6641), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414354,14 +414148,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292121] = 6, - ACTIONS(8480), 1, + [292177] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8999), 1, + ACTIONS(9026), 1, anon_sym_PIPE, - ACTIONS(9001), 1, + ACTIONS(9028), 1, sym__quoted_content_bar, - STATE(6747), 1, + STATE(6637), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414369,14 +414163,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292142] = 6, - ACTIONS(8428), 1, + [292198] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9003), 1, + ACTIONS(9030), 1, anon_sym_SLASH, - ACTIONS(9005), 1, + ACTIONS(9032), 1, sym__quoted_content_slash, - STATE(6650), 1, + STATE(6585), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414384,287 +414178,298 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292163] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_heredoc_double, + [292219] = 6, + ACTIONS(8454), 1, + sym_escape_sequence, + ACTIONS(9034), 1, + anon_sym_SLASH, + ACTIONS(9036), 1, + sym__quoted_content_slash, + STATE(6755), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, + [292240] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - [292180] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_angle, + ACTIONS(9038), 1, + anon_sym_PIPE, + ACTIONS(9040), 1, + sym__quoted_content_bar, + STATE(6748), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [292197] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(199), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, - anon_sym_SQUOTE, - STATE(1158), 1, - sym__quoted_i_double, - STATE(1159), 1, - sym__quoted_i_single, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [292218] = 6, - ACTIONS(8422), 1, + [292261] = 6, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9007), 1, - anon_sym_RPAREN, - ACTIONS(9009), 1, - sym__quoted_content_parenthesis, - STATE(6720), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9042), 1, + anon_sym_GT, + ACTIONS(9044), 1, + sym__quoted_content_angle, + STATE(6740), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292239] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_angle, + [292282] = 6, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(9046), 1, + anon_sym_RBRACK, + ACTIONS(9048), 1, + sym__quoted_content_square, + STATE(6737), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, + [292303] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - [292256] = 4, - ACTIONS(9013), 1, - sym__quoted_content_i_bar, + ACTIONS(9050), 1, + anon_sym_RBRACE, + ACTIONS(9052), 1, + sym__quoted_content_curly, + STATE(6735), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9011), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [292273] = 6, - ACTIONS(8428), 1, + [292324] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9015), 1, - anon_sym_SLASH, - ACTIONS(9017), 1, - sym__quoted_content_slash, - STATE(6520), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9054), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9056), 1, + sym__quoted_content_heredoc_double, + STATE(6733), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292294] = 6, - ACTIONS(8428), 1, + [292345] = 6, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9019), 1, - anon_sym_SLASH, - ACTIONS(9021), 1, - sym__quoted_content_slash, - STATE(6750), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9058), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9060), 1, + sym__quoted_content_heredoc_single, + STATE(6728), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292315] = 6, - ACTIONS(8480), 1, + [292366] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9023), 1, - anon_sym_PIPE, - ACTIONS(9025), 1, - sym__quoted_content_bar, - STATE(6752), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9062), 1, + anon_sym_SQUOTE, + ACTIONS(9064), 1, + sym__quoted_content_single, + STATE(6726), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292336] = 6, - ACTIONS(8438), 1, + [292387] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9027), 1, - anon_sym_GT, - ACTIONS(9029), 1, - sym__quoted_content_angle, - STATE(6754), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9066), 1, + anon_sym_DQUOTE, + ACTIONS(9068), 1, + sym__quoted_content_double, + STATE(6721), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292357] = 6, - ACTIONS(8450), 1, + [292408] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9031), 1, - anon_sym_RBRACK, - ACTIONS(9033), 1, - sym__quoted_content_square, - STATE(6749), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9070), 1, + anon_sym_RPAREN, + ACTIONS(9072), 1, + sym__quoted_content_parenthesis, + STATE(6699), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292378] = 6, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(9035), 1, - anon_sym_RBRACE, - ACTIONS(9037), 1, - sym__quoted_content_curly, - STATE(6736), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, + [292429] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9074), 1, + anon_sym_COMMA, + STATE(6127), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(9076), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, + [292448] = 6, + ACTIONS(5), 1, sym_comment, - [292399] = 6, - ACTIONS(8400), 1, - sym_escape_sequence, - ACTIONS(9039), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9041), 1, - sym__quoted_content_heredoc_double, - STATE(6732), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(926), 1, + anon_sym_DQUOTE, + ACTIONS(928), 1, + anon_sym_SQUOTE, + STATE(1982), 1, + sym__quoted_i_double, + STATE(1983), 1, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [292469] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292420] = 6, - ACTIONS(8394), 1, + ACTIONS(8776), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9043), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9045), 1, - sym__quoted_content_heredoc_single, - STATE(6729), 1, - aux_sym__quoted_heredoc_single_repeat1, + [292486] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292441] = 6, - ACTIONS(8412), 1, - sym_escape_sequence, - ACTIONS(9047), 1, + ACTIONS(9078), 3, anon_sym_SQUOTE, - ACTIONS(9049), 1, - sym__quoted_content_single, - STATE(6727), 1, - aux_sym__quoted_single_repeat1, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292503] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292462] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_curly, + ACTIONS(8776), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292520] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_RBRACE, + ACTIONS(9078), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [292479] = 6, - ACTIONS(8406), 1, - sym_escape_sequence, - ACTIONS(9051), 1, - anon_sym_DQUOTE, - ACTIONS(9053), 1, - sym__quoted_content_double, - STATE(6725), 1, - aux_sym__quoted_double_repeat1, + [292537] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9082), 1, + anon_sym_COMMA, + STATE(6127), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(5049), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [292556] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292500] = 6, - ACTIONS(8422), 1, + ACTIONS(9078), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9055), 1, - anon_sym_RPAREN, - ACTIONS(9057), 1, - sym__quoted_content_parenthesis, - STATE(6723), 1, - aux_sym__quoted_parenthesis_repeat1, + [292573] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292521] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_curly, + ACTIONS(8776), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292590] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_RBRACE, + ACTIONS(9078), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [292538] = 6, - ACTIONS(8422), 1, + [292607] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9059), 1, + ACTIONS(9085), 1, anon_sym_RPAREN, - ACTIONS(9061), 1, + ACTIONS(9087), 1, sym__quoted_content_parenthesis, - STATE(6202), 1, + STATE(6199), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414672,14 +414477,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292559] = 6, - ACTIONS(8406), 1, + [292628] = 6, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9063), 1, + ACTIONS(9089), 1, anon_sym_DQUOTE, - ACTIONS(9065), 1, + ACTIONS(9091), 1, sym__quoted_content_double, - STATE(6204), 1, + STATE(6201), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414687,14 +414492,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292580] = 6, - ACTIONS(8412), 1, + [292649] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9067), 1, + ACTIONS(9093), 1, anon_sym_SQUOTE, - ACTIONS(9069), 1, + ACTIONS(9095), 1, sym__quoted_content_single, - STATE(6206), 1, + STATE(6208), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414702,14 +414507,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292601] = 6, + [292670] = 6, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9071), 1, + ACTIONS(9097), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9073), 1, + ACTIONS(9099), 1, sym__quoted_content_heredoc_single, - STATE(6208), 1, + STATE(6210), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414717,14 +414522,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292622] = 6, - ACTIONS(8400), 1, + [292691] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9075), 1, + ACTIONS(9101), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9077), 1, + ACTIONS(9103), 1, sym__quoted_content_heredoc_double, - STATE(6210), 1, + STATE(6212), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414732,14 +414537,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292643] = 6, - ACTIONS(8444), 1, + [292712] = 6, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9079), 1, + ACTIONS(9105), 1, anon_sym_RBRACE, - ACTIONS(9081), 1, + ACTIONS(9107), 1, sym__quoted_content_curly, - STATE(6212), 1, + STATE(6214), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414747,118 +414552,107 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292664] = 6, - ACTIONS(8450), 1, - sym_escape_sequence, - ACTIONS(9083), 1, - anon_sym_RBRACK, - ACTIONS(9085), 1, - sym__quoted_content_square, - STATE(6214), 1, - aux_sym__quoted_square_repeat1, + [292733] = 4, + ACTIONS(9111), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292685] = 6, - ACTIONS(8480), 1, + ACTIONS(9109), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9087), 1, - anon_sym_PIPE, - ACTIONS(9089), 1, - sym__quoted_content_bar, - STATE(6522), 1, - aux_sym__quoted_bar_repeat1, + [292750] = 4, + ACTIONS(9115), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292706] = 6, - ACTIONS(8438), 1, + ACTIONS(9113), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9091), 1, - anon_sym_GT, - ACTIONS(9093), 1, - sym__quoted_content_angle, - STATE(6524), 1, - aux_sym__quoted_angle_repeat1, + [292767] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292727] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9095), 1, - anon_sym_COMMA, - STATE(6077), 1, - aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(9097), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, + ACTIONS(8776), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292784] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [292746] = 6, - ACTIONS(8450), 1, + sym_comment, + ACTIONS(9078), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9099), 1, - anon_sym_RBRACK, - ACTIONS(9101), 1, - sym__quoted_content_square, - STATE(6584), 1, - aux_sym__quoted_square_repeat1, + [292801] = 4, + ACTIONS(9119), 1, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292767] = 6, - ACTIONS(8444), 1, + ACTIONS(9117), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9103), 1, - anon_sym_RBRACE, - ACTIONS(9105), 1, - sym__quoted_content_curly, - STATE(6586), 1, - aux_sym__quoted_curly_repeat1, + [292818] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292788] = 6, - ACTIONS(8400), 1, + ACTIONS(8776), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9107), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9109), 1, - sym__quoted_content_heredoc_double, - STATE(6601), 1, - aux_sym__quoted_heredoc_double_repeat1, + [292835] = 6, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(9121), 1, + anon_sym_RBRACK, + ACTIONS(9123), 1, + sym__quoted_content_square, + STATE(6216), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292809] = 6, + [292856] = 6, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9111), 1, + ACTIONS(9125), 1, anon_sym_GT, - ACTIONS(9113), 1, + ACTIONS(9127), 1, sym__quoted_content_angle, - STATE(6216), 1, + STATE(6218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414866,14 +414660,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292830] = 6, - ACTIONS(8480), 1, + [292877] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9115), 1, + ACTIONS(9129), 1, anon_sym_PIPE, - ACTIONS(9117), 1, + ACTIONS(9131), 1, sym__quoted_content_bar, - STATE(6218), 1, + STATE(6220), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414881,14 +414675,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292851] = 6, - ACTIONS(8428), 1, + [292898] = 6, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9119), 1, + ACTIONS(9133), 1, anon_sym_SLASH, - ACTIONS(9121), 1, + ACTIONS(9135), 1, sym__quoted_content_slash, - STATE(6220), 1, + STATE(6222), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -414896,171 +414690,175 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292872] = 6, - ACTIONS(8394), 1, - sym_escape_sequence, - ACTIONS(9123), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9125), 1, - sym__quoted_content_heredoc_single, - STATE(6603), 1, - aux_sym__quoted_heredoc_single_repeat1, + [292919] = 4, + ACTIONS(9139), 1, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292893] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_DQUOTE, - ACTIONS(1103), 1, - anon_sym_SQUOTE, - STATE(4546), 1, - sym__quoted_i_single, - STATE(4547), 1, - sym__quoted_i_double, - ACTIONS(3), 3, + ACTIONS(9137), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292936] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [292914] = 4, - ACTIONS(9129), 1, - sym__quoted_content_i_curly, + sym_comment, + ACTIONS(8776), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [292953] = 6, + ACTIONS(8454), 1, + sym_escape_sequence, + ACTIONS(9141), 1, + anon_sym_SLASH, + ACTIONS(9143), 1, + sym__quoted_content_slash, + STATE(6517), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9127), 3, - anon_sym_RBRACE, - anon_sym_POUND_LBRACE, + [292974] = 6, + ACTIONS(8484), 1, sym_escape_sequence, - [292931] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(926), 1, - anon_sym_DQUOTE, - ACTIONS(928), 1, - anon_sym_SQUOTE, - STATE(1982), 1, - sym__quoted_i_double, - STATE(1983), 1, - sym__quoted_i_single, - ACTIONS(3), 3, + ACTIONS(9145), 1, + anon_sym_PIPE, + ACTIONS(9147), 1, + sym__quoted_content_bar, + STATE(6510), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [292952] = 6, - ACTIONS(5), 1, sym_comment, - ACTIONS(496), 1, - anon_sym_DQUOTE, - ACTIONS(498), 1, - anon_sym_SQUOTE, - STATE(3028), 1, - sym__quoted_i_double, - STATE(3029), 1, - sym__quoted_i_single, - ACTIONS(3), 3, + [292995] = 6, + ACTIONS(8438), 1, + sym_escape_sequence, + ACTIONS(9149), 1, + anon_sym_GT, + ACTIONS(9151), 1, + sym__quoted_content_angle, + STATE(6459), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [292973] = 6, - ACTIONS(8412), 1, + sym_comment, + [293016] = 6, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9131), 1, - anon_sym_SQUOTE, - ACTIONS(9133), 1, - sym__quoted_content_single, - STATE(6605), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9153), 1, + anon_sym_RBRACK, + ACTIONS(9155), 1, + sym__quoted_content_square, + STATE(6443), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [292994] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_double, + [293037] = 6, + ACTIONS(8426), 1, + sym_escape_sequence, + ACTIONS(9157), 1, + anon_sym_RBRACE, + ACTIONS(9159), 1, + sym__quoted_content_curly, + STATE(6440), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [293011] = 6, - ACTIONS(8406), 1, + [293058] = 6, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9135), 1, - anon_sym_DQUOTE, - ACTIONS(9137), 1, - sym__quoted_content_double, - STATE(6619), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9161), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9163), 1, + sym__quoted_content_heredoc_double, + STATE(6350), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293032] = 4, - ACTIONS(8626), 1, - sym__quoted_content_i_double, + [293079] = 6, + ACTIONS(8410), 1, + sym_escape_sequence, + ACTIONS(9165), 1, + anon_sym_SQUOTE, + ACTIONS(9167), 1, + sym__quoted_content_single, + STATE(6501), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, - anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [293049] = 6, - ACTIONS(8422), 1, + [293100] = 6, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9139), 1, - anon_sym_RPAREN, - ACTIONS(9141), 1, - sym__quoted_content_parenthesis, - STATE(6621), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9169), 1, + anon_sym_SQUOTE, + ACTIONS(9171), 1, + sym__quoted_content_single, + STATE(6313), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293070] = 4, - ACTIONS(8490), 1, - sym__quoted_content_i_bar, + [293121] = 6, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(9173), 1, + anon_sym_DQUOTE, + ACTIONS(9175), 1, + sym__quoted_content_double, + STATE(6310), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8488), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [293087] = 6, - ACTIONS(8422), 1, + [293142] = 6, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9143), 1, + ACTIONS(9177), 1, anon_sym_RPAREN, - ACTIONS(9145), 1, + ACTIONS(9179), 1, sym__quoted_content_parenthesis, - STATE(6245), 1, + STATE(6268), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415068,8 +414866,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293108] = 4, - ACTIONS(8626), 1, + [293163] = 4, + ACTIONS(9080), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415077,196 +414875,164 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8624), 3, + ACTIONS(9078), 3, anon_sym_PIPE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [293125] = 6, - ACTIONS(8428), 1, - sym_escape_sequence, - ACTIONS(9147), 1, - anon_sym_SLASH, - ACTIONS(9149), 1, - sym__quoted_content_slash, - STATE(6600), 1, - aux_sym__quoted_slash_repeat1, + [293180] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293146] = 6, - ACTIONS(8480), 1, + ACTIONS(9078), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9151), 1, - anon_sym_PIPE, - ACTIONS(9153), 1, - sym__quoted_content_bar, - STATE(6572), 1, - aux_sym__quoted_bar_repeat1, - ACTIONS(3), 2, + [293197] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(23), 1, + anon_sym_DQUOTE, + ACTIONS(25), 1, + anon_sym_SQUOTE, + STATE(4349), 1, + sym__quoted_i_single, + STATE(4355), 1, + sym__quoted_i_double, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [293167] = 6, - ACTIONS(8438), 1, - sym_escape_sequence, - ACTIONS(9155), 1, - anon_sym_GT, - ACTIONS(9157), 1, - sym__quoted_content_angle, - STATE(6570), 1, - aux_sym__quoted_angle_repeat1, + [293218] = 4, + ACTIONS(9183), 1, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293188] = 6, - ACTIONS(8450), 1, + ACTIONS(9181), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9159), 1, - anon_sym_RBRACK, - ACTIONS(9161), 1, - sym__quoted_content_square, - STATE(6568), 1, - aux_sym__quoted_square_repeat1, + [293235] = 4, + ACTIONS(9187), 1, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293209] = 6, - ACTIONS(8444), 1, + ACTIONS(9185), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9163), 1, - anon_sym_RBRACE, - ACTIONS(9165), 1, - sym__quoted_content_curly, - STATE(6652), 1, - aux_sym__quoted_curly_repeat1, + [293252] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293230] = 6, - ACTIONS(8400), 1, + ACTIONS(9078), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9167), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9169), 1, - sym__quoted_content_heredoc_double, - STATE(6500), 1, - aux_sym__quoted_heredoc_double_repeat1, + [293269] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293251] = 6, - ACTIONS(8394), 1, + ACTIONS(8776), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9171), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9173), 1, - sym__quoted_content_heredoc_single, - STATE(6482), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, + [293286] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(496), 1, + anon_sym_DQUOTE, + ACTIONS(498), 1, + anon_sym_SQUOTE, + STATE(3392), 1, + sym__quoted_i_single, + STATE(3394), 1, + sym__quoted_i_double, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [293272] = 6, - ACTIONS(8412), 1, - sym_escape_sequence, - ACTIONS(9175), 1, - anon_sym_SQUOTE, - ACTIONS(9177), 1, - sym__quoted_content_single, - STATE(6455), 1, - aux_sym__quoted_single_repeat1, + [293307] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293293] = 6, - ACTIONS(8406), 1, + ACTIONS(9078), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9179), 1, - anon_sym_DQUOTE, - ACTIONS(9181), 1, - sym__quoted_content_double, - STATE(6443), 1, - aux_sym__quoted_double_repeat1, + [293324] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293314] = 6, - ACTIONS(8422), 1, + ACTIONS(8776), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9183), 1, - anon_sym_RPAREN, - ACTIONS(9185), 1, - sym__quoted_content_parenthesis, - STATE(6344), 1, - aux_sym__quoted_parenthesis_repeat1, + [293341] = 4, + ACTIONS(9080), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293335] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_DQUOTE, - ACTIONS(25), 1, - anon_sym_SQUOTE, - STATE(4051), 1, - sym__quoted_i_double, - STATE(4218), 1, - sym__quoted_i_single, - ACTIONS(3), 3, + ACTIONS(9078), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293358] = 4, + ACTIONS(8778), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [293356] = 5, - ACTIONS(5), 1, sym_comment, - ACTIONS(9187), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(1169), 2, + ACTIONS(8776), 3, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, + anon_sym_POUND_LBRACE, + sym_escape_sequence, [293375] = 5, - ACTIONS(8406), 1, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9189), 1, - anon_sym_DQUOTE, - STATE(6735), 1, - aux_sym__quoted_double_repeat1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415274,11 +415040,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293393] = 5, - ACTIONS(8444), 1, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(9191), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415287,12 +415053,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293411] = 5, - ACTIONS(8412), 1, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(9193), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6190), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415302,9 +415068,9 @@ static const uint16_t ts_small_parse_table[] = { [293429] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9195), 1, + ACTIONS(9193), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6191), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415313,12 +415079,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293447] = 5, - ACTIONS(8394), 1, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(9195), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6191), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415326,11 +415092,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293465] = 5, - ACTIONS(8400), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9197), 1, + ACTIONS(9195), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6192), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415339,12 +415105,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293483] = 5, - ACTIONS(8400), 1, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(9197), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + anon_sym_RBRACE, + STATE(6192), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415352,11 +415118,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293501] = 5, - ACTIONS(8444), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9199), 1, + ACTIONS(9197), 1, anon_sym_RBRACE, - STATE(6193), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415365,12 +415131,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293519] = 5, - ACTIONS(8444), 1, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(9199), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + anon_sym_RBRACK, + STATE(6193), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415378,11 +415144,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293537] = 5, - ACTIONS(8450), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9201), 1, + ACTIONS(9199), 1, anon_sym_RBRACK, - STATE(6194), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415391,12 +415157,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293555] = 5, - ACTIONS(8450), 1, + ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(9201), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + anon_sym_GT, + STATE(6194), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415406,9 +415172,9 @@ static const uint16_t ts_small_parse_table[] = { [293573] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9203), 1, + ACTIONS(9201), 1, anon_sym_GT, - STATE(6195), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415417,12 +415183,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293591] = 5, - ACTIONS(8438), 1, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(9203), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + anon_sym_PIPE, + STATE(6195), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415430,11 +415196,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293609] = 5, - ACTIONS(8480), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9205), 1, + ACTIONS(9203), 1, anon_sym_PIPE, - STATE(6196), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415443,12 +415209,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293627] = 5, - ACTIONS(8480), 1, + ACTIONS(8454), 1, sym_escape_sequence, ACTIONS(9205), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + anon_sym_SLASH, + STATE(6196), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415456,11 +415222,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293645] = 5, - ACTIONS(8428), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9207), 1, + ACTIONS(9205), 1, anon_sym_SLASH, - STATE(6197), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415469,12 +415235,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293663] = 5, - ACTIONS(8428), 1, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9207), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415482,12 +415248,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293681] = 5, - ACTIONS(8422), 1, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(9209), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415495,12 +415261,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293699] = 5, - ACTIONS(8406), 1, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9211), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415508,12 +415274,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293717] = 5, - ACTIONS(8412), 1, + ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(9213), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415521,12 +415287,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293735] = 5, - ACTIONS(8394), 1, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(9215), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415534,12 +415300,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293753] = 5, - ACTIONS(8400), 1, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(9217), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415547,12 +415313,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293771] = 5, - ACTIONS(8444), 1, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(9219), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415560,12 +415326,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293789] = 5, - ACTIONS(8450), 1, + ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(9221), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415573,12 +415339,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293807] = 5, - ACTIONS(8438), 1, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(9223), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -415586,76 +415352,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [293825] = 5, - ACTIONS(8480), 1, + ACTIONS(8454), 1, sym_escape_sequence, ACTIONS(9225), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [293843] = 3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8110), 3, anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [293857] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9227), 1, + anon_sym_RPAREN, + STATE(6229), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293843] = 5, - ACTIONS(8428), 1, + [293875] = 5, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9227), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293861] = 5, - ACTIONS(8394), 1, + [293893] = 5, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(9229), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + anon_sym_DQUOTE, + STATE(6230), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293879] = 5, - ACTIONS(8444), 1, + [293911] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9231), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9229), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293897] = 5, - ACTIONS(8400), 1, - sym_escape_sequence, + [293929] = 4, ACTIONS(9233), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + sym__quoted_content_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293915] = 5, - ACTIONS(8422), 1, + ACTIONS(9231), 2, + anon_sym_RPAREN, + sym_escape_sequence, + [293945] = 5, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9235), 1, anon_sym_RPAREN, - STATE(6226), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415663,12 +415452,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293933] = 5, - ACTIONS(8422), 1, + [293963] = 5, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9235), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6311), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415676,12 +415465,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293951] = 5, - ACTIONS(8406), 1, + [293981] = 5, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(9237), 1, anon_sym_DQUOTE, - STATE(6227), 1, + STATE(6338), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415689,25 +415478,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293969] = 5, - ACTIONS(8406), 1, - sym_escape_sequence, - ACTIONS(9237), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + [293999] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [293987] = 5, - ACTIONS(8412), 1, + ACTIONS(7228), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [294013] = 5, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9239), 1, anon_sym_SQUOTE, - STATE(6228), 1, + STATE(6231), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415715,12 +415502,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294005] = 5, - ACTIONS(8412), 1, + [294031] = 5, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9239), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415728,12 +415515,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294023] = 5, + [294049] = 5, ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(9241), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6229), 1, + STATE(6232), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415741,12 +415528,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294041] = 5, + [294067] = 5, ACTIONS(8394), 1, sym_escape_sequence, ACTIONS(9241), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415754,12 +415541,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294059] = 5, - ACTIONS(8400), 1, + [294085] = 5, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(9243), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6230), 1, + STATE(6233), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415767,12 +415554,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294077] = 5, - ACTIONS(8400), 1, + [294103] = 5, + ACTIONS(8420), 1, sym_escape_sequence, ACTIONS(9243), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415780,12 +415567,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294095] = 5, - ACTIONS(8444), 1, + [294121] = 5, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(9245), 1, anon_sym_RBRACE, - STATE(6231), 1, + STATE(6234), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415793,12 +415580,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294113] = 5, - ACTIONS(8444), 1, + [294139] = 5, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(9245), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415806,12 +415593,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294131] = 5, - ACTIONS(8450), 1, + [294157] = 5, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(9247), 1, anon_sym_RBRACK, - STATE(6232), 1, + STATE(6235), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415819,12 +415606,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294149] = 5, - ACTIONS(8450), 1, + [294175] = 5, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(9247), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415832,12 +415619,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294167] = 5, + [294193] = 5, ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(9249), 1, anon_sym_GT, - STATE(6233), 1, + STATE(6236), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415845,12 +415632,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294185] = 5, + [294211] = 5, ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(9249), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415858,12 +415645,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294203] = 5, - ACTIONS(8480), 1, + [294229] = 5, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(9251), 1, anon_sym_PIPE, - STATE(6234), 1, + STATE(6237), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415871,12 +415658,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294221] = 5, - ACTIONS(8480), 1, + [294247] = 5, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(9251), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415884,12 +415671,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294239] = 5, - ACTIONS(8428), 1, + [294265] = 5, + ACTIONS(8454), 1, sym_escape_sequence, ACTIONS(9253), 1, anon_sym_SLASH, - STATE(6235), 1, + STATE(6238), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415897,12 +415684,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294257] = 5, - ACTIONS(8428), 1, + [294283] = 5, + ACTIONS(8454), 1, sym_escape_sequence, ACTIONS(9253), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415910,12 +415697,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294275] = 5, - ACTIONS(8422), 1, + [294301] = 5, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9255), 1, anon_sym_RPAREN, - STATE(6188), 1, + STATE(6187), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415923,12 +415710,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294293] = 5, - ACTIONS(8406), 1, + [294319] = 5, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9257), 1, + anon_sym_SQUOTE, + STATE(6189), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [294337] = 5, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(9259), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415936,12 +415736,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294311] = 5, - ACTIONS(8406), 1, + [294355] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9257), 1, + ACTIONS(9259), 1, anon_sym_DQUOTE, - STATE(6189), 1, + STATE(6188), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415949,12 +415749,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294329] = 5, - ACTIONS(8422), 1, + [294373] = 5, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9255), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415962,25 +415762,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294347] = 5, - ACTIONS(8412), 1, + [294391] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9259), 1, - anon_sym_SQUOTE, - STATE(6356), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9261), 1, + anon_sym_SLASH, + STATE(6239), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294365] = 5, - ACTIONS(8422), 1, + [294409] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9261), 1, + ACTIONS(9263), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -415988,12 +415788,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294383] = 5, - ACTIONS(8406), 1, + [294427] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9263), 1, + ACTIONS(9265), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416001,12 +415801,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294401] = 5, - ACTIONS(8412), 1, + [294445] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9265), 1, + ACTIONS(9267), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416014,12 +415814,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294419] = 5, + [294463] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9267), 1, + ACTIONS(9269), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416027,12 +415827,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294437] = 5, - ACTIONS(8400), 1, + [294481] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9269), 1, + ACTIONS(9271), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416040,12 +415840,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294455] = 5, - ACTIONS(8444), 1, + [294499] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9271), 1, + ACTIONS(9273), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416053,12 +415853,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294473] = 5, - ACTIONS(8450), 1, + [294517] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9273), 1, + ACTIONS(9275), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416066,12 +415866,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294491] = 5, + [294535] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9275), 1, + ACTIONS(9277), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416079,12 +415879,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294509] = 5, - ACTIONS(8480), 1, + [294553] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9277), 1, + ACTIONS(9279), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416092,12 +415892,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294527] = 5, - ACTIONS(8428), 1, + [294571] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9279), 1, + ACTIONS(9281), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416105,23 +415905,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294545] = 3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(7203), 3, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [294559] = 5, - ACTIONS(8428), 1, + [294589] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9281), 1, + ACTIONS(9283), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416129,12 +415918,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294577] = 5, - ACTIONS(8480), 1, + [294607] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9283), 1, + ACTIONS(9285), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416142,281 +415931,258 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294595] = 5, + [294625] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9285), 1, - anon_sym_RPAREN, ACTIONS(9287), 1, + anon_sym_RPAREN, + ACTIONS(9289), 1, anon_sym_COMMA, - STATE(5177), 1, + STATE(5158), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [294613] = 5, - ACTIONS(8422), 1, + [294643] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9289), 1, - anon_sym_RPAREN, - STATE(6345), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9291), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294631] = 4, + [294661] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9291), 1, - anon_sym_RPAREN, - ACTIONS(9293), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(5972), 1, + anon_sym_GT_GT, + ACTIONS(9293), 1, + anon_sym_COMMA, + STATE(6516), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [294647] = 4, - ACTIONS(9297), 1, - sym__quoted_content_slash, - ACTIONS(3), 2, + [294679] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8166), 1, + anon_sym_GT_GT, + ACTIONS(9295), 1, + anon_sym_COMMA, + STATE(6243), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - ACTIONS(9295), 2, - anon_sym_SLASH, - sym_escape_sequence, - [294663] = 5, - ACTIONS(8438), 1, + [294697] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9299), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9297), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294681] = 5, - ACTIONS(8480), 1, + [294715] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9301), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9299), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294699] = 5, - ACTIONS(8422), 1, + [294733] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9289), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9301), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294717] = 5, - ACTIONS(8406), 1, + [294751] = 5, + ACTIONS(8484), 1, sym_escape_sequence, ACTIONS(9303), 1, - anon_sym_DQUOTE, - STATE(6354), 1, - aux_sym__quoted_double_repeat1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294735] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5126), 1, - anon_sym_RPAREN, + [294769] = 5, + ACTIONS(8438), 1, + sym_escape_sequence, ACTIONS(9305), 1, - anon_sym_COMMA, - STATE(6247), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [294753] = 4, - ACTIONS(9310), 1, - sym__quoted_content_parenthesis, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9308), 2, - anon_sym_RPAREN, - sym_escape_sequence, - [294769] = 5, - ACTIONS(8428), 1, + [294787] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9312), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9307), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294787] = 5, - ACTIONS(8428), 1, + [294805] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9314), 1, - anon_sym_SLASH, - STATE(6460), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9309), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294805] = 5, - ACTIONS(8438), 1, + [294823] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9316), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9311), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294823] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(9318), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [294837] = 5, - ACTIONS(8412), 1, + [294841] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9320), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9313), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294855] = 5, - ACTIONS(8406), 1, + [294859] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9322), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9315), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294873] = 5, - ACTIONS(8450), 1, + [294877] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9324), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9317), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294891] = 5, - ACTIONS(8428), 1, + [294895] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9326), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9319), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294909] = 5, - ACTIONS(8480), 1, + [294913] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9328), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9321), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294927] = 5, - ACTIONS(8438), 1, + [294931] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9330), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9323), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [294945] = 5, - ACTIONS(8450), 1, - sym_escape_sequence, - ACTIONS(9332), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + [294949] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + ACTIONS(7880), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, [294963] = 5, - ACTIONS(8444), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9334), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9325), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -416424,12 +416190,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [294981] = 5, - ACTIONS(8400), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9336), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9327), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -416437,50 +416203,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [294999] = 5, - ACTIONS(8394), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9338), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9329), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295017] = 5, - ACTIONS(8412), 1, - sym_escape_sequence, - ACTIONS(9340), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + [295017] = 4, + ACTIONS(9333), 1, + sym__quoted_content_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295035] = 5, - ACTIONS(8406), 1, + ACTIONS(9331), 2, + anon_sym_SLASH, sym_escape_sequence, - ACTIONS(9342), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [295053] = 5, - ACTIONS(8422), 1, + [295033] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9344), 1, + ACTIONS(9335), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416488,86 +416240,75 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295071] = 3, + [295051] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7243), 3, - anon_sym_RPAREN, + ACTIONS(7274), 3, + anon_sym_SQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, - [295085] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(5972), 1, - anon_sym_GT_GT, - ACTIONS(9346), 1, - anon_sym_COMMA, - STATE(6457), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [295103] = 5, - ACTIONS(8480), 1, + [295065] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9348), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9337), 1, + anon_sym_SLASH, + STATE(6676), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295121] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(8188), 1, - anon_sym_GT_GT, - ACTIONS(9350), 1, - anon_sym_COMMA, - STATE(6267), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [295083] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9339), 1, + anon_sym_RPAREN, + STATE(6590), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [295139] = 3, + sym_comment, + [295101] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9339), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7251), 3, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [295153] = 5, - ACTIONS(8444), 1, + [295119] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9352), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9341), 1, + anon_sym_DQUOTE, + STATE(6593), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295171] = 5, - ACTIONS(8428), 1, + [295137] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9354), 1, + ACTIONS(9343), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416575,12 +416316,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295189] = 5, - ACTIONS(8428), 1, + [295155] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9354), 1, + ACTIONS(9343), 1, anon_sym_SLASH, - STATE(6256), 1, + STATE(6247), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416588,12 +416329,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295207] = 5, - ACTIONS(8480), 1, + [295173] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9356), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416601,12 +416342,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295225] = 5, - ACTIONS(8480), 1, + [295191] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9356), 1, + ACTIONS(9345), 1, anon_sym_PIPE, - STATE(6257), 1, + STATE(6248), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416614,12 +416355,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295243] = 5, + [295209] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9358), 1, + ACTIONS(9347), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416627,12 +416368,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295261] = 5, + [295227] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9358), 1, + ACTIONS(9347), 1, anon_sym_GT, - STATE(6258), 1, + STATE(6249), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416640,12 +416381,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295279] = 5, - ACTIONS(8450), 1, + [295245] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9360), 1, + ACTIONS(9349), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416653,12 +416394,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295297] = 5, - ACTIONS(8450), 1, + [295263] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9360), 1, + ACTIONS(9349), 1, anon_sym_RBRACK, - STATE(6259), 1, + STATE(6250), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416666,12 +416407,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295315] = 5, - ACTIONS(8444), 1, + [295281] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9362), 1, + ACTIONS(9351), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416679,12 +416420,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295333] = 5, - ACTIONS(8444), 1, + [295299] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9362), 1, + ACTIONS(9351), 1, anon_sym_RBRACE, - STATE(6260), 1, + STATE(6251), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416692,12 +416433,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295351] = 5, - ACTIONS(8400), 1, + [295317] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9364), 1, + ACTIONS(9353), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416705,12 +416446,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295369] = 5, - ACTIONS(8400), 1, + [295335] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9364), 1, + ACTIONS(9353), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6261), 1, + STATE(6252), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416718,12 +416459,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295387] = 5, + [295353] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9366), 1, + ACTIONS(9355), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416731,12 +416472,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295405] = 5, + [295371] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9366), 1, + ACTIONS(9355), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6262), 1, + STATE(6253), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416744,12 +416485,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295423] = 5, - ACTIONS(8412), 1, + [295389] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9368), 1, + ACTIONS(9357), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416757,12 +416498,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295441] = 5, - ACTIONS(8412), 1, + [295407] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9368), 1, + ACTIONS(9357), 1, anon_sym_SQUOTE, - STATE(6263), 1, + STATE(6255), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416770,12 +416511,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295459] = 5, - ACTIONS(8406), 1, + [295425] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9370), 1, + ACTIONS(9359), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416783,10 +416524,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295477] = 5, - ACTIONS(8422), 1, + [295443] = 5, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(9359), 1, + anon_sym_DQUOTE, + STATE(6257), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [295461] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9361), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [295479] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9372), 1, + ACTIONS(9363), 1, anon_sym_RPAREN, STATE(6315), 1, aux_sym__quoted_parenthesis_repeat1, @@ -416796,12 +416563,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295495] = 5, - ACTIONS(8422), 1, + [295497] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9372), 1, + ACTIONS(9363), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416809,10 +416576,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295513] = 5, - ACTIONS(8406), 1, + [295515] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9374), 1, + ACTIONS(9365), 1, anon_sym_DQUOTE, STATE(6316), 1, aux_sym__quoted_double_repeat1, @@ -416822,12 +416589,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295531] = 5, - ACTIONS(8406), 1, + [295533] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9374), 1, + ACTIONS(9365), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416835,10 +416602,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295549] = 5, - ACTIONS(8412), 1, + [295551] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9376), 1, + ACTIONS(9367), 1, anon_sym_SQUOTE, STATE(6317), 1, aux_sym__quoted_single_repeat1, @@ -416848,12 +416615,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295567] = 5, - ACTIONS(8412), 1, + [295569] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9376), 1, + ACTIONS(9367), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416861,10 +416628,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295585] = 5, + [295587] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9378), 1, + ACTIONS(9369), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(6318), 1, aux_sym__quoted_heredoc_single_repeat1, @@ -416874,12 +416641,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295603] = 5, + [295605] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9378), 1, + ACTIONS(9369), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416887,10 +416654,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295621] = 5, - ACTIONS(8400), 1, + [295623] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9380), 1, + ACTIONS(9371), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(6319), 1, aux_sym__quoted_heredoc_double_repeat1, @@ -416900,12 +416667,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295639] = 5, - ACTIONS(8400), 1, + [295641] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9380), 1, + ACTIONS(9371), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416913,10 +416680,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295657] = 5, - ACTIONS(8444), 1, + [295659] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9382), 1, + ACTIONS(9373), 1, anon_sym_RBRACE, STATE(6320), 1, aux_sym__quoted_curly_repeat1, @@ -416926,12 +416693,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295675] = 5, - ACTIONS(8444), 1, + [295677] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9382), 1, + ACTIONS(9373), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416939,10 +416706,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295693] = 5, - ACTIONS(8450), 1, + [295695] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9384), 1, + ACTIONS(9375), 1, anon_sym_RBRACK, STATE(6321), 1, aux_sym__quoted_square_repeat1, @@ -416952,12 +416719,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295711] = 5, - ACTIONS(8450), 1, + [295713] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9384), 1, + ACTIONS(9375), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416965,10 +416732,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295729] = 5, + [295731] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9386), 1, + ACTIONS(9377), 1, anon_sym_GT, STATE(6322), 1, aux_sym__quoted_angle_repeat1, @@ -416978,12 +416745,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295747] = 5, + [295749] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9386), 1, + ACTIONS(9377), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -416991,10 +416758,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295765] = 5, - ACTIONS(8480), 1, + [295767] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9388), 1, + ACTIONS(9379), 1, anon_sym_PIPE, STATE(6323), 1, aux_sym__quoted_bar_repeat1, @@ -417004,12 +416771,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295783] = 5, - ACTIONS(8480), 1, + [295785] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9388), 1, + ACTIONS(9379), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417017,10 +416784,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295801] = 5, - ACTIONS(8428), 1, + [295803] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9390), 1, + ACTIONS(9381), 1, anon_sym_SLASH, STATE(6324), 1, aux_sym__quoted_slash_repeat1, @@ -417030,12 +416797,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295819] = 5, - ACTIONS(8428), 1, + [295821] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9390), 1, + ACTIONS(9381), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417043,38 +416810,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295837] = 5, - ACTIONS(8406), 1, + [295839] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9370), 1, - anon_sym_DQUOTE, - STATE(6264), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9361), 1, + anon_sym_RPAREN, + STATE(6258), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295855] = 5, - ACTIONS(8422), 1, + [295857] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9392), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9341), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295873] = 5, - ACTIONS(8422), 1, + [295875] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9392), 1, + ACTIONS(9383), 1, anon_sym_RPAREN, - STATE(6265), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417082,49 +416849,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295891] = 3, + [295893] = 5, + ACTIONS(8410), 1, + sym_escape_sequence, + ACTIONS(9385), 1, + anon_sym_SQUOTE, + STATE(6595), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7263), 3, - anon_sym_RBRACE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [295905] = 5, - ACTIONS(8400), 1, + [295911] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9394), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9385), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295923] = 5, - ACTIONS(8394), 1, + [295929] = 5, + ACTIONS(9387), 1, + anon_sym_RPAREN, + ACTIONS(9389), 1, sym_escape_sequence, - ACTIONS(9396), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295941] = 5, - ACTIONS(8422), 1, + [295947] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9398), 1, + ACTIONS(9392), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417132,12 +416901,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295959] = 5, - ACTIONS(8406), 1, + [295965] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9400), 1, + ACTIONS(9394), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417145,12 +416914,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295977] = 5, - ACTIONS(8412), 1, + [295983] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9402), 1, + ACTIONS(9396), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417158,12 +416927,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [295995] = 5, + [296001] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9404), 1, + ACTIONS(9398), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417171,12 +416940,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296013] = 5, - ACTIONS(8400), 1, + [296019] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9406), 1, + ACTIONS(9400), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417184,12 +416953,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296031] = 5, - ACTIONS(8444), 1, + [296037] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9408), 1, + ACTIONS(9402), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417197,12 +416966,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296049] = 5, - ACTIONS(8450), 1, + [296055] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9410), 1, + ACTIONS(9404), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417210,12 +416979,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296067] = 5, + [296073] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9412), 1, + ACTIONS(9406), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417223,12 +416992,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296085] = 5, - ACTIONS(8480), 1, + [296091] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9414), 1, + ACTIONS(9408), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417236,12 +417005,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296103] = 5, - ACTIONS(8428), 1, + [296109] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9416), 1, + ACTIONS(9410), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417249,113 +417018,129 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296121] = 3, + [296127] = 5, + ACTIONS(8454), 1, + sym_escape_sequence, + ACTIONS(9412), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7295), 3, - anon_sym_RBRACK, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [296135] = 5, - ACTIONS(8412), 1, + [296145] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9418), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9414), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296153] = 4, - ACTIONS(9422), 1, - sym__quoted_content_bar, + [296163] = 5, + ACTIONS(8438), 1, + sym_escape_sequence, + ACTIONS(9416), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9420), 2, - anon_sym_PIPE, + [296181] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - [296169] = 5, - ACTIONS(8428), 1, + ACTIONS(9418), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [296199] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9424), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9420), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296187] = 5, - ACTIONS(8480), 1, + [296217] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9426), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9422), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6607), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296205] = 5, - ACTIONS(8406), 1, + [296235] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9428), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9424), 1, + anon_sym_RPAREN, + STATE(6444), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296223] = 5, - ACTIONS(8450), 1, + [296253] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9430), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9237), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296241] = 5, - ACTIONS(8480), 1, + [296271] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9348), 1, - anon_sym_PIPE, - STATE(6440), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9426), 1, + anon_sym_SQUOTE, + STATE(6544), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296259] = 5, - ACTIONS(8422), 1, + [296289] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9432), 1, + ACTIONS(9424), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417363,158 +417148,176 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296277] = 3, + [296307] = 5, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(9428), 1, + anon_sym_DQUOTE, + STATE(6545), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7315), 3, - anon_sym_GT, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [296291] = 5, - ACTIONS(8450), 1, + [296325] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9434), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9422), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296309] = 4, - ACTIONS(9438), 1, - sym__quoted_content_square, + [296343] = 4, + ACTIONS(9432), 1, + sym__quoted_content_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9436), 2, - anon_sym_RBRACK, + ACTIONS(9430), 2, + anon_sym_DQUOTE, sym_escape_sequence, - [296325] = 4, - ACTIONS(9442), 1, - sym__quoted_content_angle, + [296359] = 5, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(9434), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9440), 2, - anon_sym_GT, + [296377] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - [296341] = 3, + ACTIONS(9436), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7307), 3, - anon_sym_SQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [296355] = 5, - ACTIONS(8422), 1, + [296395] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9444), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9438), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296373] = 5, - ACTIONS(8438), 1, - sym_escape_sequence, - ACTIONS(9446), 1, - anon_sym_GT, - STATE(6436), 1, - aux_sym__quoted_angle_repeat1, + [296413] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296391] = 3, + ACTIONS(8260), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [296427] = 5, + ACTIONS(8410), 1, + sym_escape_sequence, + ACTIONS(9440), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7329), 3, - anon_sym_PIPE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [296405] = 5, - ACTIONS(8422), 1, + [296445] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9448), 1, - anon_sym_RPAREN, - STATE(6635), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9428), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296423] = 3, + [296463] = 4, + ACTIONS(9444), 1, + sym__quoted_content_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7355), 3, - anon_sym_SLASH, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [296437] = 5, - ACTIONS(8422), 1, + ACTIONS(9442), 2, + anon_sym_SQUOTE, sym_escape_sequence, - ACTIONS(9448), 1, + [296479] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9446), 1, anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9448), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [296495] = 5, + ACTIONS(8420), 1, + sym_escape_sequence, + ACTIONS(9450), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6610), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296455] = 5, - ACTIONS(8422), 1, + [296513] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9450), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9452), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296473] = 5, - ACTIONS(9452), 1, - anon_sym_RPAREN, - ACTIONS(9454), 1, + [296531] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - STATE(6346), 1, + ACTIONS(9454), 1, + anon_sym_RPAREN, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417522,64 +417325,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296491] = 5, - ACTIONS(8438), 1, + [296549] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9457), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9426), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296509] = 5, - ACTIONS(8450), 1, + [296567] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9459), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9450), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296527] = 5, - ACTIONS(8444), 1, + [296585] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9461), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9456), 1, + anon_sym_SQUOTE, + STATE(6445), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296545] = 5, - ACTIONS(8400), 1, + [296603] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9463), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9456), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296563] = 5, + [296621] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9465), 1, + ACTIONS(9458), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6446), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417587,116 +417390,116 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296581] = 5, - ACTIONS(8412), 1, + [296639] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9467), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9458), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296599] = 5, - ACTIONS(8444), 1, + [296657] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9469), 1, - anon_sym_RBRACE, - STATE(6431), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9460), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6447), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296617] = 5, - ACTIONS(8406), 1, + [296675] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9471), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9460), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296635] = 5, - ACTIONS(9473), 1, - anon_sym_DQUOTE, - ACTIONS(9475), 1, + [296693] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9462), 1, + anon_sym_RBRACE, + STATE(6448), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296653] = 5, - ACTIONS(8412), 1, + [296711] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9478), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9462), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296671] = 5, - ACTIONS(9480), 1, - anon_sym_SQUOTE, - ACTIONS(9482), 1, + [296729] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9464), 1, + anon_sym_RBRACK, + STATE(6453), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296689] = 5, - ACTIONS(8394), 1, + [296747] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9485), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9464), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296707] = 5, - ACTIONS(8450), 1, + [296765] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9434), 1, - anon_sym_RBRACK, - STATE(6433), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9466), 1, + anon_sym_GT, + STATE(6454), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296725] = 5, - ACTIONS(8428), 1, + [296783] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9487), 1, + ACTIONS(9468), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417704,12 +417507,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296743] = 5, - ACTIONS(8480), 1, + [296801] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9489), 1, + ACTIONS(9470), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417717,12 +417520,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296761] = 5, + [296819] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9491), 1, + ACTIONS(9472), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417730,12 +417533,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296779] = 5, - ACTIONS(8450), 1, + [296837] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9493), 1, + ACTIONS(9474), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417743,12 +417546,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296797] = 5, - ACTIONS(8444), 1, + [296855] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9495), 1, + ACTIONS(9476), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417756,12 +417559,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296815] = 5, - ACTIONS(8400), 1, + [296873] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9497), 1, + ACTIONS(9478), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417769,12 +417572,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296833] = 5, + [296891] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9499), 1, + ACTIONS(9480), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417782,12 +417585,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296851] = 5, - ACTIONS(8412), 1, + [296909] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9501), 1, + ACTIONS(9482), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417795,12 +417598,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296869] = 5, - ACTIONS(8406), 1, + [296927] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9503), 1, + ACTIONS(9484), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417808,12 +417611,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296887] = 5, - ACTIONS(8422), 1, + [296945] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9505), 1, + ACTIONS(9486), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417821,64 +417624,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296905] = 5, - ACTIONS(8438), 1, - sym_escape_sequence, - ACTIONS(9446), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [296923] = 5, - ACTIONS(8406), 1, - sym_escape_sequence, - ACTIONS(9507), 1, + [296963] = 5, + ACTIONS(9488), 1, anon_sym_DQUOTE, - STATE(6636), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [296941] = 5, - ACTIONS(8428), 1, + ACTIONS(9490), 1, sym_escape_sequence, - ACTIONS(9509), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296959] = 5, - ACTIONS(8428), 1, + [296981] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9509), 1, - anon_sym_SLASH, - STATE(6360), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9466), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296977] = 5, - ACTIONS(8480), 1, + [296999] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9511), 1, + ACTIONS(9493), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6458), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417886,10 +417663,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [296995] = 5, - ACTIONS(8422), 1, + [297017] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9513), 1, + ACTIONS(9495), 1, anon_sym_RPAREN, STATE(6401), 1, aux_sym__quoted_parenthesis_repeat1, @@ -417899,12 +417676,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297013] = 5, - ACTIONS(8422), 1, + [297035] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9513), 1, + ACTIONS(9495), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417912,10 +417689,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297031] = 5, - ACTIONS(8406), 1, + [297053] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9515), 1, + ACTIONS(9497), 1, anon_sym_DQUOTE, STATE(6402), 1, aux_sym__quoted_double_repeat1, @@ -417925,12 +417702,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297049] = 5, - ACTIONS(8406), 1, + [297071] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9515), 1, + ACTIONS(9497), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417938,10 +417715,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297067] = 5, - ACTIONS(8412), 1, + [297089] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9517), 1, + ACTIONS(9499), 1, anon_sym_SQUOTE, STATE(6403), 1, aux_sym__quoted_single_repeat1, @@ -417951,12 +417728,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297085] = 5, - ACTIONS(8412), 1, + [297107] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9517), 1, + ACTIONS(9499), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417964,10 +417741,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297103] = 5, + [297125] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9519), 1, + ACTIONS(9501), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(6404), 1, aux_sym__quoted_heredoc_single_repeat1, @@ -417977,12 +417754,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297121] = 5, + [297143] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9519), 1, + ACTIONS(9501), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -417990,10 +417767,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297139] = 5, - ACTIONS(8400), 1, + [297161] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9521), 1, + ACTIONS(9503), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(6405), 1, aux_sym__quoted_heredoc_double_repeat1, @@ -418003,12 +417780,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297157] = 5, - ACTIONS(8400), 1, + [297179] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9521), 1, + ACTIONS(9503), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418016,10 +417793,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297175] = 5, - ACTIONS(8444), 1, + [297197] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9523), 1, + ACTIONS(9505), 1, anon_sym_RBRACE, STATE(6406), 1, aux_sym__quoted_curly_repeat1, @@ -418029,12 +417806,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297193] = 5, - ACTIONS(8444), 1, + [297215] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9523), 1, + ACTIONS(9505), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418042,10 +417819,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297211] = 5, - ACTIONS(8450), 1, + [297233] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9525), 1, + ACTIONS(9507), 1, anon_sym_RBRACK, STATE(6407), 1, aux_sym__quoted_square_repeat1, @@ -418055,12 +417832,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297229] = 5, - ACTIONS(8450), 1, + [297251] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9525), 1, + ACTIONS(9507), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418068,10 +417845,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297247] = 5, + [297269] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9527), 1, + ACTIONS(9509), 1, anon_sym_GT, STATE(6408), 1, aux_sym__quoted_angle_repeat1, @@ -418081,12 +417858,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297265] = 5, + [297287] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9527), 1, + ACTIONS(9509), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418094,10 +417871,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297283] = 5, - ACTIONS(8480), 1, + [297305] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9529), 1, + ACTIONS(9511), 1, anon_sym_PIPE, STATE(6409), 1, aux_sym__quoted_bar_repeat1, @@ -418107,12 +417884,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297301] = 5, - ACTIONS(8480), 1, + [297323] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9529), 1, + ACTIONS(9511), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418120,10 +417897,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297319] = 5, - ACTIONS(8428), 1, + [297341] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9531), 1, + ACTIONS(9513), 1, anon_sym_SLASH, STATE(6410), 1, aux_sym__quoted_slash_repeat1, @@ -418133,12 +417910,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297337] = 5, - ACTIONS(8428), 1, + [297359] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9531), 1, + ACTIONS(9513), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418146,12 +417923,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297355] = 5, - ACTIONS(8480), 1, + [297377] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9511), 1, + ACTIONS(9493), 1, anon_sym_PIPE, - STATE(6361), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418159,77 +417936,75 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297373] = 5, - ACTIONS(8438), 1, + [297395] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9533), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9515), 1, + anon_sym_SLASH, + STATE(6460), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297391] = 5, - ACTIONS(8438), 1, + [297413] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9533), 1, - anon_sym_GT, - STATE(6362), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9515), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297409] = 5, - ACTIONS(8450), 1, - sym_escape_sequence, - ACTIONS(9535), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, - ACTIONS(3), 2, + [297431] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [297427] = 5, - ACTIONS(8450), 1, - sym_escape_sequence, - ACTIONS(9535), 1, + ACTIONS(1153), 3, + anon_sym_RBRACE, anon_sym_RBRACK, - STATE(6363), 1, - aux_sym__quoted_square_repeat1, + anon_sym_GT_GT, + [297445] = 5, + ACTIONS(8454), 1, + sym_escape_sequence, + ACTIONS(9517), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297445] = 5, - ACTIONS(8444), 1, + [297463] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9537), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9517), 1, + anon_sym_SLASH, + STATE(6362), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297463] = 5, - ACTIONS(8422), 1, + [297481] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9539), 1, + ACTIONS(9519), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418237,12 +418012,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297481] = 5, - ACTIONS(8406), 1, + [297499] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9541), 1, + ACTIONS(9521), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418250,12 +418025,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297499] = 5, - ACTIONS(8412), 1, + [297517] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9543), 1, + ACTIONS(9523), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418263,12 +418038,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297517] = 5, + [297535] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9545), 1, + ACTIONS(9525), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418276,12 +418051,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297535] = 5, - ACTIONS(8400), 1, + [297553] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9547), 1, + ACTIONS(9527), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418289,12 +418064,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297553] = 5, - ACTIONS(8444), 1, + [297571] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9549), 1, + ACTIONS(9529), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418302,12 +418077,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297571] = 5, - ACTIONS(8450), 1, + [297589] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9551), 1, + ACTIONS(9531), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418315,12 +418090,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297589] = 5, + [297607] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9553), 1, + ACTIONS(9533), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418328,12 +418103,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297607] = 5, - ACTIONS(8480), 1, + [297625] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9555), 1, + ACTIONS(9535), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418341,12 +418116,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297625] = 5, - ACTIONS(8428), 1, + [297643] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9557), 1, + ACTIONS(9537), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418354,26 +418129,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297643] = 5, - ACTIONS(8406), 1, - sym_escape_sequence, - ACTIONS(9559), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, [297661] = 5, - ACTIONS(8422), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9561), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9539), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418381,12 +418143,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297679] = 5, - ACTIONS(8444), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9537), 1, - anon_sym_RBRACE, - STATE(6364), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9539), 1, + anon_sym_PIPE, + STATE(6363), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418394,12 +418156,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297697] = 5, - ACTIONS(8400), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9563), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9541), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418407,12 +418169,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297715] = 5, - ACTIONS(8400), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9563), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6365), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9541), 1, + anon_sym_GT, + STATE(6364), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418420,12 +418182,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297733] = 5, - ACTIONS(8394), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9565), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9543), 1, + anon_sym_RBRACE, + STATE(6611), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418433,12 +418195,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297751] = 5, - ACTIONS(8394), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9565), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6366), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9545), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418446,12 +418208,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297769] = 5, - ACTIONS(8412), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9567), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9545), 1, + anon_sym_RBRACK, + STATE(6365), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418459,12 +418221,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297787] = 5, - ACTIONS(8412), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9567), 1, - anon_sym_SQUOTE, - STATE(6367), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9547), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418472,12 +418234,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297805] = 5, - ACTIONS(8406), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9569), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9547), 1, + anon_sym_RBRACE, + STATE(6366), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418485,12 +418247,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297823] = 5, - ACTIONS(8406), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9569), 1, - anon_sym_DQUOTE, - STATE(6368), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9549), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418498,12 +418260,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297841] = 5, - ACTIONS(8422), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9571), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9549), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6367), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -418511,179 +418273,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [297859] = 5, - ACTIONS(8422), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9571), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9551), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297877] = 4, - ACTIONS(9575), 1, - sym__quoted_content_curly, + [297877] = 5, + ACTIONS(8394), 1, + sym_escape_sequence, + ACTIONS(9551), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6368), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9573), 2, - anon_sym_RBRACE, - sym_escape_sequence, - [297893] = 5, - ACTIONS(9577), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9579), 1, + [297895] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9553), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297911] = 5, - ACTIONS(8444), 1, + [297913] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9469), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9555), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297929] = 5, - ACTIONS(8400), 1, + [297931] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9582), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9555), 1, + anon_sym_SLASH, + STATE(6325), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297947] = 5, - ACTIONS(9584), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9586), 1, + [297949] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9557), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297965] = 5, - ACTIONS(8406), 1, + [297967] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9303), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9557), 1, + anon_sym_PIPE, + STATE(6326), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [297983] = 5, - ACTIONS(8400), 1, + [297985] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9589), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9553), 1, + anon_sym_SQUOTE, + STATE(6369), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298001] = 5, - ACTIONS(8444), 1, + [298003] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9591), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9559), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298019] = 5, - ACTIONS(9593), 1, - anon_sym_RBRACE, - ACTIONS(9595), 1, + [298021] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9559), 1, + anon_sym_DQUOTE, + STATE(6370), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298037] = 5, - ACTIONS(8450), 1, + [298039] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9598), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9561), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298055] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1169), 1, - anon_sym_GT_GT, - ACTIONS(9600), 1, - anon_sym_COMMA, - STATE(6542), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [298073] = 5, - ACTIONS(9602), 1, - anon_sym_RBRACK, - ACTIONS(9604), 1, + [298057] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9563), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298091] = 5, + [298075] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9607), 1, + ACTIONS(9563), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6327), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418691,190 +418441,194 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298109] = 5, - ACTIONS(9609), 1, - anon_sym_GT, - ACTIONS(9611), 1, + [298093] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9565), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298127] = 4, - ACTIONS(9616), 1, - sym__quoted_content_heredoc_double, + [298111] = 5, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(9565), 1, + anon_sym_RBRACK, + STATE(6328), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9614), 2, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + [298129] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - [298143] = 4, - ACTIONS(9620), 1, - sym__quoted_content_double, + ACTIONS(9567), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9618), 2, - anon_sym_DQUOTE, - sym_escape_sequence, - [298159] = 5, - ACTIONS(8480), 1, + [298147] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9622), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9567), 1, + anon_sym_RBRACE, + STATE(6329), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298177] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3389), 1, + [298165] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9561), 1, anon_sym_RPAREN, - ACTIONS(9624), 1, - anon_sym_COMMA, - STATE(5738), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + STATE(6371), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [298195] = 3, - ACTIONS(5), 1, sym_comment, - ACTIONS(3), 3, + [298183] = 5, + ACTIONS(8426), 1, + sym_escape_sequence, + ACTIONS(9543), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - ACTIONS(4847), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [298209] = 5, - ACTIONS(8406), 1, + sym_comment, + [298201] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9507), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9569), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6518), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298227] = 5, - ACTIONS(8412), 1, + [298219] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9626), 1, - anon_sym_SQUOTE, - STATE(6637), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9571), 1, + anon_sym_RBRACK, + STATE(6620), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298245] = 5, - ACTIONS(8428), 1, + [298237] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9628), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9571), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298263] = 5, - ACTIONS(8480), 1, + [298255] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9630), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9573), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298281] = 5, - ACTIONS(8438), 1, + [298273] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9632), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9575), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298299] = 5, - ACTIONS(8450), 1, + [298291] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9634), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9577), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298317] = 5, - ACTIONS(8444), 1, + [298309] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9636), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9579), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298335] = 5, - ACTIONS(8400), 1, + [298327] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9638), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9581), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298353] = 5, + [298345] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9640), 1, + ACTIONS(9569), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418882,102 +418636,113 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298371] = 5, - ACTIONS(8412), 1, + [298363] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5041), 1, + anon_sym_RPAREN, + ACTIONS(9583), 1, + anon_sym_COMMA, + STATE(6450), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [298381] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9642), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9586), 1, + anon_sym_GT, + STATE(6621), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298389] = 5, - ACTIONS(8406), 1, + [298399] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9644), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9588), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6596), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298407] = 5, - ACTIONS(8422), 1, + [298417] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9646), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9590), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298425] = 5, - ACTIONS(8412), 1, + [298435] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9626), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9592), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298443] = 5, - ACTIONS(8394), 1, - sym_escape_sequence, - ACTIONS(9648), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6638), 1, - aux_sym__quoted_heredoc_single_repeat1, + [298453] = 4, + ACTIONS(9596), 1, + sym__quoted_content_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298461] = 5, + ACTIONS(9594), 2, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escape_sequence, + [298469] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3283), 1, - anon_sym_GT_GT, - ACTIONS(9650), 1, - anon_sym_COMMA, - STATE(6457), 1, - aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [298479] = 4, - ACTIONS(9655), 1, - sym__quoted_content_single, + ACTIONS(9598), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [298483] = 5, + ACTIONS(9600), 1, + anon_sym_SQUOTE, + ACTIONS(9602), 1, + sym_escape_sequence, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9653), 2, - anon_sym_SQUOTE, + [298501] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - [298495] = 5, - ACTIONS(9657), 1, + ACTIONS(9605), 1, anon_sym_PIPE, - ACTIONS(9659), 1, - sym_escape_sequence, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418985,12 +418750,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298513] = 5, - ACTIONS(8428), 1, + [298519] = 5, + ACTIONS(8438), 1, + sym_escape_sequence, + ACTIONS(9586), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [298537] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9662), 1, + ACTIONS(9607), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -418998,10 +418776,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298531] = 5, - ACTIONS(8422), 1, + [298555] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9664), 1, + ACTIONS(9609), 1, anon_sym_RPAREN, STATE(6487), 1, aux_sym__quoted_parenthesis_repeat1, @@ -419011,12 +418789,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298549] = 5, - ACTIONS(8422), 1, + [298573] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9664), 1, + ACTIONS(9609), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419024,10 +418802,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298567] = 5, - ACTIONS(8406), 1, + [298591] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9666), 1, + ACTIONS(9611), 1, anon_sym_DQUOTE, STATE(6488), 1, aux_sym__quoted_double_repeat1, @@ -419037,12 +418815,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298585] = 5, - ACTIONS(8406), 1, + [298609] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9666), 1, + ACTIONS(9611), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419050,10 +418828,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298603] = 5, - ACTIONS(8412), 1, + [298627] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9668), 1, + ACTIONS(9613), 1, anon_sym_SQUOTE, STATE(6489), 1, aux_sym__quoted_single_repeat1, @@ -419063,12 +418841,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298621] = 5, - ACTIONS(8412), 1, + [298645] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9668), 1, + ACTIONS(9613), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419076,10 +418854,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298639] = 5, + [298663] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9670), 1, + ACTIONS(9615), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(6490), 1, aux_sym__quoted_heredoc_single_repeat1, @@ -419089,12 +418867,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298657] = 5, + [298681] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9670), 1, + ACTIONS(9615), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419102,10 +418880,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298675] = 5, - ACTIONS(8400), 1, + [298699] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9672), 1, + ACTIONS(9617), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(6491), 1, aux_sym__quoted_heredoc_double_repeat1, @@ -419115,12 +418893,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298693] = 5, - ACTIONS(8400), 1, + [298717] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9672), 1, + ACTIONS(9617), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419128,10 +418906,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298711] = 5, - ACTIONS(8444), 1, + [298735] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9674), 1, + ACTIONS(9619), 1, anon_sym_RBRACE, STATE(6492), 1, aux_sym__quoted_curly_repeat1, @@ -419141,12 +418919,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298729] = 5, - ACTIONS(8444), 1, + [298753] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9674), 1, + ACTIONS(9619), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419154,10 +418932,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298747] = 5, - ACTIONS(8450), 1, + [298771] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9676), 1, + ACTIONS(9621), 1, anon_sym_RBRACK, STATE(6493), 1, aux_sym__quoted_square_repeat1, @@ -419167,12 +418945,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298765] = 5, - ACTIONS(8450), 1, + [298789] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9676), 1, + ACTIONS(9621), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419180,10 +418958,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298783] = 5, + [298807] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9678), 1, + ACTIONS(9623), 1, anon_sym_GT, STATE(6494), 1, aux_sym__quoted_angle_repeat1, @@ -419193,12 +418971,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298801] = 5, + [298825] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9678), 1, + ACTIONS(9623), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419206,10 +418984,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298819] = 5, - ACTIONS(8480), 1, + [298843] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9680), 1, + ACTIONS(9625), 1, anon_sym_PIPE, STATE(6495), 1, aux_sym__quoted_bar_repeat1, @@ -419219,12 +418997,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298837] = 5, - ACTIONS(8480), 1, + [298861] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9680), 1, + ACTIONS(9625), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419232,10 +419010,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298855] = 5, - ACTIONS(8428), 1, + [298879] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9682), 1, + ACTIONS(9627), 1, anon_sym_SLASH, STATE(6496), 1, aux_sym__quoted_slash_repeat1, @@ -419245,12 +419023,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298873] = 5, - ACTIONS(8428), 1, + [298897] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9682), 1, + ACTIONS(9627), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419258,51 +419036,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298891] = 5, - ACTIONS(9684), 1, - anon_sym_SLASH, - ACTIONS(9686), 1, + [298915] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9629), 1, + anon_sym_PIPE, + STATE(6634), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298909] = 5, - ACTIONS(8394), 1, - sym_escape_sequence, - ACTIONS(9648), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, - ACTIONS(3), 2, + [298933] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9631), 1, + anon_sym_RPAREN, + ACTIONS(9633), 1, + anon_sym_COMMA, + STATE(6450), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, + [298951] = 3, + ACTIONS(5), 1, sym_comment, - [298927] = 5, - ACTIONS(8428), 1, - sym_escape_sequence, - ACTIONS(9689), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [298945] = 5, - ACTIONS(8428), 1, + ACTIONS(4885), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [298965] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9689), 1, + ACTIONS(9635), 1, anon_sym_SLASH, - STATE(6445), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419310,12 +419086,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298963] = 5, - ACTIONS(8480), 1, + [298983] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9691), 1, + ACTIONS(9637), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419323,25 +419099,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298981] = 5, - ACTIONS(8480), 1, + [299001] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9691), 1, - anon_sym_PIPE, - STATE(6446), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9639), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [298999] = 5, - ACTIONS(8422), 1, + [299019] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9693), 1, + ACTIONS(9641), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419349,12 +419125,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299017] = 5, - ACTIONS(8406), 1, + [299037] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9695), 1, + ACTIONS(9643), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419362,12 +419138,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299035] = 5, - ACTIONS(8412), 1, + [299055] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9697), 1, + ACTIONS(9645), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419375,12 +419151,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299053] = 5, + [299073] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9699), 1, + ACTIONS(9647), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419388,12 +419164,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299071] = 5, - ACTIONS(8400), 1, + [299091] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9701), 1, + ACTIONS(9649), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419401,12 +419177,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299089] = 5, - ACTIONS(8444), 1, + [299109] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9703), 1, + ACTIONS(9651), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419414,12 +419190,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299107] = 5, - ACTIONS(8450), 1, + [299127] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9705), 1, + ACTIONS(9653), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419427,12 +419203,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299125] = 5, + [299145] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9707), 1, + ACTIONS(9655), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419440,12 +419216,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299143] = 5, - ACTIONS(8480), 1, + [299163] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9709), 1, + ACTIONS(9657), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419453,12 +419229,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299161] = 5, - ACTIONS(8428), 1, + [299181] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9711), 1, + ACTIONS(9659), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419466,285 +419242,296 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299179] = 5, - ACTIONS(8438), 1, + [299199] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9713), 1, - anon_sym_GT, - STATE(6347), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9661), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299197] = 5, - ACTIONS(8438), 1, + [299217] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9715), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9452), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6339), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299215] = 5, - ACTIONS(8400), 1, + [299235] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9717), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6643), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9663), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299233] = 5, - ACTIONS(8400), 1, + [299253] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9717), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9663), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6340), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299251] = 5, - ACTIONS(8438), 1, + [299271] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9715), 1, - anon_sym_GT, - STATE(6447), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9665), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299269] = 5, - ACTIONS(8444), 1, + [299289] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9719), 1, - anon_sym_RBRACE, - STATE(6645), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9665), 1, + anon_sym_SQUOTE, + STATE(6342), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299287] = 5, - ACTIONS(8450), 1, + [299307] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9721), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9667), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299305] = 5, - ACTIONS(8450), 1, + [299325] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9721), 1, - anon_sym_RBRACK, - STATE(6448), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9669), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299323] = 5, - ACTIONS(8444), 1, + [299343] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9723), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9671), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299341] = 5, - ACTIONS(8444), 1, + [299361] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9723), 1, - anon_sym_RBRACE, - STATE(6449), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9673), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299359] = 5, - ACTIONS(8400), 1, + [299379] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9725), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9675), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299377] = 5, - ACTIONS(8400), 1, + [299397] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9725), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6450), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9677), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299395] = 5, - ACTIONS(8394), 1, + [299415] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9727), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9588), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299413] = 5, - ACTIONS(8394), 1, + [299433] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9727), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6451), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9629), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299431] = 5, - ACTIONS(8412), 1, + [299451] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9729), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9679), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299449] = 5, - ACTIONS(8412), 1, + [299469] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9729), 1, - anon_sym_SQUOTE, - STATE(6452), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9679), 1, + anon_sym_DQUOTE, + STATE(6262), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299467] = 5, - ACTIONS(8428), 1, - sym_escape_sequence, - ACTIONS(9314), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + [299487] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299485] = 5, - ACTIONS(8406), 1, + ACTIONS(8298), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9731), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + [299501] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9681), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299503] = 5, - ACTIONS(8406), 1, + [299519] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9731), 1, - anon_sym_DQUOTE, - STATE(6453), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9683), 1, + anon_sym_SLASH, + STATE(6635), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299521] = 5, - ACTIONS(8422), 1, + [299537] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3120), 1, + anon_sym_GT_GT, + ACTIONS(9685), 1, + anon_sym_COMMA, + STATE(6516), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [299555] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9733), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9683), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299539] = 5, - ACTIONS(8422), 1, + [299573] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9733), 1, - anon_sym_RPAREN, - STATE(6454), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9688), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299557] = 5, - ACTIONS(8422), 1, + [299591] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9735), 1, + ACTIONS(9681), 1, anon_sym_RPAREN, - STATE(6339), 1, + STATE(6348), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419752,25 +419539,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299575] = 5, - ACTIONS(8422), 1, - sym_escape_sequence, - ACTIONS(9735), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + [299609] = 4, + ACTIONS(9692), 1, + sym__quoted_content_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299593] = 5, - ACTIONS(8428), 1, + ACTIONS(9690), 2, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym_escape_sequence, + [299625] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9737), 1, + ACTIONS(9694), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419778,12 +419564,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299611] = 5, - ACTIONS(8428), 1, + [299643] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9737), 1, + ACTIONS(9694), 1, anon_sym_SLASH, - STATE(6328), 1, + STATE(6484), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419791,12 +419577,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299629] = 5, - ACTIONS(8480), 1, + [299661] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9739), 1, + ACTIONS(9696), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419804,12 +419590,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299647] = 5, - ACTIONS(8480), 1, + [299679] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9739), 1, + ACTIONS(9696), 1, anon_sym_PIPE, - STATE(6329), 1, + STATE(6485), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419817,12 +419603,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299665] = 5, + [299697] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9713), 1, + ACTIONS(9698), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419830,89 +419616,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299683] = 4, - ACTIONS(9743), 1, - sym__quoted_content_heredoc_single, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(9741), 2, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - sym_escape_sequence, - [299699] = 5, - ACTIONS(8406), 1, + [299715] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9745), 1, - anon_sym_DQUOTE, - STATE(6254), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9698), 1, + anon_sym_GT, + STATE(6486), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299717] = 5, - ACTIONS(8406), 1, + [299733] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9745), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9700), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299735] = 5, - ACTIONS(8412), 1, + [299751] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9747), 1, - anon_sym_SQUOTE, - STATE(6253), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9700), 1, + anon_sym_RBRACK, + STATE(6497), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299753] = 5, - ACTIONS(8412), 1, + [299769] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9747), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9702), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299771] = 5, - ACTIONS(8394), 1, + [299787] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9749), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6198), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9702), 1, + anon_sym_RBRACE, + STATE(6503), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299789] = 5, - ACTIONS(8400), 1, + [299805] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9751), 1, + ACTIONS(9704), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6200), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419920,12 +419694,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299807] = 5, - ACTIONS(8400), 1, + [299823] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9751), 1, + ACTIONS(9704), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6504), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -419933,192 +419707,188 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299825] = 5, - ACTIONS(8444), 1, + [299841] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9753), 1, - anon_sym_RBRACE, - STATE(6199), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9706), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299843] = 5, - ACTIONS(8444), 1, + [299859] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9753), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9706), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6505), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299861] = 5, - ACTIONS(8450), 1, + [299877] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9755), 1, - anon_sym_RBRACK, - STATE(6331), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9708), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299879] = 5, - ACTIONS(8450), 1, + [299895] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9755), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9708), 1, + anon_sym_SQUOTE, + STATE(6506), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299897] = 5, - ACTIONS(8438), 1, + [299913] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9757), 1, - anon_sym_GT, - STATE(6243), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9710), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299915] = 5, - ACTIONS(8394), 1, + [299931] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9759), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9710), 1, + anon_sym_DQUOTE, + STATE(6507), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299933] = 5, - ACTIONS(8438), 1, + [299949] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9757), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9712), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299951] = 5, - ACTIONS(8450), 1, + [299967] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9761), 1, - anon_sym_RBRACK, - STATE(6646), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9712), 1, + anon_sym_RPAREN, + STATE(6508), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299969] = 5, - ACTIONS(8480), 1, + [299985] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9763), 1, - anon_sym_PIPE, - STATE(6244), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9714), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [299987] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_GT_GT, - ACTIONS(9765), 1, - anon_sym_COMMA, - STATE(6542), 1, - aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 3, + [300003] = 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [300005] = 5, - ACTIONS(8480), 1, + sym_comment, + ACTIONS(7208), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9763), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + [300017] = 5, + ACTIONS(8420), 1, + sym_escape_sequence, + ACTIONS(9716), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300023] = 5, - ACTIONS(8428), 1, + [300035] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9768), 1, - anon_sym_SLASH, - STATE(6249), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9718), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300041] = 5, - ACTIONS(8428), 1, + [300053] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9768), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9720), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300059] = 5, - ACTIONS(8394), 1, - sym_escape_sequence, - ACTIONS(9749), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + [300071] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300077] = 5, - ACTIONS(8422), 1, + ACTIONS(7388), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [300085] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9770), 1, + ACTIONS(9722), 1, anon_sym_RPAREN, STATE(6573), 1, aux_sym__quoted_parenthesis_repeat1, @@ -420128,12 +419898,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300095] = 5, - ACTIONS(8422), 1, + [300103] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9770), 1, + ACTIONS(9722), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420141,10 +419911,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300113] = 5, - ACTIONS(8406), 1, + [300121] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9772), 1, + ACTIONS(9724), 1, anon_sym_DQUOTE, STATE(6574), 1, aux_sym__quoted_double_repeat1, @@ -420154,12 +419924,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300131] = 5, - ACTIONS(8406), 1, + [300139] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9772), 1, + ACTIONS(9724), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420167,10 +419937,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300149] = 5, - ACTIONS(8412), 1, + [300157] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9774), 1, + ACTIONS(9726), 1, anon_sym_SQUOTE, STATE(6575), 1, aux_sym__quoted_single_repeat1, @@ -420180,12 +419950,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300167] = 5, - ACTIONS(8412), 1, + [300175] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9774), 1, + ACTIONS(9726), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420193,10 +419963,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300185] = 5, + [300193] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9776), 1, + ACTIONS(9728), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, STATE(6576), 1, aux_sym__quoted_heredoc_single_repeat1, @@ -420206,12 +419976,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300203] = 5, + [300211] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9776), 1, + ACTIONS(9728), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420219,10 +419989,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300221] = 5, - ACTIONS(8400), 1, + [300229] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9778), 1, + ACTIONS(9730), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, STATE(6577), 1, aux_sym__quoted_heredoc_double_repeat1, @@ -420232,12 +420002,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300239] = 5, - ACTIONS(8400), 1, + [300247] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9778), 1, + ACTIONS(9730), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420245,10 +420015,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300257] = 5, - ACTIONS(8444), 1, + [300265] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9780), 1, + ACTIONS(9732), 1, anon_sym_RBRACE, STATE(6172), 1, aux_sym__quoted_curly_repeat1, @@ -420258,12 +420028,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300275] = 5, - ACTIONS(8444), 1, + [300283] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9780), 1, + ACTIONS(9732), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6638), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420271,10 +420041,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300293] = 5, - ACTIONS(8450), 1, + [300301] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9782), 1, + ACTIONS(9734), 1, anon_sym_RBRACK, STATE(6579), 1, aux_sym__quoted_square_repeat1, @@ -420284,12 +420054,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300311] = 5, - ACTIONS(8450), 1, + [300319] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9782), 1, + ACTIONS(9734), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420297,10 +420067,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300329] = 5, + [300337] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9784), 1, + ACTIONS(9736), 1, anon_sym_GT, STATE(6580), 1, aux_sym__quoted_angle_repeat1, @@ -420310,12 +420080,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300347] = 5, + [300355] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9784), 1, + ACTIONS(9736), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420323,10 +420093,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300365] = 5, - ACTIONS(8480), 1, + [300373] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9786), 1, + ACTIONS(9738), 1, anon_sym_PIPE, STATE(6581), 1, aux_sym__quoted_bar_repeat1, @@ -420336,12 +420106,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300383] = 5, - ACTIONS(8480), 1, + [300391] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9786), 1, + ACTIONS(9738), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420349,10 +420119,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300401] = 5, - ACTIONS(8428), 1, + [300409] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9788), 1, + ACTIONS(9740), 1, anon_sym_SLASH, STATE(6582), 1, aux_sym__quoted_slash_repeat1, @@ -420362,12 +420132,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300419] = 5, - ACTIONS(8428), 1, + [300427] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9788), 1, + ACTIONS(9740), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420375,25 +420145,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300437] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_RPAREN, - ACTIONS(9624), 1, - anon_sym_COMMA, - STATE(6441), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 3, + [300445] = 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [300455] = 5, - ACTIONS(8450), 1, + sym_comment, + ACTIONS(7356), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9761), 1, + [300459] = 5, + ACTIONS(8432), 1, + sym_escape_sequence, + ACTIONS(9742), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6640), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420401,64 +420169,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300473] = 5, - ACTIONS(8438), 1, + [300477] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9790), 1, - anon_sym_GT, - STATE(6647), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9714), 1, + anon_sym_RBRACE, + STATE(6609), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300491] = 5, - ACTIONS(8438), 1, + [300495] = 5, + ACTIONS(9744), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9746), 1, sym_escape_sequence, - ACTIONS(9790), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300509] = 5, - ACTIONS(8480), 1, + [300513] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9792), 1, - anon_sym_PIPE, - STATE(6648), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9742), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300527] = 5, - ACTIONS(8480), 1, + [300531] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9792), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9749), 1, + anon_sym_GT, + STATE(6660), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300545] = 5, - ACTIONS(8422), 1, + [300549] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9794), 1, + ACTIONS(9751), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420466,12 +420234,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300563] = 5, - ACTIONS(8406), 1, + [300567] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9796), 1, + ACTIONS(9753), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420479,12 +420247,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300581] = 5, - ACTIONS(8412), 1, + [300585] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9798), 1, + ACTIONS(9755), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420492,12 +420260,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300599] = 5, + [300603] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9800), 1, + ACTIONS(9757), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420505,12 +420273,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300617] = 5, - ACTIONS(8400), 1, + [300621] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9802), 1, + ACTIONS(9759), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420518,12 +420286,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300635] = 5, - ACTIONS(8412), 1, + [300639] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9193), 1, + ACTIONS(9257), 1, anon_sym_SQUOTE, - STATE(6190), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420531,12 +420299,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300653] = 5, - ACTIONS(8450), 1, + [300657] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9804), 1, + ACTIONS(9761), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420544,12 +420312,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300671] = 5, + [300675] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9806), 1, + ACTIONS(9763), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420557,12 +420325,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300689] = 5, - ACTIONS(8480), 1, + [300693] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9808), 1, + ACTIONS(9765), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420570,12 +420338,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300707] = 5, - ACTIONS(8428), 1, + [300711] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9810), 1, + ACTIONS(9767), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420583,90 +420351,113 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300725] = 5, - ACTIONS(8428), 1, - sym_escape_sequence, - ACTIONS(9812), 1, - anon_sym_SLASH, - STATE(6649), 1, - aux_sym__quoted_slash_repeat1, + [300729] = 4, + ACTIONS(9771), 1, + sym__quoted_content_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300743] = 5, - ACTIONS(8450), 1, + ACTIONS(9769), 2, + anon_sym_GT, sym_escape_sequence, - ACTIONS(9814), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + [300745] = 5, + ACTIONS(8438), 1, + sym_escape_sequence, + ACTIONS(9749), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300761] = 5, - ACTIONS(8450), 1, + [300763] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9814), 1, - anon_sym_RBRACK, - STATE(6348), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9261), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300779] = 5, - ACTIONS(8444), 1, + [300781] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9816), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9773), 1, + anon_sym_PIPE, + STATE(6670), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300797] = 5, - ACTIONS(8444), 1, + [300799] = 4, + ACTIONS(9777), 1, + sym__quoted_content_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(9775), 2, + anon_sym_RBRACK, sym_escape_sequence, - ACTIONS(9816), 1, - anon_sym_RBRACE, - STATE(6349), 1, - aux_sym__quoted_curly_repeat1, + [300815] = 4, + ACTIONS(9781), 1, + sym__quoted_content_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300815] = 5, - ACTIONS(8428), 1, + ACTIONS(9779), 2, + anon_sym_RBRACE, sym_escape_sequence, - ACTIONS(9818), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + [300831] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_GT_GT, + ACTIONS(9783), 1, + anon_sym_COMMA, + STATE(6589), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [300849] = 5, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9786), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300833] = 5, - ACTIONS(8480), 1, + [300867] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9820), 1, + ACTIONS(9773), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420674,51 +420465,62 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300851] = 5, - ACTIONS(8438), 1, - sym_escape_sequence, - ACTIONS(9822), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + [300885] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300869] = 5, - ACTIONS(8450), 1, + ACTIONS(7380), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, sym_escape_sequence, - ACTIONS(9824), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + [300899] = 5, + ACTIONS(8448), 1, + sym_escape_sequence, + ACTIONS(9788), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300887] = 5, - ACTIONS(8444), 1, + [300917] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3577), 1, + anon_sym_RPAREN, + ACTIONS(9790), 1, + anon_sym_COMMA, + STATE(6732), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [300935] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9826), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9792), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300905] = 5, - ACTIONS(8400), 1, + [300953] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9828), 1, + ACTIONS(9794), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420726,142 +420528,142 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300923] = 5, - ACTIONS(8394), 1, + [300971] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9830), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9796), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300941] = 5, - ACTIONS(8412), 1, + [300989] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9832), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9798), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300959] = 5, - ACTIONS(8406), 1, + [301007] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9834), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9800), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300977] = 5, - ACTIONS(8422), 1, + [301025] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9836), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9802), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [300995] = 5, - ACTIONS(8394), 1, + [301043] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9759), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6358), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9804), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301013] = 5, - ACTIONS(8400), 1, + [301061] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9589), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6427), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9806), 1, + anon_sym_RPAREN, + STATE(6606), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301031] = 5, - ACTIONS(8428), 1, + [301079] = 5, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9812), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9808), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301049] = 5, - ACTIONS(8400), 1, + [301097] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9838), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9810), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301067] = 5, - ACTIONS(8400), 1, + [301115] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9838), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6350), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9812), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301085] = 5, - ACTIONS(8394), 1, + [301133] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9840), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9814), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301103] = 5, + [301151] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9840), 1, + ACTIONS(9816), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6351), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420869,51 +420671,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301121] = 5, - ACTIONS(8412), 1, + [301169] = 5, + ACTIONS(9818), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9820), 1, sym_escape_sequence, - ACTIONS(9842), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301139] = 5, - ACTIONS(8422), 1, + [301187] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9844), 1, - anon_sym_RPAREN, - STATE(6597), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9823), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301157] = 5, - ACTIONS(8412), 1, + [301205] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9846), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9825), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301175] = 5, - ACTIONS(8428), 1, + [301223] = 5, + ACTIONS(8426), 1, + sym_escape_sequence, + ACTIONS(9827), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [301241] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9848), 1, + ACTIONS(9829), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420921,12 +420736,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301193] = 5, - ACTIONS(8428), 1, + [301259] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9848), 1, + ACTIONS(9829), 1, anon_sym_SLASH, - STATE(6588), 1, + STATE(6597), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420934,12 +420749,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301211] = 5, - ACTIONS(8480), 1, + [301277] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9850), 1, + ACTIONS(9831), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6674), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420947,12 +420762,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301229] = 5, - ACTIONS(8480), 1, + [301295] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9850), 1, + ACTIONS(9831), 1, anon_sym_PIPE, - STATE(6589), 1, + STATE(6598), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420960,12 +420775,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301247] = 5, + [301313] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9852), 1, + ACTIONS(9833), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420973,12 +420788,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301265] = 5, + [301331] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9852), 1, + ACTIONS(9833), 1, anon_sym_GT, - STATE(6590), 1, + STATE(6599), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420986,12 +420801,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301283] = 5, - ACTIONS(8450), 1, + [301349] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9854), 1, + ACTIONS(9835), 1, anon_sym_RBRACK, - STATE(6435), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -420999,12 +420814,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301301] = 5, - ACTIONS(8450), 1, + [301367] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9854), 1, + ACTIONS(9835), 1, anon_sym_RBRACK, - STATE(6591), 1, + STATE(6600), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421012,90 +420827,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301319] = 5, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(9856), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [301337] = 5, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(9856), 1, - anon_sym_RBRACE, - STATE(6592), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [301355] = 5, - ACTIONS(8412), 1, + [301385] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9842), 1, - anon_sym_SQUOTE, - STATE(6352), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9837), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301373] = 5, - ACTIONS(8406), 1, + [301403] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9858), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9839), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301391] = 5, - ACTIONS(8406), 1, + [301421] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9858), 1, - anon_sym_DQUOTE, - STATE(6411), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9841), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301409] = 5, - ACTIONS(8422), 1, + [301439] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9860), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9841), 1, + anon_sym_RBRACE, + STATE(6601), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301427] = 5, - ACTIONS(8400), 1, + [301457] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9862), 1, + ACTIONS(9843), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421103,12 +420892,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301445] = 5, - ACTIONS(8400), 1, + [301475] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9862), 1, + ACTIONS(9843), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6593), 1, + STATE(6543), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421116,12 +420905,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301463] = 5, + [301493] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9864), 1, + ACTIONS(9845), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421129,12 +420918,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301481] = 5, + [301511] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9864), 1, + ACTIONS(9845), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6594), 1, + STATE(6603), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421142,12 +420931,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301499] = 5, - ACTIONS(8412), 1, + [301529] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9866), 1, + ACTIONS(9847), 1, anon_sym_SQUOTE, - STATE(6357), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421155,12 +420944,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301517] = 5, - ACTIONS(8412), 1, + [301547] = 5, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9866), 1, + ACTIONS(9847), 1, anon_sym_SQUOTE, - STATE(6595), 1, + STATE(6604), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421168,12 +420957,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301535] = 5, - ACTIONS(8406), 1, + [301565] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9868), 1, + ACTIONS(9849), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421181,12 +420970,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301553] = 5, - ACTIONS(8406), 1, + [301583] = 5, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9868), 1, + ACTIONS(9849), 1, anon_sym_DQUOTE, - STATE(6596), 1, + STATE(6605), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421194,12 +420983,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301571] = 5, - ACTIONS(8422), 1, + [301601] = 5, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9844), 1, + ACTIONS(9806), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6314), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421207,87 +420996,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301589] = 5, - ACTIONS(8438), 1, + [301619] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9870), 1, - anon_sym_GT, - STATE(6666), 1, - aux_sym__quoted_angle_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [301607] = 3, + ACTIONS(9851), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(7408), 3, - anon_sym_DQUOTE, - anon_sym_POUND_LBRACE, - sym_escape_sequence, - [301621] = 3, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(1153), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [301635] = 5, - ACTIONS(8422), 1, + [301637] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9860), 1, - anon_sym_RPAREN, - STATE(6412), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9853), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301653] = 5, - ACTIONS(8422), 1, + [301655] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9872), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9855), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [301671] = 5, - ACTIONS(8406), 1, - sym_escape_sequence, - ACTIONS(9874), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + [301673] = 4, + ACTIONS(9859), 1, + sym__quoted_content_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + ACTIONS(9857), 2, + anon_sym_PIPE, + sym_escape_sequence, [301689] = 5, - ACTIONS(8412), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9876), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9861), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421295,12 +421061,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301707] = 5, - ACTIONS(8394), 1, + ACTIONS(9863), 1, + anon_sym_RBRACE, + ACTIONS(9865), 1, sym_escape_sequence, - ACTIONS(9878), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421308,12 +421074,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301725] = 5, - ACTIONS(8422), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9880), 1, - anon_sym_RPAREN, - STATE(6733), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9861), 1, + anon_sym_PIPE, + STATE(6240), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421321,12 +421087,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301743] = 5, - ACTIONS(8422), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9880), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9868), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421334,12 +421100,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301761] = 5, - ACTIONS(8406), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9189), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9870), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421347,12 +421113,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301779] = 5, - ACTIONS(8412), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9882), 1, - anon_sym_SQUOTE, - STATE(6607), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9872), 1, + anon_sym_RPAREN, + STATE(6692), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421360,12 +421126,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301797] = 5, - ACTIONS(8400), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9884), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9872), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421373,12 +421139,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301815] = 5, - ACTIONS(8394), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9886), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6716), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9874), 1, + anon_sym_DQUOTE, + STATE(6693), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421386,12 +421152,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301833] = 5, - ACTIONS(8444), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9888), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9870), 1, + anon_sym_GT, + STATE(6242), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421399,12 +421165,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301851] = 5, - ACTIONS(8450), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9890), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9874), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421412,12 +421178,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301869] = 5, - ACTIONS(8438), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9892), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9189), 1, + anon_sym_SQUOTE, + STATE(6694), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421425,12 +421191,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301887] = 5, - ACTIONS(8480), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9894), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6695), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421438,12 +421204,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301905] = 5, - ACTIONS(8428), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9896), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421451,12 +421217,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301923] = 5, - ACTIONS(8428), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9898), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9878), 1, + anon_sym_RBRACK, + STATE(6245), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421464,12 +421230,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301941] = 5, - ACTIONS(8428), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9898), 1, - anon_sym_SLASH, - STATE(6237), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9880), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421477,11 +421243,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301959] = 5, - ACTIONS(8444), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9719), 1, + ACTIONS(9880), 1, anon_sym_RBRACE, - STATE(6432), 1, + STATE(6246), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421490,12 +421256,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301977] = 5, - ACTIONS(8480), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9900), 1, - anon_sym_PIPE, - STATE(6238), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9882), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6696), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421503,25 +421269,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [301995] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9902), 1, - anon_sym_RPAREN, - ACTIONS(9904), 1, - anon_sym_COMMA, - STATE(6247), 1, - aux_sym__stab_clause_arguments_with_parentheses_repeat1, - ACTIONS(3), 3, + ACTIONS(8420), 1, + sym_escape_sequence, + ACTIONS(9882), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, + sym_comment, [302013] = 5, - ACTIONS(8438), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9906), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9884), 1, + anon_sym_RBRACE, + STATE(6697), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421529,12 +421295,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302031] = 5, - ACTIONS(8438), 1, + ACTIONS(9886), 1, + anon_sym_RBRACK, + ACTIONS(9888), 1, sym_escape_sequence, - ACTIONS(9906), 1, - anon_sym_GT, - STATE(6251), 1, - aux_sym__quoted_angle_repeat1, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421542,12 +421308,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302049] = 5, - ACTIONS(8394), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9886), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9884), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421555,12 +421321,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302067] = 5, - ACTIONS(8400), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9908), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6715), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9891), 1, + anon_sym_RBRACK, + STATE(6731), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421568,11 +421334,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302085] = 5, - ACTIONS(8400), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9908), 1, + ACTIONS(9893), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, + STATE(6608), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421581,12 +421347,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302103] = 5, - ACTIONS(8444), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9910), 1, - anon_sym_RBRACE, - STATE(6714), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9895), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421594,12 +421360,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302121] = 5, - ACTIONS(8444), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9910), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9893), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6254), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421607,12 +421373,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302139] = 5, - ACTIONS(8450), 1, + ACTIONS(9897), 1, + anon_sym_GT, + ACTIONS(9899), 1, sym_escape_sequence, - ACTIONS(9912), 1, - anon_sym_RBRACK, - STATE(6713), 1, - aux_sym__quoted_square_repeat1, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421620,12 +421386,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302157] = 5, - ACTIONS(8450), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9912), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9902), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421633,12 +421399,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302175] = 5, - ACTIONS(8428), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9914), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9891), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421646,12 +421412,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302193] = 5, - ACTIONS(8480), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9916), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9904), 1, + anon_sym_GT, + STATE(6723), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421659,12 +421425,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302211] = 5, - ACTIONS(8438), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9918), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9902), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6256), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421672,12 +421438,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302229] = 5, - ACTIONS(8450), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9920), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9906), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421685,12 +421451,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302247] = 5, - ACTIONS(8444), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9922), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9906), 1, + anon_sym_SQUOTE, + STATE(6260), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421698,12 +421464,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302265] = 5, - ACTIONS(8400), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9924), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9904), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421711,12 +421477,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302283] = 5, - ACTIONS(8394), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9926), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9908), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421724,12 +421490,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302301] = 5, - ACTIONS(8412), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9928), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9910), 1, + anon_sym_PIPE, + STATE(6724), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421737,11 +421503,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302319] = 5, - ACTIONS(8406), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9930), 1, + ACTIONS(9912), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6372), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421750,12 +421516,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302337] = 5, - ACTIONS(8422), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9932), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9912), 1, + anon_sym_DQUOTE, + STATE(6261), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421763,12 +421529,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302355] = 5, - ACTIONS(8438), 1, + ACTIONS(9914), 1, + anon_sym_PIPE, + ACTIONS(9916), 1, sym_escape_sequence, - ACTIONS(9934), 1, - anon_sym_GT, - STATE(6712), 1, - aux_sym__quoted_angle_repeat1, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421776,12 +421542,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302373] = 5, - ACTIONS(8438), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9934), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9910), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421789,12 +421555,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302391] = 5, - ACTIONS(8480), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9936), 1, - anon_sym_PIPE, - STATE(6711), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9919), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421802,12 +421568,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302409] = 5, - ACTIONS(8480), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9936), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9921), 1, + anon_sym_SLASH, + STATE(6725), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421815,11 +421581,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302427] = 5, - ACTIONS(8428), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9938), 1, + ACTIONS(9921), 1, anon_sym_SLASH, - STATE(6708), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421828,12 +421594,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302445] = 5, - ACTIONS(8412), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9882), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9923), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421841,12 +421607,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302463] = 5, - ACTIONS(8450), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9940), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9923), 1, + anon_sym_RPAREN, + STATE(6264), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421854,12 +421620,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302481] = 5, - ACTIONS(8450), 1, + ACTIONS(9925), 1, + anon_sym_SLASH, + ACTIONS(9927), 1, sym_escape_sequence, - ACTIONS(9940), 1, - anon_sym_RBRACK, - STATE(6255), 1, - aux_sym__quoted_square_repeat1, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421867,11 +421633,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302499] = 5, - ACTIONS(8428), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9942), 1, + ACTIONS(9930), 1, anon_sym_SLASH, - STATE(6481), 1, + STATE(6681), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -421880,12 +421646,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302517] = 5, - ACTIONS(8428), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9942), 1, - anon_sym_SLASH, - STATE(6664), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9932), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421893,12 +421659,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302535] = 5, - ACTIONS(8480), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9944), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9934), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421906,12 +421672,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302553] = 5, - ACTIONS(8480), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9944), 1, - anon_sym_PIPE, - STATE(6665), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9936), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421919,12 +421685,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302571] = 5, - ACTIONS(8438), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9870), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9938), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421932,12 +421698,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302589] = 5, - ACTIONS(8428), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9938), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9940), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421945,12 +421711,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302607] = 5, - ACTIONS(8450), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9946), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9942), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421958,12 +421724,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302625] = 5, - ACTIONS(8450), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9946), 1, - anon_sym_RBRACK, - STATE(6667), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9944), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421971,12 +421737,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302643] = 5, - ACTIONS(8444), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9948), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9946), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421984,12 +421750,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302661] = 5, - ACTIONS(8444), 1, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9948), 1, - anon_sym_RBRACE, - STATE(6668), 1, - aux_sym__quoted_curly_repeat1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -421997,12 +421763,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302679] = 5, - ACTIONS(8400), 1, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9950), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422010,12 +421776,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302697] = 5, - ACTIONS(8400), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9950), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6669), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9952), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422023,12 +421789,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302715] = 5, - ACTIONS(8394), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9952), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9954), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422038,9 +421804,9 @@ static const uint16_t ts_small_parse_table[] = { [302733] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9952), 1, + ACTIONS(9956), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6670), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422049,12 +421815,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302751] = 5, - ACTIONS(8412), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9954), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9958), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422062,12 +421828,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302769] = 5, - ACTIONS(8412), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9954), 1, - anon_sym_SQUOTE, - STATE(6671), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9960), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422075,12 +421841,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302787] = 5, - ACTIONS(8406), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9956), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9962), 1, + anon_sym_RPAREN, + STATE(6753), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422088,12 +421854,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302805] = 5, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(9958), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(9962), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422101,12 +421867,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302823] = 5, - ACTIONS(8444), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9958), 1, - anon_sym_RBRACE, - STATE(6271), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(9964), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422114,12 +421880,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302841] = 5, - ACTIONS(8400), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9960), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9964), 1, + anon_sym_SLASH, + STATE(6682), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422127,12 +421893,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302859] = 5, - ACTIONS(8406), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9956), 1, - anon_sym_DQUOTE, - STATE(6672), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9966), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422140,12 +421906,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302877] = 5, - ACTIONS(8422), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9962), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9966), 1, + anon_sym_PIPE, + STATE(6683), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422153,12 +421919,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302895] = 5, - ACTIONS(8422), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9962), 1, - anon_sym_RPAREN, - STATE(6673), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9968), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422166,12 +421932,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302913] = 5, - ACTIONS(8400), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9960), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6313), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9968), 1, + anon_sym_GT, + STATE(6684), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422179,12 +421945,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302931] = 5, - ACTIONS(8394), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9964), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9970), 1, + anon_sym_DQUOTE, + STATE(6752), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422192,12 +421958,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302949] = 5, - ACTIONS(8394), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9964), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6314), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(9851), 1, + anon_sym_RBRACK, + STATE(6685), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422205,12 +421971,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302967] = 5, - ACTIONS(8428), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9966), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(9972), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422218,12 +421984,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [302985] = 5, - ACTIONS(8412), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(9968), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9972), 1, + anon_sym_RBRACE, + STATE(6686), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422231,12 +421997,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303003] = 5, - ACTIONS(8412), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9259), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9974), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422244,12 +422010,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303021] = 5, - ACTIONS(8480), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9970), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9974), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6687), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422257,12 +422023,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303039] = 5, - ACTIONS(8438), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9972), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9976), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422270,12 +422036,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303057] = 5, - ACTIONS(8450), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9974), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(9976), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6688), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422283,25 +422049,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303075] = 5, - ACTIONS(8444), 1, - sym_escape_sequence, - ACTIONS(9976), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, - ACTIONS(3), 2, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1169), 1, + anon_sym_GT_GT, + ACTIONS(9978), 1, + anon_sym_COMMA, + STATE(6589), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, [303093] = 5, - ACTIONS(8400), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9978), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(9980), 1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422309,12 +422075,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303111] = 5, - ACTIONS(8394), 1, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9980), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + anon_sym_SQUOTE, + STATE(6689), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422322,12 +422088,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303129] = 5, - ACTIONS(8412), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9968), 1, - anon_sym_SQUOTE, - STATE(6326), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(9982), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422335,11 +422101,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303147] = 5, - ACTIONS(8406), 1, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(9982), 1, anon_sym_DQUOTE, - STATE(6355), 1, + STATE(6690), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422348,12 +422114,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303165] = 5, - ACTIONS(8406), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(9982), 1, - anon_sym_DQUOTE, - STATE(6330), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9984), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422361,11 +422127,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303183] = 5, - ACTIONS(8422), 1, + ACTIONS(8404), 1, sym_escape_sequence, ACTIONS(9984), 1, anon_sym_RPAREN, - STATE(6346), 1, + STATE(6691), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422374,12 +422140,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303201] = 5, - ACTIONS(8422), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(9984), 1, - anon_sym_RPAREN, - STATE(6333), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9970), 1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422387,12 +422153,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303219] = 5, - ACTIONS(8422), 1, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(9986), 1, - anon_sym_RPAREN, - STATE(6731), 1, - aux_sym__quoted_parenthesis_repeat1, + anon_sym_SQUOTE, + STATE(6751), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422400,12 +422166,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303237] = 5, - ACTIONS(8422), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(9986), 1, - anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9988), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422413,12 +422179,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303255] = 5, - ACTIONS(8406), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9988), 1, - anon_sym_DQUOTE, - STATE(6746), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9990), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422426,12 +422192,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303273] = 5, - ACTIONS(8406), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(9988), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(9992), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422439,11 +422205,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303291] = 5, - ACTIONS(8412), 1, + ACTIONS(8410), 1, sym_escape_sequence, - ACTIONS(9990), 1, + ACTIONS(9986), 1, anon_sym_SQUOTE, - STATE(6745), 1, + STATE(6457), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422452,24 +422218,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303309] = 5, - ACTIONS(8412), 1, - sym_escape_sequence, - ACTIONS(9990), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - [303327] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9992), 1, + ACTIONS(9994), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6744), 1, + STATE(6750), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422477,12 +422230,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303345] = 5, + [303327] = 5, ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(9992), 1, + ACTIONS(9994), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, + STATE(6570), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422490,12 +422243,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303363] = 5, - ACTIONS(8400), 1, + [303345] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(9994), 1, + ACTIONS(9996), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6743), 1, + STATE(6746), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422503,51 +422256,63 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303381] = 5, - ACTIONS(8422), 1, - sym_escape_sequence, - ACTIONS(9996), 1, + [303363] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9998), 1, anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, - ACTIONS(3), 2, + ACTIONS(2914), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - [303399] = 5, - ACTIONS(8400), 1, + [303379] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(9994), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(10000), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303417] = 5, - ACTIONS(8422), 1, - sym_escape_sequence, - ACTIONS(9998), 1, + [303397] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3583), 1, anon_sym_RPAREN, - STATE(6346), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(9790), 1, + anon_sym_COMMA, + STATE(5630), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [303415] = 5, + ACTIONS(8420), 1, + sym_escape_sequence, + ACTIONS(9996), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303435] = 5, - ACTIONS(8444), 1, + [303433] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(10000), 1, + ACTIONS(10002), 1, anon_sym_RBRACE, - STATE(6742), 1, + STATE(6745), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422555,38 +422320,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303453] = 5, - ACTIONS(8406), 1, + [303451] = 5, + ACTIONS(8426), 1, sym_escape_sequence, ACTIONS(10002), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303471] = 5, - ACTIONS(8444), 1, + [303469] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(10000), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(10004), 1, + anon_sym_RBRACK, + STATE(6744), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303489] = 5, - ACTIONS(8450), 1, + [303487] = 5, + ACTIONS(8432), 1, sym_escape_sequence, ACTIONS(10004), 1, anon_sym_RBRACK, - STATE(6741), 1, + STATE(6656), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422594,38 +422359,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303507] = 5, - ACTIONS(8428), 1, + [303505] = 5, + ACTIONS(8438), 1, sym_escape_sequence, ACTIONS(10006), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + anon_sym_GT, + STATE(6743), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303525] = 5, - ACTIONS(8480), 1, + [303523] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(10008), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(9337), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303543] = 5, + [303541] = 5, ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(10010), 1, + ACTIONS(10006), 1, anon_sym_GT, - STATE(6437), 1, + STATE(6662), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422633,90 +422398,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303561] = 5, - ACTIONS(8450), 1, + [303559] = 5, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(10012), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(10008), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303579] = 5, - ACTIONS(8444), 1, + [303577] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(10014), 1, - anon_sym_RBRACE, - STATE(6432), 1, - aux_sym__quoted_curly_repeat1, + ACTIONS(10010), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303597] = 5, - ACTIONS(8400), 1, + [303595] = 5, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(10016), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(6428), 1, - aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(10012), 1, + anon_sym_GT, + STATE(6662), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303615] = 5, - ACTIONS(8394), 1, + [303613] = 5, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(10018), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(6425), 1, - aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(10014), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303633] = 5, - ACTIONS(8412), 1, + [303631] = 5, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(10020), 1, - anon_sym_SQUOTE, - STATE(6357), 1, - aux_sym__quoted_single_repeat1, + ACTIONS(10016), 1, + anon_sym_RBRACE, + STATE(6638), 1, + aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303651] = 5, - ACTIONS(8406), 1, + [303649] = 5, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(10022), 1, - anon_sym_DQUOTE, - STATE(6355), 1, - aux_sym__quoted_double_repeat1, + ACTIONS(10018), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(6608), 1, + aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303669] = 5, - ACTIONS(8480), 1, + [303667] = 5, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(9900), 1, + ACTIONS(10020), 1, anon_sym_PIPE, - STATE(6459), 1, + STATE(6742), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -422724,25 +422489,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303687] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10024), 1, - anon_sym_RPAREN, - ACTIONS(2914), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3), 3, + [303685] = 5, + ACTIONS(8484), 1, + sym_escape_sequence, + ACTIONS(10020), 1, + anon_sym_PIPE, + STATE(6674), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, + sym_comment, [303703] = 5, - ACTIONS(8450), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(10004), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__quoted_square_repeat1, + ACTIONS(10022), 1, + anon_sym_SLASH, + STATE(6741), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422750,12 +422516,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303721] = 5, - ACTIONS(8428), 1, + ACTIONS(8394), 1, sym_escape_sequence, - ACTIONS(10026), 1, - anon_sym_SLASH, - STATE(6481), 1, - aux_sym__quoted_slash_repeat1, + ACTIONS(10024), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(6570), 1, + aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422763,12 +422529,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303739] = 5, - ACTIONS(8428), 1, + ACTIONS(8410), 1, sym_escape_sequence, ACTIONS(10026), 1, - anon_sym_SLASH, - STATE(6738), 1, - aux_sym__quoted_slash_repeat1, + anon_sym_SQUOTE, + STATE(6457), 1, + aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422776,12 +422542,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303757] = 5, - ACTIONS(8480), 1, + ACTIONS(8448), 1, sym_escape_sequence, ACTIONS(10028), 1, - anon_sym_PIPE, - STATE(6459), 1, - aux_sym__quoted_bar_repeat1, + anon_sym_DQUOTE, + STATE(6372), 1, + aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422789,12 +422555,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303775] = 5, - ACTIONS(8480), 1, + ACTIONS(8404), 1, sym_escape_sequence, - ACTIONS(10028), 1, - anon_sym_PIPE, - STATE(6739), 1, - aux_sym__quoted_bar_repeat1, + ACTIONS(10030), 1, + anon_sym_RPAREN, + STATE(6314), 1, + aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422802,12 +422568,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303793] = 5, - ACTIONS(8438), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(10030), 1, - anon_sym_GT, - STATE(6437), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(9878), 1, + anon_sym_RBRACK, + STATE(6656), 1, + aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422815,155 +422581,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [303811] = 5, - ACTIONS(8438), 1, + ACTIONS(8454), 1, sym_escape_sequence, - ACTIONS(10030), 1, - anon_sym_GT, - STATE(6740), 1, - aux_sym__quoted_angle_repeat1, + ACTIONS(10022), 1, + anon_sym_SLASH, + STATE(6681), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [303829] = 4, + [303829] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - STATE(4097), 1, - sym_do_block, + ACTIONS(10032), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303844] = 4, + [303842] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(3196), 1, + STATE(3695), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303859] = 4, + [303857] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(421), 1, anon_sym_do, - STATE(3197), 1, + STATE(3159), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303874] = 4, + [303872] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - STATE(2844), 1, - sym_do_block, + ACTIONS(4041), 1, + anon_sym_LPAREN, + STATE(2662), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303889] = 3, + [303887] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10032), 2, + ACTIONS(10034), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303902] = 4, + [303900] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - STATE(4317), 1, - sym_do_block, + ACTIONS(10036), 1, + anon_sym_LPAREN, + STATE(2695), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303917] = 4, + [303915] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(421), 1, anon_sym_do, - STATE(3199), 1, + STATE(2864), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303932] = 4, + [303930] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - STATE(3201), 1, - sym_do_block, + ACTIONS(10038), 1, + aux_sym_sigil_token1, + ACTIONS(10040), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303947] = 4, + [303945] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LPAREN, - STATE(1126), 1, - sym__call_arguments_with_parentheses, + ACTIONS(10042), 1, + aux_sym_sigil_token1, + ACTIONS(10044), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303962] = 4, + [303960] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10034), 1, - anon_sym_LPAREN, - STATE(3847), 1, - sym__call_arguments_with_parentheses, + ACTIONS(10046), 1, + aux_sym_sigil_token1, + ACTIONS(10048), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303977] = 4, + [303975] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(233), 1, anon_sym_do, - STATE(3202), 1, + STATE(1678), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [303992] = 4, + [303990] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(421), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(2843), 1, + STATE(4215), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304007] = 3, + [304005] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10036), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(2984), 1, + anon_sym_LPAREN, + STATE(1121), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422971,10 +422737,10 @@ static const uint16_t ts_small_parse_table[] = { [304020] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - STATE(1712), 1, - sym_do_block, + ACTIONS(10050), 1, + aux_sym_sigil_token1, + ACTIONS(10052), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422982,10 +422748,10 @@ static const uint16_t ts_small_parse_table[] = { [304035] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - STATE(2026), 1, - sym_do_block, + ACTIONS(10054), 1, + aux_sym_sigil_token1, + ACTIONS(10056), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -422993,10 +422759,10 @@ static const uint16_t ts_small_parse_table[] = { [304050] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - STATE(2028), 1, - sym_do_block, + ACTIONS(10058), 1, + aux_sym_sigil_token1, + ACTIONS(10060), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423004,9 +422770,9 @@ static const uint16_t ts_small_parse_table[] = { [304065] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, + ACTIONS(421), 1, anon_sym_do, - STATE(1672), 1, + STATE(3055), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423015,119 +422781,119 @@ static const uint16_t ts_small_parse_table[] = { [304080] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - STATE(2031), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(10062), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - aux_sym__terminator_token1, + ACTIONS(7627), 2, + anon_sym_SEMI, + anon_sym_end, [304095] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_do, - STATE(2034), 1, - sym_do_block, + ACTIONS(10064), 1, + aux_sym_sigil_token1, + ACTIONS(10066), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304110] = 3, + [304110] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10038), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(10068), 1, + anon_sym_LPAREN, + STATE(3877), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304123] = 4, + [304125] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, + ACTIONS(421), 1, anon_sym_do, - STATE(2035), 1, + STATE(3050), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304138] = 4, + [304140] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, + ACTIONS(522), 1, anon_sym_do, - STATE(1676), 1, + STATE(4052), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304153] = 4, + [304155] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - STATE(1715), 1, - sym_do_block, + ACTIONS(10070), 1, + aux_sym_sigil_token1, + ACTIONS(10072), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304168] = 4, + [304170] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(421), 1, anon_sym_do, - STATE(1566), 1, + STATE(3037), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304183] = 4, + [304185] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(421), 1, anon_sym_do, - STATE(1717), 1, + STATE(2891), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304198] = 4, + [304200] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - STATE(1719), 1, - sym_do_block, + ACTIONS(10074), 1, + aux_sym_sigil_token1, + ACTIONS(10076), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304213] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10040), 1, - aux_sym_sigil_token1, - ACTIONS(10042), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, + [304215] = 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, + sym_comment, + ACTIONS(9863), 2, + anon_sym_RBRACE, + sym_escape_sequence, [304228] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - STATE(4432), 1, - sym_do_block, + ACTIONS(10078), 1, + aux_sym_sigil_token1, + ACTIONS(10080), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423135,10 +422901,10 @@ static const uint16_t ts_small_parse_table[] = { [304243] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10044), 1, - aux_sym_sigil_token1, - ACTIONS(10046), 1, - aux_sym_sigil_token2, + ACTIONS(271), 1, + anon_sym_do, + STATE(2133), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423146,10 +422912,10 @@ static const uint16_t ts_small_parse_table[] = { [304258] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10048), 1, - aux_sym_sigil_token1, - ACTIONS(10050), 1, - aux_sym_sigil_token2, + ACTIONS(271), 1, + anon_sym_do, + STATE(2132), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423157,9 +422923,9 @@ static const uint16_t ts_small_parse_table[] = { [304273] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(4431), 1, + STATE(1713), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423168,9 +422934,9 @@ static const uint16_t ts_small_parse_table[] = { [304288] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(4430), 1, + STATE(2130), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423179,10 +422945,10 @@ static const uint16_t ts_small_parse_table[] = { [304303] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10052), 1, - aux_sym_sigil_token1, - ACTIONS(10054), 1, - aux_sym_sigil_token2, + ACTIONS(271), 1, + anon_sym_do, + STATE(2129), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423190,10 +422956,10 @@ static const uint16_t ts_small_parse_table[] = { [304318] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10056), 1, - aux_sym_sigil_token1, - ACTIONS(10058), 1, - aux_sym_sigil_token2, + ACTIONS(421), 1, + anon_sym_do, + STATE(3021), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423201,10 +422967,10 @@ static const uint16_t ts_small_parse_table[] = { [304333] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10060), 1, - aux_sym_sigil_token1, - ACTIONS(10062), 1, - aux_sym_sigil_token2, + ACTIONS(271), 1, + anon_sym_do, + STATE(2127), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423212,10 +422978,10 @@ static const uint16_t ts_small_parse_table[] = { [304348] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10064), 1, - aux_sym_sigil_token1, - ACTIONS(10066), 1, - aux_sym_sigil_token2, + ACTIONS(271), 1, + anon_sym_do, + STATE(1714), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423223,9 +422989,9 @@ static const uint16_t ts_small_parse_table[] = { [304363] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(1720), 1, + STATE(4299), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423234,9 +423000,9 @@ static const uint16_t ts_small_parse_table[] = { [304378] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(4234), 1, + STATE(4211), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423245,9 +423011,9 @@ static const uint16_t ts_small_parse_table[] = { [304393] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(271), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(2094), 1, + STATE(3694), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423256,9 +423022,9 @@ static const uint16_t ts_small_parse_table[] = { [304408] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(1565), 1, + STATE(4302), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423267,10 +423033,10 @@ static const uint16_t ts_small_parse_table[] = { [304423] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10068), 1, - aux_sym_sigil_token1, - ACTIONS(10070), 1, - aux_sym_sigil_token2, + ACTIONS(588), 1, + anon_sym_do, + STATE(4303), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423278,9 +423044,9 @@ static const uint16_t ts_small_parse_table[] = { [304438] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, + ACTIONS(421), 1, anon_sym_do, - STATE(4467), 1, + STATE(3022), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423289,9 +423055,9 @@ static const uint16_t ts_small_parse_table[] = { [304453] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, + ACTIONS(271), 1, anon_sym_do, - STATE(4308), 1, + STATE(2094), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423300,448 +423066,448 @@ static const uint16_t ts_small_parse_table[] = { [304468] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10072), 1, + ACTIONS(10082), 1, aux_sym_sigil_token1, - ACTIONS(10074), 1, + ACTIONS(10084), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304483] = 4, + [304483] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - STATE(4429), 1, - sym_do_block, + ACTIONS(2914), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304498] = 4, + [304496] = 3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(9925), 2, + anon_sym_SLASH, + sym_escape_sequence, + [304509] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_do, - STATE(4422), 1, - sym_do_block, + ACTIONS(10086), 1, + aux_sym_sigil_token1, + ACTIONS(10088), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304513] = 4, + [304524] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10076), 1, - aux_sym_sigil_token1, - ACTIONS(10078), 1, - aux_sym_sigil_token2, + ACTIONS(522), 1, + anon_sym_do, + STATE(3794), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304528] = 3, + [304539] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2914), 2, + ACTIONS(10090), 1, anon_sym_when, + ACTIONS(10092), 1, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304541] = 4, + [304554] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10080), 1, + ACTIONS(10094), 1, aux_sym_sigil_token1, - ACTIONS(10082), 1, + ACTIONS(10096), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304556] = 4, + [304569] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10084), 1, - aux_sym_sigil_token1, - ACTIONS(10086), 1, - aux_sym_sigil_token2, + ACTIONS(3714), 1, + anon_sym_LPAREN, + STATE(2081), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304571] = 4, - ACTIONS(5), 1, + [304584] = 3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, sym_comment, - ACTIONS(421), 1, - anon_sym_do, - STATE(3329), 1, - sym_do_block, - ACTIONS(3), 3, + ACTIONS(9914), 2, + anon_sym_PIPE, + sym_escape_sequence, + [304597] = 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(5), 2, aux_sym__terminator_token1, - [304586] = 4, + sym_comment, + ACTIONS(9488), 2, + anon_sym_DQUOTE, + sym_escape_sequence, + [304610] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10088), 1, + ACTIONS(10098), 1, anon_sym_LPAREN, - STATE(1691), 1, + STATE(1729), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304601] = 4, + [304625] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10090), 1, + ACTIONS(10100), 1, aux_sym_sigil_token1, - ACTIONS(10092), 1, + ACTIONS(10102), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304616] = 4, + [304640] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3028), 1, anon_sym_LPAREN, - STATE(2130), 1, + STATE(1342), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304631] = 3, + [304655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10104), 1, + aux_sym_sigil_token1, + ACTIONS(10106), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [304670] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9293), 2, + ACTIONS(10108), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304644] = 3, + [304683] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9452), 2, - anon_sym_RPAREN, + ACTIONS(9897), 2, + anon_sym_GT, sym_escape_sequence, - [304657] = 4, + [304696] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(10110), 1, aux_sym_sigil_token1, - ACTIONS(10096), 1, + ACTIONS(10112), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304672] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LPAREN, - STATE(1196), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [304687] = 3, + [304711] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9473), 2, - anon_sym_DQUOTE, + ACTIONS(9387), 2, + anon_sym_RPAREN, sym_escape_sequence, - [304700] = 4, + [304724] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10098), 1, - anon_sym_when, - ACTIONS(10100), 1, - anon_sym_DASH_GT, + ACTIONS(233), 1, + anon_sym_do, + STATE(1472), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304715] = 4, + [304739] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10102), 1, - aux_sym_sigil_token1, - ACTIONS(10104), 1, - aux_sym_sigil_token2, + ACTIONS(233), 1, + anon_sym_do, + STATE(1636), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304730] = 3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(9480), 2, - anon_sym_SQUOTE, - sym_escape_sequence, - [304743] = 4, + [304754] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(522), 1, anon_sym_do, - STATE(4362), 1, + STATE(4167), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304758] = 4, + [304769] = 3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(9600), 2, + anon_sym_SQUOTE, + sym_escape_sequence, + [304782] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - STATE(4148), 1, - sym_do_block, + ACTIONS(10092), 1, + anon_sym_DASH_GT, + ACTIONS(10114), 1, + anon_sym_when, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304773] = 3, + [304797] = 3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(9577), 2, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9886), 2, + anon_sym_RBRACK, sym_escape_sequence, - [304786] = 4, + [304810] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10106), 1, - aux_sym_sigil_token1, - ACTIONS(10108), 1, - aux_sym_sigil_token2, + ACTIONS(10116), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304801] = 3, + [304823] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3872), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(2895), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304814] = 4, + [304838] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(588), 1, anon_sym_do, - STATE(3503), 1, + STATE(4297), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304829] = 3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(9584), 2, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - sym_escape_sequence, - [304842] = 4, + [304853] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10110), 1, + ACTIONS(10118), 1, anon_sym_LPAREN, - STATE(2362), 1, + STATE(1430), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304857] = 3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(9593), 2, - anon_sym_RBRACE, - sym_escape_sequence, - [304870] = 4, + [304868] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10100), 1, - anon_sym_DASH_GT, - ACTIONS(10112), 1, - anon_sym_when, + ACTIONS(233), 1, + anon_sym_do, + STATE(1635), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304885] = 3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, + [304883] = 4, + ACTIONS(5), 1, sym_comment, - ACTIONS(9602), 2, - anon_sym_RBRACK, - sym_escape_sequence, - [304898] = 3, - ACTIONS(3), 2, + ACTIONS(233), 1, + anon_sym_do, + STATE(1634), 1, + sym_do_block, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - ACTIONS(9609), 2, - anon_sym_GT, - sym_escape_sequence, - [304911] = 4, + [304898] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4155), 1, - anon_sym_LPAREN, - STATE(2892), 1, - sym__call_arguments_with_parentheses, + ACTIONS(233), 1, + anon_sym_do, + STATE(1473), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304926] = 4, + [304913] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10114), 1, - anon_sym_LPAREN, - STATE(3508), 1, - sym__call_arguments_with_parentheses, + ACTIONS(233), 1, + anon_sym_do, + STATE(1632), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304941] = 4, + [304928] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(233), 1, anon_sym_do, - STATE(4400), 1, + STATE(1631), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304956] = 4, + [304943] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(636), 1, anon_sym_do, - STATE(4401), 1, + STATE(4432), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, + [304958] = 3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(9744), 2, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + sym_escape_sequence, [304971] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10116), 1, + ACTIONS(10120), 1, aux_sym_sigil_token1, - ACTIONS(10118), 1, + ACTIONS(10122), 1, aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [304986] = 4, + [304986] = 3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(9818), 2, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escape_sequence, + [304999] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(636), 1, anon_sym_do, - STATE(4404), 1, + STATE(4477), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305001] = 4, + [305014] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10120), 1, + ACTIONS(10124), 1, anon_sym_LPAREN, - STATE(4283), 1, + STATE(3526), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305016] = 4, + [305029] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10122), 1, - aux_sym_sigil_token1, - ACTIONS(10124), 1, - aux_sym_sigil_token2, + ACTIONS(636), 1, + anon_sym_do, + STATE(4475), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305031] = 4, + [305044] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - STATE(1785), 1, - sym_do_block, + ACTIONS(10126), 1, + anon_sym_LPAREN, + STATE(4100), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305046] = 3, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - ACTIONS(9657), 2, - anon_sym_PIPE, - sym_escape_sequence, [305059] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(636), 1, anon_sym_do, - STATE(3618), 1, + STATE(4323), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423750,9 +423516,9 @@ static const uint16_t ts_small_parse_table[] = { [305074] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(636), 1, anon_sym_do, - STATE(4403), 1, + STATE(4474), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423761,10 +423527,10 @@ static const uint16_t ts_small_parse_table[] = { [305089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4381), 1, - anon_sym_LPAREN, - STATE(3376), 1, - sym__call_arguments_with_parentheses, + ACTIONS(636), 1, + anon_sym_do, + STATE(4451), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423772,10 +423538,10 @@ static const uint16_t ts_small_parse_table[] = { [305104] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, - anon_sym_do, - STATE(4238), 1, - sym_do_block, + ACTIONS(10128), 1, + aux_sym_sigil_token1, + ACTIONS(10130), 1, + aux_sym_sigil_token2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423783,9 +423549,9 @@ static const uint16_t ts_small_parse_table[] = { [305119] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(636), 1, anon_sym_do, - STATE(4241), 1, + STATE(4448), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423794,105 +423560,105 @@ static const uint16_t ts_small_parse_table[] = { [305134] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10126), 1, - anon_sym_LPAREN, - STATE(1406), 1, - sym__call_arguments_with_parentheses, + ACTIONS(636), 1, + anon_sym_do, + STATE(4335), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305149] = 4, + [305149] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10128), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, + ACTIONS(9448), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(7379), 2, - anon_sym_SEMI, - anon_sym_end, - [305164] = 4, + aux_sym__terminator_token1, + [305162] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - STATE(2665), 1, - sym__call_arguments_with_parentheses, + ACTIONS(3718), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305179] = 4, + [305175] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(522), 1, anon_sym_do, - STATE(4406), 1, + STATE(4072), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305194] = 4, + [305190] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(522), 1, - anon_sym_do, - STATE(3501), 1, - sym_do_block, + ACTIONS(4330), 1, + anon_sym_LPAREN, + STATE(3201), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305209] = 4, + [305205] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(522), 1, anon_sym_do, - STATE(4242), 1, + STATE(3826), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305224] = 4, + [305220] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(588), 1, + ACTIONS(522), 1, anon_sym_do, - STATE(3612), 1, + STATE(4062), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305239] = 3, + [305235] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10130), 2, - anon_sym_when, - anon_sym_DASH_GT, + ACTIONS(522), 1, + anon_sym_do, + STATE(4090), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [305252] = 3, - ACTIONS(3), 2, + [305250] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(522), 1, + anon_sym_do, + STATE(4093), 1, + sym_do_block, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, aux_sym__terminator_token1, - sym_comment, - ACTIONS(9684), 2, - anon_sym_SLASH, - sym_escape_sequence, [305265] = 3, ACTIONS(5), 1, sym_comment, ACTIONS(10132), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423955,7 +423721,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10146), 1, - anon_sym_DASH_GT, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423963,8 +423729,8 @@ static const uint16_t ts_small_parse_table[] = { [305361] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10148), 1, - anon_sym_RPAREN, + ACTIONS(2623), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423972,8 +423738,8 @@ static const uint16_t ts_small_parse_table[] = { [305373] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10150), 1, - anon_sym_RPAREN, + ACTIONS(2655), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423981,8 +423747,8 @@ static const uint16_t ts_small_parse_table[] = { [305385] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10152), 1, - anon_sym_RBRACE, + ACTIONS(2651), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -423990,7 +423756,7 @@ static const uint16_t ts_small_parse_table[] = { [305397] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10148), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -423999,8 +423765,8 @@ static const uint16_t ts_small_parse_table[] = { [305409] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10156), 1, - anon_sym_RBRACE, + ACTIONS(10150), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424008,8 +423774,8 @@ static const uint16_t ts_small_parse_table[] = { [305421] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10158), 1, - anon_sym_GT_GT, + ACTIONS(10152), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424017,8 +423783,8 @@ static const uint16_t ts_small_parse_table[] = { [305433] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_RBRACE, + ACTIONS(2627), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424026,8 +423792,8 @@ static const uint16_t ts_small_parse_table[] = { [305445] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10162), 1, - anon_sym_GT_GT, + ACTIONS(10154), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424035,8 +423801,8 @@ static const uint16_t ts_small_parse_table[] = { [305457] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10164), 1, - anon_sym_RBRACK, + ACTIONS(2631), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424044,8 +423810,8 @@ static const uint16_t ts_small_parse_table[] = { [305469] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10166), 1, - anon_sym_RBRACE, + ACTIONS(2635), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424053,8 +423819,8 @@ static const uint16_t ts_small_parse_table[] = { [305481] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10168), 1, - anon_sym_RPAREN, + ACTIONS(10156), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424062,8 +423828,8 @@ static const uint16_t ts_small_parse_table[] = { [305493] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_RBRACK, + ACTIONS(10158), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424071,8 +423837,8 @@ static const uint16_t ts_small_parse_table[] = { [305505] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10172), 1, - anon_sym_RBRACK, + ACTIONS(10160), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424080,8 +423846,8 @@ static const uint16_t ts_small_parse_table[] = { [305517] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym_RPAREN, + ACTIONS(10162), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424089,8 +423855,8 @@ static const uint16_t ts_small_parse_table[] = { [305529] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10176), 1, - anon_sym_RPAREN, + ACTIONS(10164), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424098,8 +423864,8 @@ static const uint16_t ts_small_parse_table[] = { [305541] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10178), 1, - anon_sym_RBRACE, + ACTIONS(10166), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424107,8 +423873,8 @@ static const uint16_t ts_small_parse_table[] = { [305553] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10180), 1, - sym_integer, + ACTIONS(10168), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424116,8 +423882,8 @@ static const uint16_t ts_small_parse_table[] = { [305565] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10182), 1, - anon_sym_LBRACE, + ACTIONS(10170), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424125,8 +423891,8 @@ static const uint16_t ts_small_parse_table[] = { [305577] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10184), 1, - anon_sym_RPAREN, + ACTIONS(10172), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424134,8 +423900,8 @@ static const uint16_t ts_small_parse_table[] = { [305589] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2635), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10174), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424143,8 +423909,8 @@ static const uint16_t ts_small_parse_table[] = { [305601] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10186), 1, - anon_sym_SLASH, + ACTIONS(10176), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424152,8 +423918,8 @@ static const uint16_t ts_small_parse_table[] = { [305613] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10188), 1, - anon_sym_RPAREN, + ACTIONS(10178), 1, + anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424161,7 +423927,7 @@ static const uint16_t ts_small_parse_table[] = { [305625] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(10180), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424170,7 +423936,7 @@ static const uint16_t ts_small_parse_table[] = { [305637] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10192), 1, + ACTIONS(10182), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424179,8 +423945,8 @@ static const uint16_t ts_small_parse_table[] = { [305649] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10184), 1, + anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424188,8 +423954,8 @@ static const uint16_t ts_small_parse_table[] = { [305661] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2643), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10186), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424197,7 +423963,7 @@ static const uint16_t ts_small_parse_table[] = { [305673] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10194), 1, + ACTIONS(10188), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424206,7 +423972,7 @@ static const uint16_t ts_small_parse_table[] = { [305685] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10196), 1, + ACTIONS(10190), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424215,7 +423981,7 @@ static const uint16_t ts_small_parse_table[] = { [305697] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2639), 1, + ACTIONS(3090), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424224,8 +423990,8 @@ static const uint16_t ts_small_parse_table[] = { [305709] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym_GT_GT, + ACTIONS(3100), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424233,8 +423999,8 @@ static const uint16_t ts_small_parse_table[] = { [305721] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10192), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424242,8 +424008,8 @@ static const uint16_t ts_small_parse_table[] = { [305733] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10200), 1, - anon_sym_RBRACE, + ACTIONS(10194), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424251,8 +424017,8 @@ static const uint16_t ts_small_parse_table[] = { [305745] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10202), 1, - sym_integer, + ACTIONS(10196), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424260,7 +424026,7 @@ static const uint16_t ts_small_parse_table[] = { [305757] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10204), 1, + ACTIONS(10198), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424269,8 +424035,8 @@ static const uint16_t ts_small_parse_table[] = { [305769] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10206), 1, - anon_sym_RBRACE, + ACTIONS(10200), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424278,7 +424044,7 @@ static const uint16_t ts_small_parse_table[] = { [305781] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10208), 1, + ACTIONS(10202), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424287,8 +424053,8 @@ static const uint16_t ts_small_parse_table[] = { [305793] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10210), 1, - anon_sym_RPAREN, + ACTIONS(10204), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424296,8 +424062,8 @@ static const uint16_t ts_small_parse_table[] = { [305805] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10212), 1, - anon_sym_RBRACE, + ACTIONS(10206), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424305,7 +424071,7 @@ static const uint16_t ts_small_parse_table[] = { [305817] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10214), 1, + ACTIONS(10208), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424314,8 +424080,8 @@ static const uint16_t ts_small_parse_table[] = { [305829] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10216), 1, - anon_sym_DASH_GT, + ACTIONS(10210), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424323,7 +424089,7 @@ static const uint16_t ts_small_parse_table[] = { [305841] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10218), 1, + ACTIONS(10212), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424332,7 +424098,7 @@ static const uint16_t ts_small_parse_table[] = { [305853] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10220), 1, + ACTIONS(10214), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424341,7 +424107,7 @@ static const uint16_t ts_small_parse_table[] = { [305865] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10222), 1, + ACTIONS(10216), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424350,8 +424116,8 @@ static const uint16_t ts_small_parse_table[] = { [305877] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10224), 1, - anon_sym_DASH_GT, + ACTIONS(10218), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424359,7 +424125,7 @@ static const uint16_t ts_small_parse_table[] = { [305889] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10226), 1, + ACTIONS(10220), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424368,7 +424134,7 @@ static const uint16_t ts_small_parse_table[] = { [305901] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10228), 1, + ACTIONS(10222), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424386,8 +424152,8 @@ static const uint16_t ts_small_parse_table[] = { [305925] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10230), 1, - anon_sym_RBRACE, + ACTIONS(10224), 1, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424395,7 +424161,7 @@ static const uint16_t ts_small_parse_table[] = { [305937] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(10226), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424404,7 +424170,7 @@ static const uint16_t ts_small_parse_table[] = { [305949] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10234), 1, + ACTIONS(10228), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424413,8 +424179,8 @@ static const uint16_t ts_small_parse_table[] = { [305961] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10236), 1, - anon_sym_RBRACK, + ACTIONS(10230), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424422,8 +424188,8 @@ static const uint16_t ts_small_parse_table[] = { [305973] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10238), 1, - anon_sym_RBRACK, + ACTIONS(10232), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424431,8 +424197,8 @@ static const uint16_t ts_small_parse_table[] = { [305985] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10240), 1, - anon_sym_RBRACE, + ACTIONS(10234), 1, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424440,7 +424206,7 @@ static const uint16_t ts_small_parse_table[] = { [305997] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10242), 1, + ACTIONS(10236), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424449,7 +424215,7 @@ static const uint16_t ts_small_parse_table[] = { [306009] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10244), 1, + ACTIONS(10238), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424458,7 +424224,7 @@ static const uint16_t ts_small_parse_table[] = { [306021] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10246), 1, + ACTIONS(10240), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424467,7 +424233,7 @@ static const uint16_t ts_small_parse_table[] = { [306033] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10248), 1, + ACTIONS(10242), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424476,8 +424242,8 @@ static const uint16_t ts_small_parse_table[] = { [306045] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10250), 1, - anon_sym_RPAREN, + ACTIONS(10244), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424485,8 +424251,8 @@ static const uint16_t ts_small_parse_table[] = { [306057] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10252), 1, - anon_sym_RBRACE, + ACTIONS(10246), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424494,8 +424260,8 @@ static const uint16_t ts_small_parse_table[] = { [306069] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10254), 1, - anon_sym_GT_GT, + ACTIONS(10248), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424503,8 +424269,8 @@ static const uint16_t ts_small_parse_table[] = { [306081] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10256), 1, - anon_sym_RBRACK, + ACTIONS(10250), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424512,8 +424278,8 @@ static const uint16_t ts_small_parse_table[] = { [306093] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_RBRACE, + ACTIONS(10252), 1, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424521,7 +424287,7 @@ static const uint16_t ts_small_parse_table[] = { [306105] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10260), 1, + ACTIONS(10254), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424530,7 +424296,7 @@ static const uint16_t ts_small_parse_table[] = { [306117] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10262), 1, + ACTIONS(10256), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424539,8 +424305,8 @@ static const uint16_t ts_small_parse_table[] = { [306129] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10264), 1, - anon_sym_GT_GT, + ACTIONS(10258), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424548,8 +424314,8 @@ static const uint16_t ts_small_parse_table[] = { [306141] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10266), 1, - anon_sym_RPAREN, + ACTIONS(10260), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424557,8 +424323,8 @@ static const uint16_t ts_small_parse_table[] = { [306153] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10268), 1, - sym_integer, + ACTIONS(10262), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424566,8 +424332,8 @@ static const uint16_t ts_small_parse_table[] = { [306165] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10270), 1, - anon_sym_DASH_GT, + ACTIONS(10264), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424575,7 +424341,7 @@ static const uint16_t ts_small_parse_table[] = { [306177] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10272), 1, + ACTIONS(10266), 1, ts_builtin_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424584,7 +424350,7 @@ static const uint16_t ts_small_parse_table[] = { [306189] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10274), 1, + ACTIONS(10268), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424593,7 +424359,7 @@ static const uint16_t ts_small_parse_table[] = { [306201] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10276), 1, + ACTIONS(10270), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424602,8 +424368,8 @@ static const uint16_t ts_small_parse_table[] = { [306213] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10278), 1, - sym_integer, + ACTIONS(10272), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424611,8 +424377,8 @@ static const uint16_t ts_small_parse_table[] = { [306225] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10280), 1, - anon_sym_RPAREN, + ACTIONS(10274), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424620,8 +424386,8 @@ static const uint16_t ts_small_parse_table[] = { [306237] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2627), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10276), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424629,8 +424395,8 @@ static const uint16_t ts_small_parse_table[] = { [306249] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10282), 1, - anon_sym_RBRACE, + ACTIONS(10278), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424638,7 +424404,7 @@ static const uint16_t ts_small_parse_table[] = { [306261] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10284), 1, + ACTIONS(10280), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424647,7 +424413,7 @@ static const uint16_t ts_small_parse_table[] = { [306273] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10286), 1, + ACTIONS(10282), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424656,7 +424422,7 @@ static const uint16_t ts_small_parse_table[] = { [306285] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(10284), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424665,8 +424431,8 @@ static const uint16_t ts_small_parse_table[] = { [306297] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10290), 1, - anon_sym_RBRACE, + ACTIONS(10286), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424674,8 +424440,8 @@ static const uint16_t ts_small_parse_table[] = { [306309] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10292), 1, - anon_sym_RBRACE, + ACTIONS(10288), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424683,8 +424449,8 @@ static const uint16_t ts_small_parse_table[] = { [306321] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10294), 1, - anon_sym_RBRACK, + ACTIONS(10290), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424692,8 +424458,8 @@ static const uint16_t ts_small_parse_table[] = { [306333] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10296), 1, - anon_sym_GT_GT, + ACTIONS(10292), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424701,7 +424467,7 @@ static const uint16_t ts_small_parse_table[] = { [306345] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10294), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424710,7 +424476,7 @@ static const uint16_t ts_small_parse_table[] = { [306357] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10300), 1, + ACTIONS(10296), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424719,7 +424485,7 @@ static const uint16_t ts_small_parse_table[] = { [306369] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(10298), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424728,8 +424494,8 @@ static const uint16_t ts_small_parse_table[] = { [306381] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10304), 1, - sym_integer, + ACTIONS(10300), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424737,8 +424503,8 @@ static const uint16_t ts_small_parse_table[] = { [306393] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10306), 1, - anon_sym_RBRACE, + ACTIONS(10302), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424746,7 +424512,7 @@ static const uint16_t ts_small_parse_table[] = { [306405] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10308), 1, + ACTIONS(10304), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424755,8 +424521,8 @@ static const uint16_t ts_small_parse_table[] = { [306417] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10310), 1, - sym_integer, + ACTIONS(10306), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424764,7 +424530,7 @@ static const uint16_t ts_small_parse_table[] = { [306429] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10312), 1, + ACTIONS(10308), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424773,7 +424539,7 @@ static const uint16_t ts_small_parse_table[] = { [306441] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10314), 1, + ACTIONS(10310), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424782,7 +424548,7 @@ static const uint16_t ts_small_parse_table[] = { [306453] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10316), 1, + ACTIONS(10312), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424791,7 +424557,7 @@ static const uint16_t ts_small_parse_table[] = { [306465] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(10314), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424800,8 +424566,8 @@ static const uint16_t ts_small_parse_table[] = { [306477] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10320), 1, - anon_sym_RPAREN, + ACTIONS(10316), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424809,7 +424575,7 @@ static const uint16_t ts_small_parse_table[] = { [306489] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10322), 1, + ACTIONS(10318), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424818,8 +424584,8 @@ static const uint16_t ts_small_parse_table[] = { [306501] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10324), 1, - anon_sym_RBRACE, + ACTIONS(10320), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424827,7 +424593,7 @@ static const uint16_t ts_small_parse_table[] = { [306513] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10326), 1, + ACTIONS(10322), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424836,7 +424602,7 @@ static const uint16_t ts_small_parse_table[] = { [306525] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10328), 1, + ACTIONS(10324), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424845,7 +424611,7 @@ static const uint16_t ts_small_parse_table[] = { [306537] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10330), 1, + ACTIONS(10326), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424854,7 +424620,7 @@ static const uint16_t ts_small_parse_table[] = { [306549] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2617), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424863,8 +424629,8 @@ static const uint16_t ts_small_parse_table[] = { [306561] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10332), 1, - sym_integer, + ACTIONS(10328), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424872,8 +424638,8 @@ static const uint16_t ts_small_parse_table[] = { [306573] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10334), 1, - anon_sym_RBRACE, + ACTIONS(10330), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424881,7 +424647,7 @@ static const uint16_t ts_small_parse_table[] = { [306585] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10336), 1, + ACTIONS(10332), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424890,8 +424656,8 @@ static const uint16_t ts_small_parse_table[] = { [306597] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10338), 1, - anon_sym_RBRACE, + ACTIONS(10334), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424899,7 +424665,7 @@ static const uint16_t ts_small_parse_table[] = { [306609] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10340), 1, + ACTIONS(10336), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -424908,8 +424674,8 @@ static const uint16_t ts_small_parse_table[] = { [306621] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10342), 1, - anon_sym_RPAREN, + ACTIONS(10338), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424917,8 +424683,8 @@ static const uint16_t ts_small_parse_table[] = { [306633] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10344), 1, - anon_sym_RBRACE, + ACTIONS(10340), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424926,8 +424692,8 @@ static const uint16_t ts_small_parse_table[] = { [306645] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3034), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10342), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424935,8 +424701,8 @@ static const uint16_t ts_small_parse_table[] = { [306657] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2994), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10344), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424945,7 +424711,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10346), 1, - anon_sym_GT_GT, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424954,7 +424720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10348), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424963,7 +424729,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10350), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424972,7 +424738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10352), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424981,7 +424747,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10354), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424990,7 +424756,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10356), 1, - sym_integer, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -424999,7 +424765,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10358), 1, - anon_sym_RBRACE, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425008,7 +424774,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10360), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425035,7 +424801,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10366), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425044,7 +424810,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10368), 1, - anon_sym_RBRACE, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425053,7 +424819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10370), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425062,7 +424828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10372), 1, - anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425071,7 +424837,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 1, sym_comment, ACTIONS(10374), 1, - anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -425080,53 +424846,53 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1091)] = 0, - [SMALL_STATE(1092)] = 75, - [SMALL_STATE(1093)] = 150, - [SMALL_STATE(1094)] = 223, - [SMALL_STATE(1095)] = 296, - [SMALL_STATE(1096)] = 425, - [SMALL_STATE(1097)] = 498, - [SMALL_STATE(1098)] = 577, - [SMALL_STATE(1099)] = 652, - [SMALL_STATE(1100)] = 731, - [SMALL_STATE(1101)] = 860, - [SMALL_STATE(1102)] = 989, - [SMALL_STATE(1103)] = 1062, - [SMALL_STATE(1104)] = 1191, - [SMALL_STATE(1105)] = 1320, - [SMALL_STATE(1106)] = 1395, - [SMALL_STATE(1107)] = 1524, - [SMALL_STATE(1108)] = 1597, - [SMALL_STATE(1109)] = 1670, - [SMALL_STATE(1110)] = 1749, - [SMALL_STATE(1111)] = 1824, - [SMALL_STATE(1112)] = 1953, - [SMALL_STATE(1113)] = 2032, - [SMALL_STATE(1114)] = 2161, - [SMALL_STATE(1115)] = 2234, - [SMALL_STATE(1116)] = 2309, - [SMALL_STATE(1117)] = 2388, - [SMALL_STATE(1118)] = 2467, - [SMALL_STATE(1119)] = 2546, - [SMALL_STATE(1120)] = 2619, - [SMALL_STATE(1121)] = 2692, - [SMALL_STATE(1122)] = 2765, - [SMALL_STATE(1123)] = 2840, - [SMALL_STATE(1124)] = 2915, - [SMALL_STATE(1125)] = 2988, - [SMALL_STATE(1126)] = 3063, - [SMALL_STATE(1127)] = 3136, - [SMALL_STATE(1128)] = 3209, - [SMALL_STATE(1129)] = 3282, - [SMALL_STATE(1130)] = 3355, - [SMALL_STATE(1131)] = 3428, - [SMALL_STATE(1132)] = 3501, - [SMALL_STATE(1133)] = 3574, - [SMALL_STATE(1134)] = 3651, - [SMALL_STATE(1135)] = 3728, + [SMALL_STATE(1092)] = 73, + [SMALL_STATE(1093)] = 152, + [SMALL_STATE(1094)] = 281, + [SMALL_STATE(1095)] = 410, + [SMALL_STATE(1096)] = 483, + [SMALL_STATE(1097)] = 556, + [SMALL_STATE(1098)] = 629, + [SMALL_STATE(1099)] = 702, + [SMALL_STATE(1100)] = 775, + [SMALL_STATE(1101)] = 848, + [SMALL_STATE(1102)] = 921, + [SMALL_STATE(1103)] = 996, + [SMALL_STATE(1104)] = 1071, + [SMALL_STATE(1105)] = 1144, + [SMALL_STATE(1106)] = 1217, + [SMALL_STATE(1107)] = 1290, + [SMALL_STATE(1108)] = 1367, + [SMALL_STATE(1109)] = 1444, + [SMALL_STATE(1110)] = 1521, + [SMALL_STATE(1111)] = 1650, + [SMALL_STATE(1112)] = 1723, + [SMALL_STATE(1113)] = 1796, + [SMALL_STATE(1114)] = 1925, + [SMALL_STATE(1115)] = 2054, + [SMALL_STATE(1116)] = 2183, + [SMALL_STATE(1117)] = 2312, + [SMALL_STATE(1118)] = 2385, + [SMALL_STATE(1119)] = 2514, + [SMALL_STATE(1120)] = 2587, + [SMALL_STATE(1121)] = 2660, + [SMALL_STATE(1122)] = 2733, + [SMALL_STATE(1123)] = 2808, + [SMALL_STATE(1124)] = 2887, + [SMALL_STATE(1125)] = 2966, + [SMALL_STATE(1126)] = 3045, + [SMALL_STATE(1127)] = 3124, + [SMALL_STATE(1128)] = 3197, + [SMALL_STATE(1129)] = 3276, + [SMALL_STATE(1130)] = 3349, + [SMALL_STATE(1131)] = 3424, + [SMALL_STATE(1132)] = 3499, + [SMALL_STATE(1133)] = 3578, + [SMALL_STATE(1134)] = 3653, + [SMALL_STATE(1135)] = 3726, [SMALL_STATE(1136)] = 3801, [SMALL_STATE(1137)] = 3874, - [SMALL_STATE(1138)] = 3951, + [SMALL_STATE(1138)] = 3949, [SMALL_STATE(1139)] = 4024, [SMALL_STATE(1140)] = 4096, [SMALL_STATE(1141)] = 4168, @@ -425146,187 +424912,187 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1155)] = 5176, [SMALL_STATE(1156)] = 5248, [SMALL_STATE(1157)] = 5320, - [SMALL_STATE(1158)] = 5396, - [SMALL_STATE(1159)] = 5468, - [SMALL_STATE(1160)] = 5540, - [SMALL_STATE(1161)] = 5612, - [SMALL_STATE(1162)] = 5684, - [SMALL_STATE(1163)] = 5756, - [SMALL_STATE(1164)] = 5828, - [SMALL_STATE(1165)] = 5900, - [SMALL_STATE(1166)] = 5972, - [SMALL_STATE(1167)] = 6044, - [SMALL_STATE(1168)] = 6116, - [SMALL_STATE(1169)] = 6188, - [SMALL_STATE(1170)] = 6260, - [SMALL_STATE(1171)] = 6332, - [SMALL_STATE(1172)] = 6404, - [SMALL_STATE(1173)] = 6476, - [SMALL_STATE(1174)] = 6548, - [SMALL_STATE(1175)] = 6620, - [SMALL_STATE(1176)] = 6692, - [SMALL_STATE(1177)] = 6764, - [SMALL_STATE(1178)] = 6836, - [SMALL_STATE(1179)] = 6908, - [SMALL_STATE(1180)] = 6980, - [SMALL_STATE(1181)] = 7052, - [SMALL_STATE(1182)] = 7124, - [SMALL_STATE(1183)] = 7200, - [SMALL_STATE(1184)] = 7274, - [SMALL_STATE(1185)] = 7346, - [SMALL_STATE(1186)] = 7418, - [SMALL_STATE(1187)] = 7490, - [SMALL_STATE(1188)] = 7564, - [SMALL_STATE(1189)] = 7638, - [SMALL_STATE(1190)] = 7710, - [SMALL_STATE(1191)] = 7784, - [SMALL_STATE(1192)] = 7856, - [SMALL_STATE(1193)] = 7928, - [SMALL_STATE(1194)] = 8002, - [SMALL_STATE(1195)] = 8076, - [SMALL_STATE(1196)] = 8150, - [SMALL_STATE(1197)] = 8222, - [SMALL_STATE(1198)] = 8294, - [SMALL_STATE(1199)] = 8366, - [SMALL_STATE(1200)] = 8438, - [SMALL_STATE(1201)] = 8510, - [SMALL_STATE(1202)] = 8582, - [SMALL_STATE(1203)] = 8654, - [SMALL_STATE(1204)] = 8726, - [SMALL_STATE(1205)] = 8804, - [SMALL_STATE(1206)] = 8882, - [SMALL_STATE(1207)] = 8960, - [SMALL_STATE(1208)] = 9038, - [SMALL_STATE(1209)] = 9110, - [SMALL_STATE(1210)] = 9188, - [SMALL_STATE(1211)] = 9260, - [SMALL_STATE(1212)] = 9332, - [SMALL_STATE(1213)] = 9404, - [SMALL_STATE(1214)] = 9476, - [SMALL_STATE(1215)] = 9548, - [SMALL_STATE(1216)] = 9620, - [SMALL_STATE(1217)] = 9692, - [SMALL_STATE(1218)] = 9764, - [SMALL_STATE(1219)] = 9836, - [SMALL_STATE(1220)] = 9908, - [SMALL_STATE(1221)] = 9980, - [SMALL_STATE(1222)] = 10052, - [SMALL_STATE(1223)] = 10124, - [SMALL_STATE(1224)] = 10196, - [SMALL_STATE(1225)] = 10268, - [SMALL_STATE(1226)] = 10340, - [SMALL_STATE(1227)] = 10412, - [SMALL_STATE(1228)] = 10484, - [SMALL_STATE(1229)] = 10556, - [SMALL_STATE(1230)] = 10628, - [SMALL_STATE(1231)] = 10700, - [SMALL_STATE(1232)] = 10772, - [SMALL_STATE(1233)] = 10844, - [SMALL_STATE(1234)] = 10916, - [SMALL_STATE(1235)] = 10988, - [SMALL_STATE(1236)] = 11060, - [SMALL_STATE(1237)] = 11132, - [SMALL_STATE(1238)] = 11204, - [SMALL_STATE(1239)] = 11276, - [SMALL_STATE(1240)] = 11348, - [SMALL_STATE(1241)] = 11420, - [SMALL_STATE(1242)] = 11492, - [SMALL_STATE(1243)] = 11564, - [SMALL_STATE(1244)] = 11636, - [SMALL_STATE(1245)] = 11708, - [SMALL_STATE(1246)] = 11780, - [SMALL_STATE(1247)] = 11852, - [SMALL_STATE(1248)] = 11924, - [SMALL_STATE(1249)] = 12000, - [SMALL_STATE(1250)] = 12072, - [SMALL_STATE(1251)] = 12148, - [SMALL_STATE(1252)] = 12220, - [SMALL_STATE(1253)] = 12292, - [SMALL_STATE(1254)] = 12368, - [SMALL_STATE(1255)] = 12440, - [SMALL_STATE(1256)] = 12512, - [SMALL_STATE(1257)] = 12584, - [SMALL_STATE(1258)] = 12660, - [SMALL_STATE(1259)] = 12732, - [SMALL_STATE(1260)] = 12804, - [SMALL_STATE(1261)] = 12876, - [SMALL_STATE(1262)] = 12952, - [SMALL_STATE(1263)] = 13024, - [SMALL_STATE(1264)] = 13096, - [SMALL_STATE(1265)] = 13172, - [SMALL_STATE(1266)] = 13244, - [SMALL_STATE(1267)] = 13316, - [SMALL_STATE(1268)] = 13388, - [SMALL_STATE(1269)] = 13460, - [SMALL_STATE(1270)] = 13532, - [SMALL_STATE(1271)] = 13604, - [SMALL_STATE(1272)] = 13676, - [SMALL_STATE(1273)] = 13748, - [SMALL_STATE(1274)] = 13820, - [SMALL_STATE(1275)] = 13892, - [SMALL_STATE(1276)] = 13964, - [SMALL_STATE(1277)] = 14036, - [SMALL_STATE(1278)] = 14108, - [SMALL_STATE(1279)] = 14180, - [SMALL_STATE(1280)] = 14252, - [SMALL_STATE(1281)] = 14324, - [SMALL_STATE(1282)] = 14396, - [SMALL_STATE(1283)] = 14468, - [SMALL_STATE(1284)] = 14540, - [SMALL_STATE(1285)] = 14612, - [SMALL_STATE(1286)] = 14684, - [SMALL_STATE(1287)] = 14802, - [SMALL_STATE(1288)] = 14876, - [SMALL_STATE(1289)] = 14950, - [SMALL_STATE(1290)] = 15022, - [SMALL_STATE(1291)] = 15096, - [SMALL_STATE(1292)] = 15170, - [SMALL_STATE(1293)] = 15244, - [SMALL_STATE(1294)] = 15318, - [SMALL_STATE(1295)] = 15390, - [SMALL_STATE(1296)] = 15462, - [SMALL_STATE(1297)] = 15534, - [SMALL_STATE(1298)] = 15606, - [SMALL_STATE(1299)] = 15680, - [SMALL_STATE(1300)] = 15752, - [SMALL_STATE(1301)] = 15824, - [SMALL_STATE(1302)] = 15898, - [SMALL_STATE(1303)] = 15972, - [SMALL_STATE(1304)] = 16046, - [SMALL_STATE(1305)] = 16118, - [SMALL_STATE(1306)] = 16190, - [SMALL_STATE(1307)] = 16262, - [SMALL_STATE(1308)] = 16336, - [SMALL_STATE(1309)] = 16410, - [SMALL_STATE(1310)] = 16482, - [SMALL_STATE(1311)] = 16556, - [SMALL_STATE(1312)] = 16630, - [SMALL_STATE(1313)] = 16702, - [SMALL_STATE(1314)] = 16776, - [SMALL_STATE(1315)] = 16850, - [SMALL_STATE(1316)] = 16924, - [SMALL_STATE(1317)] = 16998, - [SMALL_STATE(1318)] = 17072, - [SMALL_STATE(1319)] = 17146, - [SMALL_STATE(1320)] = 17218, - [SMALL_STATE(1321)] = 17290, - [SMALL_STATE(1322)] = 17362, - [SMALL_STATE(1323)] = 17434, - [SMALL_STATE(1324)] = 17506, - [SMALL_STATE(1325)] = 17578, - [SMALL_STATE(1326)] = 17650, - [SMALL_STATE(1327)] = 17722, - [SMALL_STATE(1328)] = 17794, - [SMALL_STATE(1329)] = 17866, - [SMALL_STATE(1330)] = 17938, - [SMALL_STATE(1331)] = 18010, - [SMALL_STATE(1332)] = 18082, - [SMALL_STATE(1333)] = 18154, - [SMALL_STATE(1334)] = 18226, - [SMALL_STATE(1335)] = 18298, - [SMALL_STATE(1336)] = 18370, - [SMALL_STATE(1337)] = 18442, - [SMALL_STATE(1338)] = 18514, + [SMALL_STATE(1158)] = 5392, + [SMALL_STATE(1159)] = 5464, + [SMALL_STATE(1160)] = 5536, + [SMALL_STATE(1161)] = 5610, + [SMALL_STATE(1162)] = 5682, + [SMALL_STATE(1163)] = 5754, + [SMALL_STATE(1164)] = 5826, + [SMALL_STATE(1165)] = 5898, + [SMALL_STATE(1166)] = 5970, + [SMALL_STATE(1167)] = 6042, + [SMALL_STATE(1168)] = 6114, + [SMALL_STATE(1169)] = 6186, + [SMALL_STATE(1170)] = 6258, + [SMALL_STATE(1171)] = 6330, + [SMALL_STATE(1172)] = 6402, + [SMALL_STATE(1173)] = 6474, + [SMALL_STATE(1174)] = 6546, + [SMALL_STATE(1175)] = 6618, + [SMALL_STATE(1176)] = 6690, + [SMALL_STATE(1177)] = 6762, + [SMALL_STATE(1178)] = 6834, + [SMALL_STATE(1179)] = 6906, + [SMALL_STATE(1180)] = 6978, + [SMALL_STATE(1181)] = 7050, + [SMALL_STATE(1182)] = 7122, + [SMALL_STATE(1183)] = 7194, + [SMALL_STATE(1184)] = 7266, + [SMALL_STATE(1185)] = 7338, + [SMALL_STATE(1186)] = 7410, + [SMALL_STATE(1187)] = 7482, + [SMALL_STATE(1188)] = 7554, + [SMALL_STATE(1189)] = 7626, + [SMALL_STATE(1190)] = 7698, + [SMALL_STATE(1191)] = 7770, + [SMALL_STATE(1192)] = 7842, + [SMALL_STATE(1193)] = 7916, + [SMALL_STATE(1194)] = 7990, + [SMALL_STATE(1195)] = 8062, + [SMALL_STATE(1196)] = 8134, + [SMALL_STATE(1197)] = 8206, + [SMALL_STATE(1198)] = 8278, + [SMALL_STATE(1199)] = 8350, + [SMALL_STATE(1200)] = 8422, + [SMALL_STATE(1201)] = 8494, + [SMALL_STATE(1202)] = 8566, + [SMALL_STATE(1203)] = 8638, + [SMALL_STATE(1204)] = 8710, + [SMALL_STATE(1205)] = 8828, + [SMALL_STATE(1206)] = 8900, + [SMALL_STATE(1207)] = 8972, + [SMALL_STATE(1208)] = 9044, + [SMALL_STATE(1209)] = 9122, + [SMALL_STATE(1210)] = 9194, + [SMALL_STATE(1211)] = 9272, + [SMALL_STATE(1212)] = 9350, + [SMALL_STATE(1213)] = 9422, + [SMALL_STATE(1214)] = 9494, + [SMALL_STATE(1215)] = 9572, + [SMALL_STATE(1216)] = 9650, + [SMALL_STATE(1217)] = 9724, + [SMALL_STATE(1218)] = 9796, + [SMALL_STATE(1219)] = 9868, + [SMALL_STATE(1220)] = 9940, + [SMALL_STATE(1221)] = 10012, + [SMALL_STATE(1222)] = 10084, + [SMALL_STATE(1223)] = 10156, + [SMALL_STATE(1224)] = 10228, + [SMALL_STATE(1225)] = 10300, + [SMALL_STATE(1226)] = 10372, + [SMALL_STATE(1227)] = 10444, + [SMALL_STATE(1228)] = 10520, + [SMALL_STATE(1229)] = 10596, + [SMALL_STATE(1230)] = 10672, + [SMALL_STATE(1231)] = 10744, + [SMALL_STATE(1232)] = 10816, + [SMALL_STATE(1233)] = 10888, + [SMALL_STATE(1234)] = 10960, + [SMALL_STATE(1235)] = 11032, + [SMALL_STATE(1236)] = 11104, + [SMALL_STATE(1237)] = 11176, + [SMALL_STATE(1238)] = 11248, + [SMALL_STATE(1239)] = 11320, + [SMALL_STATE(1240)] = 11392, + [SMALL_STATE(1241)] = 11464, + [SMALL_STATE(1242)] = 11536, + [SMALL_STATE(1243)] = 11608, + [SMALL_STATE(1244)] = 11680, + [SMALL_STATE(1245)] = 11752, + [SMALL_STATE(1246)] = 11824, + [SMALL_STATE(1247)] = 11896, + [SMALL_STATE(1248)] = 11968, + [SMALL_STATE(1249)] = 12040, + [SMALL_STATE(1250)] = 12112, + [SMALL_STATE(1251)] = 12184, + [SMALL_STATE(1252)] = 12256, + [SMALL_STATE(1253)] = 12328, + [SMALL_STATE(1254)] = 12400, + [SMALL_STATE(1255)] = 12472, + [SMALL_STATE(1256)] = 12546, + [SMALL_STATE(1257)] = 12618, + [SMALL_STATE(1258)] = 12690, + [SMALL_STATE(1259)] = 12762, + [SMALL_STATE(1260)] = 12836, + [SMALL_STATE(1261)] = 12908, + [SMALL_STATE(1262)] = 12980, + [SMALL_STATE(1263)] = 13052, + [SMALL_STATE(1264)] = 13124, + [SMALL_STATE(1265)] = 13196, + [SMALL_STATE(1266)] = 13268, + [SMALL_STATE(1267)] = 13342, + [SMALL_STATE(1268)] = 13414, + [SMALL_STATE(1269)] = 13486, + [SMALL_STATE(1270)] = 13558, + [SMALL_STATE(1271)] = 13630, + [SMALL_STATE(1272)] = 13702, + [SMALL_STATE(1273)] = 13776, + [SMALL_STATE(1274)] = 13848, + [SMALL_STATE(1275)] = 13920, + [SMALL_STATE(1276)] = 13994, + [SMALL_STATE(1277)] = 14066, + [SMALL_STATE(1278)] = 14138, + [SMALL_STATE(1279)] = 14210, + [SMALL_STATE(1280)] = 14284, + [SMALL_STATE(1281)] = 14358, + [SMALL_STATE(1282)] = 14430, + [SMALL_STATE(1283)] = 14502, + [SMALL_STATE(1284)] = 14574, + [SMALL_STATE(1285)] = 14646, + [SMALL_STATE(1286)] = 14718, + [SMALL_STATE(1287)] = 14790, + [SMALL_STATE(1288)] = 14862, + [SMALL_STATE(1289)] = 14934, + [SMALL_STATE(1290)] = 15006, + [SMALL_STATE(1291)] = 15078, + [SMALL_STATE(1292)] = 15150, + [SMALL_STATE(1293)] = 15222, + [SMALL_STATE(1294)] = 15294, + [SMALL_STATE(1295)] = 15366, + [SMALL_STATE(1296)] = 15438, + [SMALL_STATE(1297)] = 15510, + [SMALL_STATE(1298)] = 15582, + [SMALL_STATE(1299)] = 15658, + [SMALL_STATE(1300)] = 15732, + [SMALL_STATE(1301)] = 15806, + [SMALL_STATE(1302)] = 15880, + [SMALL_STATE(1303)] = 15954, + [SMALL_STATE(1304)] = 16028, + [SMALL_STATE(1305)] = 16102, + [SMALL_STATE(1306)] = 16174, + [SMALL_STATE(1307)] = 16246, + [SMALL_STATE(1308)] = 16322, + [SMALL_STATE(1309)] = 16394, + [SMALL_STATE(1310)] = 16466, + [SMALL_STATE(1311)] = 16538, + [SMALL_STATE(1312)] = 16610, + [SMALL_STATE(1313)] = 16684, + [SMALL_STATE(1314)] = 16758, + [SMALL_STATE(1315)] = 16832, + [SMALL_STATE(1316)] = 16904, + [SMALL_STATE(1317)] = 16978, + [SMALL_STATE(1318)] = 17050, + [SMALL_STATE(1319)] = 17122, + [SMALL_STATE(1320)] = 17194, + [SMALL_STATE(1321)] = 17266, + [SMALL_STATE(1322)] = 17338, + [SMALL_STATE(1323)] = 17410, + [SMALL_STATE(1324)] = 17482, + [SMALL_STATE(1325)] = 17558, + [SMALL_STATE(1326)] = 17634, + [SMALL_STATE(1327)] = 17708, + [SMALL_STATE(1328)] = 17784, + [SMALL_STATE(1329)] = 17858, + [SMALL_STATE(1330)] = 17930, + [SMALL_STATE(1331)] = 18002, + [SMALL_STATE(1332)] = 18074, + [SMALL_STATE(1333)] = 18146, + [SMALL_STATE(1334)] = 18220, + [SMALL_STATE(1335)] = 18294, + [SMALL_STATE(1336)] = 18366, + [SMALL_STATE(1337)] = 18440, + [SMALL_STATE(1338)] = 18512, [SMALL_STATE(1339)] = 18586, [SMALL_STATE(1340)] = 18658, [SMALL_STATE(1341)] = 18730, @@ -425340,217 +425106,217 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1349)] = 19306, [SMALL_STATE(1350)] = 19377, [SMALL_STATE(1351)] = 19448, - [SMALL_STATE(1352)] = 19521, - [SMALL_STATE(1353)] = 19592, - [SMALL_STATE(1354)] = 19663, - [SMALL_STATE(1355)] = 19734, - [SMALL_STATE(1356)] = 19805, - [SMALL_STATE(1357)] = 19876, - [SMALL_STATE(1358)] = 19947, - [SMALL_STATE(1359)] = 20018, - [SMALL_STATE(1360)] = 20089, - [SMALL_STATE(1361)] = 20160, - [SMALL_STATE(1362)] = 20231, - [SMALL_STATE(1363)] = 20302, - [SMALL_STATE(1364)] = 20373, - [SMALL_STATE(1365)] = 20444, - [SMALL_STATE(1366)] = 20515, - [SMALL_STATE(1367)] = 20586, - [SMALL_STATE(1368)] = 20657, - [SMALL_STATE(1369)] = 20728, - [SMALL_STATE(1370)] = 20799, - [SMALL_STATE(1371)] = 20870, - [SMALL_STATE(1372)] = 20941, - [SMALL_STATE(1373)] = 21012, - [SMALL_STATE(1374)] = 21083, - [SMALL_STATE(1375)] = 21154, - [SMALL_STATE(1376)] = 21225, - [SMALL_STATE(1377)] = 21296, - [SMALL_STATE(1378)] = 21367, - [SMALL_STATE(1379)] = 21438, - [SMALL_STATE(1380)] = 21509, - [SMALL_STATE(1381)] = 21580, - [SMALL_STATE(1382)] = 21651, - [SMALL_STATE(1383)] = 21722, - [SMALL_STATE(1384)] = 21793, - [SMALL_STATE(1385)] = 21864, - [SMALL_STATE(1386)] = 21935, - [SMALL_STATE(1387)] = 22006, - [SMALL_STATE(1388)] = 22077, - [SMALL_STATE(1389)] = 22148, - [SMALL_STATE(1390)] = 22219, - [SMALL_STATE(1391)] = 22290, - [SMALL_STATE(1392)] = 22361, - [SMALL_STATE(1393)] = 22432, - [SMALL_STATE(1394)] = 22503, - [SMALL_STATE(1395)] = 22574, - [SMALL_STATE(1396)] = 22645, - [SMALL_STATE(1397)] = 22716, - [SMALL_STATE(1398)] = 22787, - [SMALL_STATE(1399)] = 22858, - [SMALL_STATE(1400)] = 22929, - [SMALL_STATE(1401)] = 23000, - [SMALL_STATE(1402)] = 23071, - [SMALL_STATE(1403)] = 23142, - [SMALL_STATE(1404)] = 23213, - [SMALL_STATE(1405)] = 23286, - [SMALL_STATE(1406)] = 23359, - [SMALL_STATE(1407)] = 23430, - [SMALL_STATE(1408)] = 23503, - [SMALL_STATE(1409)] = 23576, + [SMALL_STATE(1352)] = 19519, + [SMALL_STATE(1353)] = 19590, + [SMALL_STATE(1354)] = 19665, + [SMALL_STATE(1355)] = 19736, + [SMALL_STATE(1356)] = 19811, + [SMALL_STATE(1357)] = 19882, + [SMALL_STATE(1358)] = 19953, + [SMALL_STATE(1359)] = 20024, + [SMALL_STATE(1360)] = 20095, + [SMALL_STATE(1361)] = 20166, + [SMALL_STATE(1362)] = 20237, + [SMALL_STATE(1363)] = 20308, + [SMALL_STATE(1364)] = 20379, + [SMALL_STATE(1365)] = 20450, + [SMALL_STATE(1366)] = 20521, + [SMALL_STATE(1367)] = 20592, + [SMALL_STATE(1368)] = 20663, + [SMALL_STATE(1369)] = 20734, + [SMALL_STATE(1370)] = 20805, + [SMALL_STATE(1371)] = 20876, + [SMALL_STATE(1372)] = 20947, + [SMALL_STATE(1373)] = 21018, + [SMALL_STATE(1374)] = 21089, + [SMALL_STATE(1375)] = 21160, + [SMALL_STATE(1376)] = 21231, + [SMALL_STATE(1377)] = 21302, + [SMALL_STATE(1378)] = 21373, + [SMALL_STATE(1379)] = 21444, + [SMALL_STATE(1380)] = 21515, + [SMALL_STATE(1381)] = 21586, + [SMALL_STATE(1382)] = 21657, + [SMALL_STATE(1383)] = 21728, + [SMALL_STATE(1384)] = 21799, + [SMALL_STATE(1385)] = 21870, + [SMALL_STATE(1386)] = 21941, + [SMALL_STATE(1387)] = 22012, + [SMALL_STATE(1388)] = 22083, + [SMALL_STATE(1389)] = 22158, + [SMALL_STATE(1390)] = 22229, + [SMALL_STATE(1391)] = 22300, + [SMALL_STATE(1392)] = 22371, + [SMALL_STATE(1393)] = 22442, + [SMALL_STATE(1394)] = 22513, + [SMALL_STATE(1395)] = 22584, + [SMALL_STATE(1396)] = 22655, + [SMALL_STATE(1397)] = 22726, + [SMALL_STATE(1398)] = 22797, + [SMALL_STATE(1399)] = 22868, + [SMALL_STATE(1400)] = 22939, + [SMALL_STATE(1401)] = 23010, + [SMALL_STATE(1402)] = 23081, + [SMALL_STATE(1403)] = 23152, + [SMALL_STATE(1404)] = 23223, + [SMALL_STATE(1405)] = 23294, + [SMALL_STATE(1406)] = 23365, + [SMALL_STATE(1407)] = 23436, + [SMALL_STATE(1408)] = 23507, + [SMALL_STATE(1409)] = 23578, [SMALL_STATE(1410)] = 23649, - [SMALL_STATE(1411)] = 23722, + [SMALL_STATE(1411)] = 23724, [SMALL_STATE(1412)] = 23795, - [SMALL_STATE(1413)] = 23868, - [SMALL_STATE(1414)] = 23941, - [SMALL_STATE(1415)] = 24014, + [SMALL_STATE(1413)] = 23866, + [SMALL_STATE(1414)] = 23937, + [SMALL_STATE(1415)] = 24012, [SMALL_STATE(1416)] = 24087, - [SMALL_STATE(1417)] = 24158, - [SMALL_STATE(1418)] = 24231, - [SMALL_STATE(1419)] = 24302, - [SMALL_STATE(1420)] = 24375, - [SMALL_STATE(1421)] = 24448, - [SMALL_STATE(1422)] = 24521, - [SMALL_STATE(1423)] = 24594, - [SMALL_STATE(1424)] = 24667, - [SMALL_STATE(1425)] = 24740, - [SMALL_STATE(1426)] = 24813, - [SMALL_STATE(1427)] = 24884, - [SMALL_STATE(1428)] = 24955, - [SMALL_STATE(1429)] = 25026, - [SMALL_STATE(1430)] = 25097, - [SMALL_STATE(1431)] = 25214, - [SMALL_STATE(1432)] = 25285, - [SMALL_STATE(1433)] = 25356, - [SMALL_STATE(1434)] = 25427, - [SMALL_STATE(1435)] = 25498, - [SMALL_STATE(1436)] = 25569, - [SMALL_STATE(1437)] = 25640, - [SMALL_STATE(1438)] = 25711, - [SMALL_STATE(1439)] = 25782, - [SMALL_STATE(1440)] = 25853, - [SMALL_STATE(1441)] = 25924, - [SMALL_STATE(1442)] = 25995, - [SMALL_STATE(1443)] = 26066, - [SMALL_STATE(1444)] = 26137, - [SMALL_STATE(1445)] = 26208, - [SMALL_STATE(1446)] = 26279, - [SMALL_STATE(1447)] = 26350, - [SMALL_STATE(1448)] = 26421, - [SMALL_STATE(1449)] = 26492, - [SMALL_STATE(1450)] = 26563, - [SMALL_STATE(1451)] = 26634, - [SMALL_STATE(1452)] = 26705, - [SMALL_STATE(1453)] = 26776, - [SMALL_STATE(1454)] = 26847, - [SMALL_STATE(1455)] = 26918, - [SMALL_STATE(1456)] = 26989, - [SMALL_STATE(1457)] = 27060, - [SMALL_STATE(1458)] = 27131, - [SMALL_STATE(1459)] = 27202, - [SMALL_STATE(1460)] = 27273, - [SMALL_STATE(1461)] = 27344, - [SMALL_STATE(1462)] = 27415, - [SMALL_STATE(1463)] = 27486, - [SMALL_STATE(1464)] = 27557, - [SMALL_STATE(1465)] = 27628, - [SMALL_STATE(1466)] = 27699, - [SMALL_STATE(1467)] = 27770, - [SMALL_STATE(1468)] = 27841, - [SMALL_STATE(1469)] = 27912, - [SMALL_STATE(1470)] = 27983, - [SMALL_STATE(1471)] = 28054, - [SMALL_STATE(1472)] = 28125, - [SMALL_STATE(1473)] = 28196, - [SMALL_STATE(1474)] = 28267, - [SMALL_STATE(1475)] = 28338, - [SMALL_STATE(1476)] = 28409, - [SMALL_STATE(1477)] = 28480, - [SMALL_STATE(1478)] = 28551, - [SMALL_STATE(1479)] = 28622, - [SMALL_STATE(1480)] = 28693, - [SMALL_STATE(1481)] = 28764, - [SMALL_STATE(1482)] = 28839, - [SMALL_STATE(1483)] = 28914, - [SMALL_STATE(1484)] = 28989, - [SMALL_STATE(1485)] = 29060, - [SMALL_STATE(1486)] = 29131, - [SMALL_STATE(1487)] = 29202, - [SMALL_STATE(1488)] = 29273, - [SMALL_STATE(1489)] = 29344, - [SMALL_STATE(1490)] = 29415, - [SMALL_STATE(1491)] = 29486, - [SMALL_STATE(1492)] = 29557, - [SMALL_STATE(1493)] = 29628, - [SMALL_STATE(1494)] = 29699, - [SMALL_STATE(1495)] = 29770, - [SMALL_STATE(1496)] = 29841, - [SMALL_STATE(1497)] = 29912, - [SMALL_STATE(1498)] = 29983, - [SMALL_STATE(1499)] = 30054, - [SMALL_STATE(1500)] = 30125, - [SMALL_STATE(1501)] = 30196, - [SMALL_STATE(1502)] = 30271, - [SMALL_STATE(1503)] = 30346, - [SMALL_STATE(1504)] = 30417, - [SMALL_STATE(1505)] = 30530, - [SMALL_STATE(1506)] = 30601, - [SMALL_STATE(1507)] = 30714, - [SMALL_STATE(1508)] = 30827, - [SMALL_STATE(1509)] = 30898, - [SMALL_STATE(1510)] = 30973, - [SMALL_STATE(1511)] = 31048, - [SMALL_STATE(1512)] = 31119, - [SMALL_STATE(1513)] = 31190, - [SMALL_STATE(1514)] = 31265, - [SMALL_STATE(1515)] = 31340, - [SMALL_STATE(1516)] = 31415, - [SMALL_STATE(1517)] = 31486, - [SMALL_STATE(1518)] = 31557, - [SMALL_STATE(1519)] = 31628, - [SMALL_STATE(1520)] = 31699, - [SMALL_STATE(1521)] = 31770, - [SMALL_STATE(1522)] = 31841, - [SMALL_STATE(1523)] = 31912, - [SMALL_STATE(1524)] = 31983, - [SMALL_STATE(1525)] = 32054, - [SMALL_STATE(1526)] = 32125, - [SMALL_STATE(1527)] = 32196, - [SMALL_STATE(1528)] = 32267, - [SMALL_STATE(1529)] = 32338, - [SMALL_STATE(1530)] = 32409, - [SMALL_STATE(1531)] = 32480, - [SMALL_STATE(1532)] = 32551, - [SMALL_STATE(1533)] = 32622, - [SMALL_STATE(1534)] = 32693, - [SMALL_STATE(1535)] = 32764, - [SMALL_STATE(1536)] = 32835, - [SMALL_STATE(1537)] = 32906, - [SMALL_STATE(1538)] = 32979, - [SMALL_STATE(1539)] = 33050, - [SMALL_STATE(1540)] = 33121, - [SMALL_STATE(1541)] = 33192, - [SMALL_STATE(1542)] = 33265, - [SMALL_STATE(1543)] = 33350, - [SMALL_STATE(1544)] = 33435, - [SMALL_STATE(1545)] = 33506, - [SMALL_STATE(1546)] = 33577, - [SMALL_STATE(1547)] = 33648, - [SMALL_STATE(1548)] = 33739, - [SMALL_STATE(1549)] = 33834, - [SMALL_STATE(1550)] = 33931, - [SMALL_STATE(1551)] = 34006, - [SMALL_STATE(1552)] = 34105, - [SMALL_STATE(1553)] = 34208, - [SMALL_STATE(1554)] = 34313, - [SMALL_STATE(1555)] = 34422, - [SMALL_STATE(1556)] = 34533, - [SMALL_STATE(1557)] = 34644, - [SMALL_STATE(1558)] = 34723, - [SMALL_STATE(1559)] = 34806, - [SMALL_STATE(1560)] = 34883, - [SMALL_STATE(1561)] = 34990, - [SMALL_STATE(1562)] = 35083, + [SMALL_STATE(1417)] = 24162, + [SMALL_STATE(1418)] = 24235, + [SMALL_STATE(1419)] = 24310, + [SMALL_STATE(1420)] = 24385, + [SMALL_STATE(1421)] = 24460, + [SMALL_STATE(1422)] = 24533, + [SMALL_STATE(1423)] = 24608, + [SMALL_STATE(1424)] = 24725, + [SMALL_STATE(1425)] = 24838, + [SMALL_STATE(1426)] = 24951, + [SMALL_STATE(1427)] = 25064, + [SMALL_STATE(1428)] = 25135, + [SMALL_STATE(1429)] = 25206, + [SMALL_STATE(1430)] = 25277, + [SMALL_STATE(1431)] = 25348, + [SMALL_STATE(1432)] = 25419, + [SMALL_STATE(1433)] = 25490, + [SMALL_STATE(1434)] = 25561, + [SMALL_STATE(1435)] = 25632, + [SMALL_STATE(1436)] = 25703, + [SMALL_STATE(1437)] = 25774, + [SMALL_STATE(1438)] = 25845, + [SMALL_STATE(1439)] = 25916, + [SMALL_STATE(1440)] = 25987, + [SMALL_STATE(1441)] = 26058, + [SMALL_STATE(1442)] = 26129, + [SMALL_STATE(1443)] = 26200, + [SMALL_STATE(1444)] = 26271, + [SMALL_STATE(1445)] = 26342, + [SMALL_STATE(1446)] = 26413, + [SMALL_STATE(1447)] = 26484, + [SMALL_STATE(1448)] = 26555, + [SMALL_STATE(1449)] = 26626, + [SMALL_STATE(1450)] = 26697, + [SMALL_STATE(1451)] = 26768, + [SMALL_STATE(1452)] = 26839, + [SMALL_STATE(1453)] = 26910, + [SMALL_STATE(1454)] = 26981, + [SMALL_STATE(1455)] = 27052, + [SMALL_STATE(1456)] = 27123, + [SMALL_STATE(1457)] = 27194, + [SMALL_STATE(1458)] = 27265, + [SMALL_STATE(1459)] = 27336, + [SMALL_STATE(1460)] = 27407, + [SMALL_STATE(1461)] = 27478, + [SMALL_STATE(1462)] = 27549, + [SMALL_STATE(1463)] = 27620, + [SMALL_STATE(1464)] = 27691, + [SMALL_STATE(1465)] = 27762, + [SMALL_STATE(1466)] = 27833, + [SMALL_STATE(1467)] = 27904, + [SMALL_STATE(1468)] = 27975, + [SMALL_STATE(1469)] = 28046, + [SMALL_STATE(1470)] = 28117, + [SMALL_STATE(1471)] = 28188, + [SMALL_STATE(1472)] = 28259, + [SMALL_STATE(1473)] = 28330, + [SMALL_STATE(1474)] = 28401, + [SMALL_STATE(1475)] = 28472, + [SMALL_STATE(1476)] = 28543, + [SMALL_STATE(1477)] = 28614, + [SMALL_STATE(1478)] = 28685, + [SMALL_STATE(1479)] = 28756, + [SMALL_STATE(1480)] = 28827, + [SMALL_STATE(1481)] = 28898, + [SMALL_STATE(1482)] = 28969, + [SMALL_STATE(1483)] = 29040, + [SMALL_STATE(1484)] = 29111, + [SMALL_STATE(1485)] = 29182, + [SMALL_STATE(1486)] = 29253, + [SMALL_STATE(1487)] = 29324, + [SMALL_STATE(1488)] = 29395, + [SMALL_STATE(1489)] = 29466, + [SMALL_STATE(1490)] = 29537, + [SMALL_STATE(1491)] = 29608, + [SMALL_STATE(1492)] = 29679, + [SMALL_STATE(1493)] = 29750, + [SMALL_STATE(1494)] = 29821, + [SMALL_STATE(1495)] = 29892, + [SMALL_STATE(1496)] = 29963, + [SMALL_STATE(1497)] = 30034, + [SMALL_STATE(1498)] = 30105, + [SMALL_STATE(1499)] = 30176, + [SMALL_STATE(1500)] = 30247, + [SMALL_STATE(1501)] = 30318, + [SMALL_STATE(1502)] = 30389, + [SMALL_STATE(1503)] = 30460, + [SMALL_STATE(1504)] = 30531, + [SMALL_STATE(1505)] = 30602, + [SMALL_STATE(1506)] = 30673, + [SMALL_STATE(1507)] = 30744, + [SMALL_STATE(1508)] = 30815, + [SMALL_STATE(1509)] = 30886, + [SMALL_STATE(1510)] = 30957, + [SMALL_STATE(1511)] = 31028, + [SMALL_STATE(1512)] = 31115, + [SMALL_STATE(1513)] = 31208, + [SMALL_STATE(1514)] = 31315, + [SMALL_STATE(1515)] = 31392, + [SMALL_STATE(1516)] = 31475, + [SMALL_STATE(1517)] = 31554, + [SMALL_STATE(1518)] = 31665, + [SMALL_STATE(1519)] = 31776, + [SMALL_STATE(1520)] = 31885, + [SMALL_STATE(1521)] = 31990, + [SMALL_STATE(1522)] = 32093, + [SMALL_STATE(1523)] = 32192, + [SMALL_STATE(1524)] = 32289, + [SMALL_STATE(1525)] = 32384, + [SMALL_STATE(1526)] = 32475, + [SMALL_STATE(1527)] = 32560, + [SMALL_STATE(1528)] = 32645, + [SMALL_STATE(1529)] = 32718, + [SMALL_STATE(1530)] = 32791, + [SMALL_STATE(1531)] = 32864, + [SMALL_STATE(1532)] = 32937, + [SMALL_STATE(1533)] = 33010, + [SMALL_STATE(1534)] = 33083, + [SMALL_STATE(1535)] = 33156, + [SMALL_STATE(1536)] = 33229, + [SMALL_STATE(1537)] = 33300, + [SMALL_STATE(1538)] = 33371, + [SMALL_STATE(1539)] = 33442, + [SMALL_STATE(1540)] = 33515, + [SMALL_STATE(1541)] = 33588, + [SMALL_STATE(1542)] = 33661, + [SMALL_STATE(1543)] = 33734, + [SMALL_STATE(1544)] = 33807, + [SMALL_STATE(1545)] = 33880, + [SMALL_STATE(1546)] = 33953, + [SMALL_STATE(1547)] = 34026, + [SMALL_STATE(1548)] = 34099, + [SMALL_STATE(1549)] = 34172, + [SMALL_STATE(1550)] = 34245, + [SMALL_STATE(1551)] = 34318, + [SMALL_STATE(1552)] = 34389, + [SMALL_STATE(1553)] = 34460, + [SMALL_STATE(1554)] = 34531, + [SMALL_STATE(1555)] = 34602, + [SMALL_STATE(1556)] = 34673, + [SMALL_STATE(1557)] = 34744, + [SMALL_STATE(1558)] = 34815, + [SMALL_STATE(1559)] = 34886, + [SMALL_STATE(1560)] = 34957, + [SMALL_STATE(1561)] = 35028, + [SMALL_STATE(1562)] = 35099, [SMALL_STATE(1563)] = 35170, [SMALL_STATE(1564)] = 35241, [SMALL_STATE(1565)] = 35312, @@ -425559,114 +425325,114 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1568)] = 35525, [SMALL_STATE(1569)] = 35596, [SMALL_STATE(1570)] = 35667, - [SMALL_STATE(1571)] = 35739, - [SMALL_STATE(1572)] = 35809, - [SMALL_STATE(1573)] = 35883, - [SMALL_STATE(1574)] = 35953, - [SMALL_STATE(1575)] = 36027, - [SMALL_STATE(1576)] = 36101, - [SMALL_STATE(1577)] = 36173, - [SMALL_STATE(1578)] = 36285, - [SMALL_STATE(1579)] = 36405, - [SMALL_STATE(1580)] = 36533, - [SMALL_STATE(1581)] = 36645, - [SMALL_STATE(1582)] = 36721, - [SMALL_STATE(1583)] = 36833, - [SMALL_STATE(1584)] = 36909, - [SMALL_STATE(1585)] = 36979, - [SMALL_STATE(1586)] = 37049, - [SMALL_STATE(1587)] = 37119, - [SMALL_STATE(1588)] = 37189, - [SMALL_STATE(1589)] = 37259, - [SMALL_STATE(1590)] = 37387, - [SMALL_STATE(1591)] = 37457, - [SMALL_STATE(1592)] = 37527, - [SMALL_STATE(1593)] = 37597, - [SMALL_STATE(1594)] = 37667, - [SMALL_STATE(1595)] = 37737, - [SMALL_STATE(1596)] = 37811, - [SMALL_STATE(1597)] = 37885, - [SMALL_STATE(1598)] = 37955, - [SMALL_STATE(1599)] = 38029, - [SMALL_STATE(1600)] = 38099, - [SMALL_STATE(1601)] = 38169, - [SMALL_STATE(1602)] = 38239, - [SMALL_STATE(1603)] = 38309, - [SMALL_STATE(1604)] = 38379, - [SMALL_STATE(1605)] = 38449, - [SMALL_STATE(1606)] = 38519, - [SMALL_STATE(1607)] = 38589, - [SMALL_STATE(1608)] = 38659, - [SMALL_STATE(1609)] = 38729, - [SMALL_STATE(1610)] = 38799, - [SMALL_STATE(1611)] = 38869, - [SMALL_STATE(1612)] = 38943, - [SMALL_STATE(1613)] = 39017, - [SMALL_STATE(1614)] = 39089, - [SMALL_STATE(1615)] = 39161, - [SMALL_STATE(1616)] = 39235, - [SMALL_STATE(1617)] = 39305, - [SMALL_STATE(1618)] = 39375, - [SMALL_STATE(1619)] = 39445, - [SMALL_STATE(1620)] = 39515, - [SMALL_STATE(1621)] = 39635, - [SMALL_STATE(1622)] = 39705, - [SMALL_STATE(1623)] = 39775, - [SMALL_STATE(1624)] = 39845, - [SMALL_STATE(1625)] = 39915, - [SMALL_STATE(1626)] = 39985, - [SMALL_STATE(1627)] = 40055, - [SMALL_STATE(1628)] = 40125, - [SMALL_STATE(1629)] = 40195, - [SMALL_STATE(1630)] = 40265, - [SMALL_STATE(1631)] = 40335, - [SMALL_STATE(1632)] = 40405, - [SMALL_STATE(1633)] = 40477, - [SMALL_STATE(1634)] = 40549, - [SMALL_STATE(1635)] = 40621, - [SMALL_STATE(1636)] = 40693, - [SMALL_STATE(1637)] = 40765, - [SMALL_STATE(1638)] = 40835, - [SMALL_STATE(1639)] = 40905, - [SMALL_STATE(1640)] = 40975, - [SMALL_STATE(1641)] = 41045, - [SMALL_STATE(1642)] = 41115, - [SMALL_STATE(1643)] = 41185, - [SMALL_STATE(1644)] = 41255, - [SMALL_STATE(1645)] = 41325, - [SMALL_STATE(1646)] = 41397, - [SMALL_STATE(1647)] = 41467, - [SMALL_STATE(1648)] = 41539, - [SMALL_STATE(1649)] = 41611, - [SMALL_STATE(1650)] = 41681, - [SMALL_STATE(1651)] = 41753, - [SMALL_STATE(1652)] = 41825, - [SMALL_STATE(1653)] = 41897, - [SMALL_STATE(1654)] = 41969, - [SMALL_STATE(1655)] = 42041, - [SMALL_STATE(1656)] = 42113, - [SMALL_STATE(1657)] = 42183, - [SMALL_STATE(1658)] = 42253, - [SMALL_STATE(1659)] = 42325, - [SMALL_STATE(1660)] = 42397, - [SMALL_STATE(1661)] = 42467, - [SMALL_STATE(1662)] = 42537, - [SMALL_STATE(1663)] = 42609, - [SMALL_STATE(1664)] = 42681, - [SMALL_STATE(1665)] = 42751, - [SMALL_STATE(1666)] = 42821, - [SMALL_STATE(1667)] = 42891, - [SMALL_STATE(1668)] = 42961, - [SMALL_STATE(1669)] = 43031, - [SMALL_STATE(1670)] = 43103, - [SMALL_STATE(1671)] = 43173, - [SMALL_STATE(1672)] = 43243, - [SMALL_STATE(1673)] = 43313, - [SMALL_STATE(1674)] = 43385, - [SMALL_STATE(1675)] = 43455, - [SMALL_STATE(1676)] = 43525, - [SMALL_STATE(1677)] = 43595, - [SMALL_STATE(1678)] = 43665, + [SMALL_STATE(1571)] = 35751, + [SMALL_STATE(1572)] = 35821, + [SMALL_STATE(1573)] = 35905, + [SMALL_STATE(1574)] = 35981, + [SMALL_STATE(1575)] = 36067, + [SMALL_STATE(1576)] = 36159, + [SMALL_STATE(1577)] = 36265, + [SMALL_STATE(1578)] = 36341, + [SMALL_STATE(1579)] = 36415, + [SMALL_STATE(1580)] = 36489, + [SMALL_STATE(1581)] = 36563, + [SMALL_STATE(1582)] = 36645, + [SMALL_STATE(1583)] = 36723, + [SMALL_STATE(1584)] = 36833, + [SMALL_STATE(1585)] = 36943, + [SMALL_STATE(1586)] = 37051, + [SMALL_STATE(1587)] = 37121, + [SMALL_STATE(1588)] = 37191, + [SMALL_STATE(1589)] = 37295, + [SMALL_STATE(1590)] = 37397, + [SMALL_STATE(1591)] = 37495, + [SMALL_STATE(1592)] = 37591, + [SMALL_STATE(1593)] = 37685, + [SMALL_STATE(1594)] = 37775, + [SMALL_STATE(1595)] = 37845, + [SMALL_STATE(1596)] = 37917, + [SMALL_STATE(1597)] = 37989, + [SMALL_STATE(1598)] = 38059, + [SMALL_STATE(1599)] = 38135, + [SMALL_STATE(1600)] = 38205, + [SMALL_STATE(1601)] = 38275, + [SMALL_STATE(1602)] = 38345, + [SMALL_STATE(1603)] = 38415, + [SMALL_STATE(1604)] = 38485, + [SMALL_STATE(1605)] = 38557, + [SMALL_STATE(1606)] = 38627, + [SMALL_STATE(1607)] = 38697, + [SMALL_STATE(1608)] = 38767, + [SMALL_STATE(1609)] = 38837, + [SMALL_STATE(1610)] = 38907, + [SMALL_STATE(1611)] = 38977, + [SMALL_STATE(1612)] = 39047, + [SMALL_STATE(1613)] = 39117, + [SMALL_STATE(1614)] = 39187, + [SMALL_STATE(1615)] = 39257, + [SMALL_STATE(1616)] = 39327, + [SMALL_STATE(1617)] = 39397, + [SMALL_STATE(1618)] = 39467, + [SMALL_STATE(1619)] = 39537, + [SMALL_STATE(1620)] = 39607, + [SMALL_STATE(1621)] = 39677, + [SMALL_STATE(1622)] = 39747, + [SMALL_STATE(1623)] = 39817, + [SMALL_STATE(1624)] = 39887, + [SMALL_STATE(1625)] = 39957, + [SMALL_STATE(1626)] = 40027, + [SMALL_STATE(1627)] = 40097, + [SMALL_STATE(1628)] = 40167, + [SMALL_STATE(1629)] = 40237, + [SMALL_STATE(1630)] = 40307, + [SMALL_STATE(1631)] = 40377, + [SMALL_STATE(1632)] = 40447, + [SMALL_STATE(1633)] = 40517, + [SMALL_STATE(1634)] = 40587, + [SMALL_STATE(1635)] = 40657, + [SMALL_STATE(1636)] = 40727, + [SMALL_STATE(1637)] = 40797, + [SMALL_STATE(1638)] = 40867, + [SMALL_STATE(1639)] = 40937, + [SMALL_STATE(1640)] = 41007, + [SMALL_STATE(1641)] = 41077, + [SMALL_STATE(1642)] = 41147, + [SMALL_STATE(1643)] = 41217, + [SMALL_STATE(1644)] = 41287, + [SMALL_STATE(1645)] = 41357, + [SMALL_STATE(1646)] = 41427, + [SMALL_STATE(1647)] = 41497, + [SMALL_STATE(1648)] = 41567, + [SMALL_STATE(1649)] = 41637, + [SMALL_STATE(1650)] = 41707, + [SMALL_STATE(1651)] = 41777, + [SMALL_STATE(1652)] = 41847, + [SMALL_STATE(1653)] = 41917, + [SMALL_STATE(1654)] = 41987, + [SMALL_STATE(1655)] = 42057, + [SMALL_STATE(1656)] = 42127, + [SMALL_STATE(1657)] = 42197, + [SMALL_STATE(1658)] = 42267, + [SMALL_STATE(1659)] = 42337, + [SMALL_STATE(1660)] = 42407, + [SMALL_STATE(1661)] = 42477, + [SMALL_STATE(1662)] = 42547, + [SMALL_STATE(1663)] = 42617, + [SMALL_STATE(1664)] = 42687, + [SMALL_STATE(1665)] = 42757, + [SMALL_STATE(1666)] = 42827, + [SMALL_STATE(1667)] = 42897, + [SMALL_STATE(1668)] = 42967, + [SMALL_STATE(1669)] = 43037, + [SMALL_STATE(1670)] = 43107, + [SMALL_STATE(1671)] = 43177, + [SMALL_STATE(1672)] = 43247, + [SMALL_STATE(1673)] = 43317, + [SMALL_STATE(1674)] = 43387, + [SMALL_STATE(1675)] = 43457, + [SMALL_STATE(1676)] = 43527, + [SMALL_STATE(1677)] = 43597, + [SMALL_STATE(1678)] = 43667, [SMALL_STATE(1679)] = 43737, [SMALL_STATE(1680)] = 43807, [SMALL_STATE(1681)] = 43877, @@ -425689,2858 +425455,2858 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1698)] = 45067, [SMALL_STATE(1699)] = 45137, [SMALL_STATE(1700)] = 45207, - [SMALL_STATE(1701)] = 45279, - [SMALL_STATE(1702)] = 45349, - [SMALL_STATE(1703)] = 45419, - [SMALL_STATE(1704)] = 45489, - [SMALL_STATE(1705)] = 45559, - [SMALL_STATE(1706)] = 45629, - [SMALL_STATE(1707)] = 45699, + [SMALL_STATE(1701)] = 45277, + [SMALL_STATE(1702)] = 45347, + [SMALL_STATE(1703)] = 45417, + [SMALL_STATE(1704)] = 45487, + [SMALL_STATE(1705)] = 45557, + [SMALL_STATE(1706)] = 45627, + [SMALL_STATE(1707)] = 45697, [SMALL_STATE(1708)] = 45769, - [SMALL_STATE(1709)] = 45839, - [SMALL_STATE(1710)] = 45909, - [SMALL_STATE(1711)] = 45979, - [SMALL_STATE(1712)] = 46049, - [SMALL_STATE(1713)] = 46119, - [SMALL_STATE(1714)] = 46189, - [SMALL_STATE(1715)] = 46259, - [SMALL_STATE(1716)] = 46329, - [SMALL_STATE(1717)] = 46399, - [SMALL_STATE(1718)] = 46469, - [SMALL_STATE(1719)] = 46539, - [SMALL_STATE(1720)] = 46609, - [SMALL_STATE(1721)] = 46679, - [SMALL_STATE(1722)] = 46749, - [SMALL_STATE(1723)] = 46819, - [SMALL_STATE(1724)] = 46889, - [SMALL_STATE(1725)] = 46959, - [SMALL_STATE(1726)] = 47029, - [SMALL_STATE(1727)] = 47099, - [SMALL_STATE(1728)] = 47169, - [SMALL_STATE(1729)] = 47239, - [SMALL_STATE(1730)] = 47309, - [SMALL_STATE(1731)] = 47379, - [SMALL_STATE(1732)] = 47449, - [SMALL_STATE(1733)] = 47519, - [SMALL_STATE(1734)] = 47589, - [SMALL_STATE(1735)] = 47659, - [SMALL_STATE(1736)] = 47729, - [SMALL_STATE(1737)] = 47799, - [SMALL_STATE(1738)] = 47869, - [SMALL_STATE(1739)] = 47939, - [SMALL_STATE(1740)] = 48009, - [SMALL_STATE(1741)] = 48093, - [SMALL_STATE(1742)] = 48177, - [SMALL_STATE(1743)] = 48267, - [SMALL_STATE(1744)] = 48361, - [SMALL_STATE(1745)] = 48457, - [SMALL_STATE(1746)] = 48555, - [SMALL_STATE(1747)] = 48657, - [SMALL_STATE(1748)] = 48761, - [SMALL_STATE(1749)] = 48869, - [SMALL_STATE(1750)] = 48979, - [SMALL_STATE(1751)] = 49089, - [SMALL_STATE(1752)] = 49167, - [SMALL_STATE(1753)] = 49249, - [SMALL_STATE(1754)] = 49325, - [SMALL_STATE(1755)] = 49431, - [SMALL_STATE(1756)] = 49523, - [SMALL_STATE(1757)] = 49609, - [SMALL_STATE(1758)] = 49679, - [SMALL_STATE(1759)] = 49749, - [SMALL_STATE(1760)] = 49819, - [SMALL_STATE(1761)] = 49889, - [SMALL_STATE(1762)] = 49959, - [SMALL_STATE(1763)] = 50029, - [SMALL_STATE(1764)] = 50099, - [SMALL_STATE(1765)] = 50169, - [SMALL_STATE(1766)] = 50239, - [SMALL_STATE(1767)] = 50309, - [SMALL_STATE(1768)] = 50379, - [SMALL_STATE(1769)] = 50449, - [SMALL_STATE(1770)] = 50519, - [SMALL_STATE(1771)] = 50589, - [SMALL_STATE(1772)] = 50659, - [SMALL_STATE(1773)] = 50729, - [SMALL_STATE(1774)] = 50799, - [SMALL_STATE(1775)] = 50869, - [SMALL_STATE(1776)] = 50939, - [SMALL_STATE(1777)] = 51009, - [SMALL_STATE(1778)] = 51079, - [SMALL_STATE(1779)] = 51149, - [SMALL_STATE(1780)] = 51219, - [SMALL_STATE(1781)] = 51289, - [SMALL_STATE(1782)] = 51359, - [SMALL_STATE(1783)] = 51429, - [SMALL_STATE(1784)] = 51499, - [SMALL_STATE(1785)] = 51569, - [SMALL_STATE(1786)] = 51639, - [SMALL_STATE(1787)] = 51709, - [SMALL_STATE(1788)] = 51779, - [SMALL_STATE(1789)] = 51849, - [SMALL_STATE(1790)] = 51919, - [SMALL_STATE(1791)] = 51989, - [SMALL_STATE(1792)] = 52059, - [SMALL_STATE(1793)] = 52129, - [SMALL_STATE(1794)] = 52199, + [SMALL_STATE(1709)] = 45841, + [SMALL_STATE(1710)] = 45911, + [SMALL_STATE(1711)] = 45981, + [SMALL_STATE(1712)] = 46051, + [SMALL_STATE(1713)] = 46121, + [SMALL_STATE(1714)] = 46191, + [SMALL_STATE(1715)] = 46261, + [SMALL_STATE(1716)] = 46331, + [SMALL_STATE(1717)] = 46401, + [SMALL_STATE(1718)] = 46471, + [SMALL_STATE(1719)] = 46541, + [SMALL_STATE(1720)] = 46669, + [SMALL_STATE(1721)] = 46739, + [SMALL_STATE(1722)] = 46809, + [SMALL_STATE(1723)] = 46879, + [SMALL_STATE(1724)] = 46949, + [SMALL_STATE(1725)] = 47019, + [SMALL_STATE(1726)] = 47089, + [SMALL_STATE(1727)] = 47159, + [SMALL_STATE(1728)] = 47229, + [SMALL_STATE(1729)] = 47299, + [SMALL_STATE(1730)] = 47369, + [SMALL_STATE(1731)] = 47439, + [SMALL_STATE(1732)] = 47509, + [SMALL_STATE(1733)] = 47621, + [SMALL_STATE(1734)] = 47691, + [SMALL_STATE(1735)] = 47761, + [SMALL_STATE(1736)] = 47831, + [SMALL_STATE(1737)] = 47901, + [SMALL_STATE(1738)] = 47971, + [SMALL_STATE(1739)] = 48041, + [SMALL_STATE(1740)] = 48111, + [SMALL_STATE(1741)] = 48181, + [SMALL_STATE(1742)] = 48251, + [SMALL_STATE(1743)] = 48321, + [SMALL_STATE(1744)] = 48391, + [SMALL_STATE(1745)] = 48461, + [SMALL_STATE(1746)] = 48531, + [SMALL_STATE(1747)] = 48603, + [SMALL_STATE(1748)] = 48675, + [SMALL_STATE(1749)] = 48745, + [SMALL_STATE(1750)] = 48815, + [SMALL_STATE(1751)] = 48885, + [SMALL_STATE(1752)] = 48955, + [SMALL_STATE(1753)] = 49025, + [SMALL_STATE(1754)] = 49095, + [SMALL_STATE(1755)] = 49165, + [SMALL_STATE(1756)] = 49235, + [SMALL_STATE(1757)] = 49305, + [SMALL_STATE(1758)] = 49375, + [SMALL_STATE(1759)] = 49445, + [SMALL_STATE(1760)] = 49515, + [SMALL_STATE(1761)] = 49587, + [SMALL_STATE(1762)] = 49657, + [SMALL_STATE(1763)] = 49729, + [SMALL_STATE(1764)] = 49801, + [SMALL_STATE(1765)] = 49873, + [SMALL_STATE(1766)] = 49993, + [SMALL_STATE(1767)] = 50113, + [SMALL_STATE(1768)] = 50185, + [SMALL_STATE(1769)] = 50297, + [SMALL_STATE(1770)] = 50367, + [SMALL_STATE(1771)] = 50437, + [SMALL_STATE(1772)] = 50549, + [SMALL_STATE(1773)] = 50621, + [SMALL_STATE(1774)] = 50749, + [SMALL_STATE(1775)] = 50821, + [SMALL_STATE(1776)] = 50893, + [SMALL_STATE(1777)] = 50965, + [SMALL_STATE(1778)] = 51037, + [SMALL_STATE(1779)] = 51109, + [SMALL_STATE(1780)] = 51181, + [SMALL_STATE(1781)] = 51253, + [SMALL_STATE(1782)] = 51325, + [SMALL_STATE(1783)] = 51397, + [SMALL_STATE(1784)] = 51469, + [SMALL_STATE(1785)] = 51541, + [SMALL_STATE(1786)] = 51611, + [SMALL_STATE(1787)] = 51683, + [SMALL_STATE(1788)] = 51757, + [SMALL_STATE(1789)] = 51831, + [SMALL_STATE(1790)] = 51905, + [SMALL_STATE(1791)] = 51979, + [SMALL_STATE(1792)] = 52053, + [SMALL_STATE(1793)] = 52127, + [SMALL_STATE(1794)] = 52197, [SMALL_STATE(1795)] = 52269, [SMALL_STATE(1796)] = 52338, - [SMALL_STATE(1797)] = 52409, - [SMALL_STATE(1798)] = 52478, - [SMALL_STATE(1799)] = 52547, - [SMALL_STATE(1800)] = 52616, - [SMALL_STATE(1801)] = 52741, - [SMALL_STATE(1802)] = 52810, - [SMALL_STATE(1803)] = 52921, - [SMALL_STATE(1804)] = 53046, - [SMALL_STATE(1805)] = 53115, - [SMALL_STATE(1806)] = 53184, - [SMALL_STATE(1807)] = 53253, - [SMALL_STATE(1808)] = 53322, - [SMALL_STATE(1809)] = 53391, - [SMALL_STATE(1810)] = 53460, - [SMALL_STATE(1811)] = 53529, - [SMALL_STATE(1812)] = 53598, - [SMALL_STATE(1813)] = 53667, - [SMALL_STATE(1814)] = 53736, - [SMALL_STATE(1815)] = 53805, - [SMALL_STATE(1816)] = 53874, - [SMALL_STATE(1817)] = 53943, - [SMALL_STATE(1818)] = 54012, - [SMALL_STATE(1819)] = 54081, - [SMALL_STATE(1820)] = 54150, - [SMALL_STATE(1821)] = 54275, - [SMALL_STATE(1822)] = 54400, - [SMALL_STATE(1823)] = 54475, - [SMALL_STATE(1824)] = 54544, - [SMALL_STATE(1825)] = 54619, - [SMALL_STATE(1826)] = 54694, - [SMALL_STATE(1827)] = 54819, - [SMALL_STATE(1828)] = 54894, - [SMALL_STATE(1829)] = 55005, - [SMALL_STATE(1830)] = 55080, - [SMALL_STATE(1831)] = 55149, - [SMALL_STATE(1832)] = 55218, - [SMALL_STATE(1833)] = 55287, - [SMALL_STATE(1834)] = 55356, - [SMALL_STATE(1835)] = 55425, - [SMALL_STATE(1836)] = 55494, - [SMALL_STATE(1837)] = 55563, - [SMALL_STATE(1838)] = 55688, - [SMALL_STATE(1839)] = 55757, - [SMALL_STATE(1840)] = 55826, - [SMALL_STATE(1841)] = 55895, - [SMALL_STATE(1842)] = 55964, - [SMALL_STATE(1843)] = 56033, - [SMALL_STATE(1844)] = 56158, - [SMALL_STATE(1845)] = 56227, - [SMALL_STATE(1846)] = 56296, - [SMALL_STATE(1847)] = 56365, - [SMALL_STATE(1848)] = 56434, - [SMALL_STATE(1849)] = 56503, - [SMALL_STATE(1850)] = 56572, - [SMALL_STATE(1851)] = 56641, - [SMALL_STATE(1852)] = 56710, - [SMALL_STATE(1853)] = 56835, - [SMALL_STATE(1854)] = 56904, - [SMALL_STATE(1855)] = 56987, - [SMALL_STATE(1856)] = 57112, - [SMALL_STATE(1857)] = 57185, - [SMALL_STATE(1858)] = 57310, - [SMALL_STATE(1859)] = 57383, - [SMALL_STATE(1860)] = 57466, - [SMALL_STATE(1861)] = 57535, - [SMALL_STATE(1862)] = 57624, - [SMALL_STATE(1863)] = 57749, - [SMALL_STATE(1864)] = 57822, - [SMALL_STATE(1865)] = 57947, - [SMALL_STATE(1866)] = 58072, - [SMALL_STATE(1867)] = 58197, - [SMALL_STATE(1868)] = 58322, - [SMALL_STATE(1869)] = 58447, - [SMALL_STATE(1870)] = 58540, - [SMALL_STATE(1871)] = 58635, - [SMALL_STATE(1872)] = 58760, - [SMALL_STATE(1873)] = 58885, - [SMALL_STATE(1874)] = 59010, - [SMALL_STATE(1875)] = 59135, - [SMALL_STATE(1876)] = 59232, - [SMALL_STATE(1877)] = 59301, - [SMALL_STATE(1878)] = 59426, - [SMALL_STATE(1879)] = 59551, - [SMALL_STATE(1880)] = 59620, - [SMALL_STATE(1881)] = 59689, - [SMALL_STATE(1882)] = 59758, - [SMALL_STATE(1883)] = 59827, - [SMALL_STATE(1884)] = 59896, - [SMALL_STATE(1885)] = 59965, - [SMALL_STATE(1886)] = 60034, - [SMALL_STATE(1887)] = 60103, - [SMALL_STATE(1888)] = 60172, - [SMALL_STATE(1889)] = 60241, - [SMALL_STATE(1890)] = 60366, - [SMALL_STATE(1891)] = 60491, - [SMALL_STATE(1892)] = 60560, - [SMALL_STATE(1893)] = 60629, - [SMALL_STATE(1894)] = 60698, - [SMALL_STATE(1895)] = 60767, - [SMALL_STATE(1896)] = 60836, - [SMALL_STATE(1897)] = 60905, - [SMALL_STATE(1898)] = 60974, - [SMALL_STATE(1899)] = 61043, - [SMALL_STATE(1900)] = 61112, - [SMALL_STATE(1901)] = 61181, - [SMALL_STATE(1902)] = 61250, - [SMALL_STATE(1903)] = 61319, - [SMALL_STATE(1904)] = 61388, - [SMALL_STATE(1905)] = 61457, - [SMALL_STATE(1906)] = 61526, - [SMALL_STATE(1907)] = 61595, - [SMALL_STATE(1908)] = 61720, - [SMALL_STATE(1909)] = 61789, - [SMALL_STATE(1910)] = 61858, - [SMALL_STATE(1911)] = 61927, - [SMALL_STATE(1912)] = 61996, - [SMALL_STATE(1913)] = 62065, - [SMALL_STATE(1914)] = 62134, - [SMALL_STATE(1915)] = 62203, - [SMALL_STATE(1916)] = 62272, - [SMALL_STATE(1917)] = 62341, - [SMALL_STATE(1918)] = 62410, - [SMALL_STATE(1919)] = 62479, - [SMALL_STATE(1920)] = 62604, - [SMALL_STATE(1921)] = 62729, - [SMALL_STATE(1922)] = 62798, - [SMALL_STATE(1923)] = 62923, - [SMALL_STATE(1924)] = 63048, - [SMALL_STATE(1925)] = 63173, - [SMALL_STATE(1926)] = 63242, - [SMALL_STATE(1927)] = 63311, - [SMALL_STATE(1928)] = 63380, - [SMALL_STATE(1929)] = 63449, - [SMALL_STATE(1930)] = 63518, - [SMALL_STATE(1931)] = 63587, - [SMALL_STATE(1932)] = 63712, - [SMALL_STATE(1933)] = 63781, - [SMALL_STATE(1934)] = 63850, - [SMALL_STATE(1935)] = 63919, - [SMALL_STATE(1936)] = 63988, - [SMALL_STATE(1937)] = 64057, - [SMALL_STATE(1938)] = 64126, - [SMALL_STATE(1939)] = 64251, - [SMALL_STATE(1940)] = 64320, - [SMALL_STATE(1941)] = 64389, - [SMALL_STATE(1942)] = 64458, - [SMALL_STATE(1943)] = 64531, - [SMALL_STATE(1944)] = 64604, - [SMALL_STATE(1945)] = 64677, - [SMALL_STATE(1946)] = 64746, - [SMALL_STATE(1947)] = 64815, - [SMALL_STATE(1948)] = 64884, - [SMALL_STATE(1949)] = 64953, - [SMALL_STATE(1950)] = 65022, - [SMALL_STATE(1951)] = 65091, - [SMALL_STATE(1952)] = 65160, - [SMALL_STATE(1953)] = 65229, - [SMALL_STATE(1954)] = 65298, - [SMALL_STATE(1955)] = 65367, - [SMALL_STATE(1956)] = 65436, - [SMALL_STATE(1957)] = 65505, - [SMALL_STATE(1958)] = 65574, - [SMALL_STATE(1959)] = 65643, - [SMALL_STATE(1960)] = 65712, - [SMALL_STATE(1961)] = 65781, - [SMALL_STATE(1962)] = 65850, - [SMALL_STATE(1963)] = 65919, - [SMALL_STATE(1964)] = 65988, - [SMALL_STATE(1965)] = 66057, - [SMALL_STATE(1966)] = 66126, - [SMALL_STATE(1967)] = 66195, - [SMALL_STATE(1968)] = 66264, - [SMALL_STATE(1969)] = 66333, - [SMALL_STATE(1970)] = 66402, - [SMALL_STATE(1971)] = 66471, - [SMALL_STATE(1972)] = 66540, - [SMALL_STATE(1973)] = 66609, - [SMALL_STATE(1974)] = 66678, - [SMALL_STATE(1975)] = 66747, - [SMALL_STATE(1976)] = 66816, - [SMALL_STATE(1977)] = 66885, - [SMALL_STATE(1978)] = 66954, - [SMALL_STATE(1979)] = 67023, - [SMALL_STATE(1980)] = 67092, - [SMALL_STATE(1981)] = 67161, - [SMALL_STATE(1982)] = 67230, - [SMALL_STATE(1983)] = 67299, - [SMALL_STATE(1984)] = 67368, - [SMALL_STATE(1985)] = 67493, - [SMALL_STATE(1986)] = 67564, - [SMALL_STATE(1987)] = 67635, - [SMALL_STATE(1988)] = 67704, - [SMALL_STATE(1989)] = 67781, - [SMALL_STATE(1990)] = 67850, - [SMALL_STATE(1991)] = 67919, - [SMALL_STATE(1992)] = 67988, - [SMALL_STATE(1993)] = 68057, - [SMALL_STATE(1994)] = 68126, - [SMALL_STATE(1995)] = 68195, - [SMALL_STATE(1996)] = 68264, - [SMALL_STATE(1997)] = 68333, - [SMALL_STATE(1998)] = 68402, - [SMALL_STATE(1999)] = 68471, - [SMALL_STATE(2000)] = 68540, - [SMALL_STATE(2001)] = 68609, - [SMALL_STATE(2002)] = 68678, - [SMALL_STATE(2003)] = 68747, - [SMALL_STATE(2004)] = 68816, - [SMALL_STATE(2005)] = 68885, - [SMALL_STATE(2006)] = 68956, - [SMALL_STATE(2007)] = 69025, - [SMALL_STATE(2008)] = 69094, - [SMALL_STATE(2009)] = 69165, - [SMALL_STATE(2010)] = 69234, - [SMALL_STATE(2011)] = 69303, - [SMALL_STATE(2012)] = 69374, - [SMALL_STATE(2013)] = 69445, - [SMALL_STATE(2014)] = 69570, - [SMALL_STATE(2015)] = 69639, - [SMALL_STATE(2016)] = 69708, - [SMALL_STATE(2017)] = 69777, - [SMALL_STATE(2018)] = 69846, - [SMALL_STATE(2019)] = 69971, - [SMALL_STATE(2020)] = 70096, - [SMALL_STATE(2021)] = 70165, - [SMALL_STATE(2022)] = 70236, - [SMALL_STATE(2023)] = 70307, - [SMALL_STATE(2024)] = 70378, - [SMALL_STATE(2025)] = 70447, - [SMALL_STATE(2026)] = 70516, - [SMALL_STATE(2027)] = 70585, - [SMALL_STATE(2028)] = 70654, - [SMALL_STATE(2029)] = 70723, - [SMALL_STATE(2030)] = 70792, - [SMALL_STATE(2031)] = 70861, - [SMALL_STATE(2032)] = 70930, - [SMALL_STATE(2033)] = 70999, - [SMALL_STATE(2034)] = 71068, - [SMALL_STATE(2035)] = 71137, - [SMALL_STATE(2036)] = 71206, - [SMALL_STATE(2037)] = 71275, - [SMALL_STATE(2038)] = 71360, - [SMALL_STATE(2039)] = 71429, - [SMALL_STATE(2040)] = 71498, - [SMALL_STATE(2041)] = 71567, - [SMALL_STATE(2042)] = 71636, - [SMALL_STATE(2043)] = 71705, - [SMALL_STATE(2044)] = 71774, - [SMALL_STATE(2045)] = 71843, - [SMALL_STATE(2046)] = 71912, - [SMALL_STATE(2047)] = 71983, - [SMALL_STATE(2048)] = 72054, - [SMALL_STATE(2049)] = 72125, - [SMALL_STATE(2050)] = 72196, - [SMALL_STATE(2051)] = 72267, - [SMALL_STATE(2052)] = 72338, - [SMALL_STATE(2053)] = 72409, - [SMALL_STATE(2054)] = 72480, - [SMALL_STATE(2055)] = 72551, - [SMALL_STATE(2056)] = 72622, - [SMALL_STATE(2057)] = 72693, - [SMALL_STATE(2058)] = 72764, - [SMALL_STATE(2059)] = 72835, - [SMALL_STATE(2060)] = 72906, - [SMALL_STATE(2061)] = 72977, - [SMALL_STATE(2062)] = 73048, - [SMALL_STATE(2063)] = 73119, - [SMALL_STATE(2064)] = 73188, - [SMALL_STATE(2065)] = 73257, - [SMALL_STATE(2066)] = 73326, - [SMALL_STATE(2067)] = 73397, - [SMALL_STATE(2068)] = 73468, - [SMALL_STATE(2069)] = 73539, - [SMALL_STATE(2070)] = 73608, - [SMALL_STATE(2071)] = 73709, - [SMALL_STATE(2072)] = 73812, - [SMALL_STATE(2073)] = 73881, - [SMALL_STATE(2074)] = 73952, - [SMALL_STATE(2075)] = 74023, - [SMALL_STATE(2076)] = 74092, - [SMALL_STATE(2077)] = 74161, - [SMALL_STATE(2078)] = 74232, - [SMALL_STATE(2079)] = 74303, - [SMALL_STATE(2080)] = 74374, - [SMALL_STATE(2081)] = 74445, - [SMALL_STATE(2082)] = 74516, - [SMALL_STATE(2083)] = 74587, - [SMALL_STATE(2084)] = 74658, - [SMALL_STATE(2085)] = 74729, - [SMALL_STATE(2086)] = 74800, - [SMALL_STATE(2087)] = 74869, - [SMALL_STATE(2088)] = 74976, - [SMALL_STATE(2089)] = 75085, - [SMALL_STATE(2090)] = 75154, - [SMALL_STATE(2091)] = 75223, - [SMALL_STATE(2092)] = 75294, - [SMALL_STATE(2093)] = 75363, - [SMALL_STATE(2094)] = 75432, - [SMALL_STATE(2095)] = 75501, - [SMALL_STATE(2096)] = 75610, - [SMALL_STATE(2097)] = 75679, - [SMALL_STATE(2098)] = 75748, - [SMALL_STATE(2099)] = 75817, - [SMALL_STATE(2100)] = 75888, - [SMALL_STATE(2101)] = 75959, - [SMALL_STATE(2102)] = 76028, - [SMALL_STATE(2103)] = 76099, - [SMALL_STATE(2104)] = 76180, - [SMALL_STATE(2105)] = 76249, - [SMALL_STATE(2106)] = 76318, - [SMALL_STATE(2107)] = 76387, - [SMALL_STATE(2108)] = 76456, - [SMALL_STATE(2109)] = 76525, - [SMALL_STATE(2110)] = 76594, - [SMALL_STATE(2111)] = 76663, - [SMALL_STATE(2112)] = 76738, - [SMALL_STATE(2113)] = 76807, - [SMALL_STATE(2114)] = 76912, - [SMALL_STATE(2115)] = 76981, - [SMALL_STATE(2116)] = 77050, - [SMALL_STATE(2117)] = 77119, - [SMALL_STATE(2118)] = 77188, - [SMALL_STATE(2119)] = 77257, - [SMALL_STATE(2120)] = 77326, - [SMALL_STATE(2121)] = 77395, - [SMALL_STATE(2122)] = 77464, - [SMALL_STATE(2123)] = 77533, - [SMALL_STATE(2124)] = 77602, - [SMALL_STATE(2125)] = 77693, - [SMALL_STATE(2126)] = 77762, - [SMALL_STATE(2127)] = 77831, - [SMALL_STATE(2128)] = 77900, - [SMALL_STATE(2129)] = 77969, - [SMALL_STATE(2130)] = 78038, - [SMALL_STATE(2131)] = 78107, - [SMALL_STATE(2132)] = 78178, - [SMALL_STATE(2133)] = 78247, + [SMALL_STATE(1797)] = 52407, + [SMALL_STATE(1798)] = 52532, + [SMALL_STATE(1799)] = 52657, + [SMALL_STATE(1800)] = 52782, + [SMALL_STATE(1801)] = 52907, + [SMALL_STATE(1802)] = 53032, + [SMALL_STATE(1803)] = 53157, + [SMALL_STATE(1804)] = 53282, + [SMALL_STATE(1805)] = 53407, + [SMALL_STATE(1806)] = 53532, + [SMALL_STATE(1807)] = 53657, + [SMALL_STATE(1808)] = 53782, + [SMALL_STATE(1809)] = 53907, + [SMALL_STATE(1810)] = 54032, + [SMALL_STATE(1811)] = 54157, + [SMALL_STATE(1812)] = 54282, + [SMALL_STATE(1813)] = 54407, + [SMALL_STATE(1814)] = 54532, + [SMALL_STATE(1815)] = 54657, + [SMALL_STATE(1816)] = 54782, + [SMALL_STATE(1817)] = 54907, + [SMALL_STATE(1818)] = 55032, + [SMALL_STATE(1819)] = 55157, + [SMALL_STATE(1820)] = 55282, + [SMALL_STATE(1821)] = 55407, + [SMALL_STATE(1822)] = 55532, + [SMALL_STATE(1823)] = 55657, + [SMALL_STATE(1824)] = 55782, + [SMALL_STATE(1825)] = 55907, + [SMALL_STATE(1826)] = 56032, + [SMALL_STATE(1827)] = 56157, + [SMALL_STATE(1828)] = 56282, + [SMALL_STATE(1829)] = 56407, + [SMALL_STATE(1830)] = 56532, + [SMALL_STATE(1831)] = 56643, + [SMALL_STATE(1832)] = 56768, + [SMALL_STATE(1833)] = 56893, + [SMALL_STATE(1834)] = 57018, + [SMALL_STATE(1835)] = 57087, + [SMALL_STATE(1836)] = 57156, + [SMALL_STATE(1837)] = 57225, + [SMALL_STATE(1838)] = 57294, + [SMALL_STATE(1839)] = 57363, + [SMALL_STATE(1840)] = 57432, + [SMALL_STATE(1841)] = 57501, + [SMALL_STATE(1842)] = 57570, + [SMALL_STATE(1843)] = 57639, + [SMALL_STATE(1844)] = 57708, + [SMALL_STATE(1845)] = 57777, + [SMALL_STATE(1846)] = 57846, + [SMALL_STATE(1847)] = 57915, + [SMALL_STATE(1848)] = 57984, + [SMALL_STATE(1849)] = 58053, + [SMALL_STATE(1850)] = 58122, + [SMALL_STATE(1851)] = 58191, + [SMALL_STATE(1852)] = 58260, + [SMALL_STATE(1853)] = 58329, + [SMALL_STATE(1854)] = 58398, + [SMALL_STATE(1855)] = 58467, + [SMALL_STATE(1856)] = 58536, + [SMALL_STATE(1857)] = 58605, + [SMALL_STATE(1858)] = 58674, + [SMALL_STATE(1859)] = 58747, + [SMALL_STATE(1860)] = 58820, + [SMALL_STATE(1861)] = 58893, + [SMALL_STATE(1862)] = 58968, + [SMALL_STATE(1863)] = 59043, + [SMALL_STATE(1864)] = 59118, + [SMALL_STATE(1865)] = 59193, + [SMALL_STATE(1866)] = 59268, + [SMALL_STATE(1867)] = 59337, + [SMALL_STATE(1868)] = 59406, + [SMALL_STATE(1869)] = 59475, + [SMALL_STATE(1870)] = 59544, + [SMALL_STATE(1871)] = 59613, + [SMALL_STATE(1872)] = 59682, + [SMALL_STATE(1873)] = 59751, + [SMALL_STATE(1874)] = 59820, + [SMALL_STATE(1875)] = 59889, + [SMALL_STATE(1876)] = 59958, + [SMALL_STATE(1877)] = 60027, + [SMALL_STATE(1878)] = 60096, + [SMALL_STATE(1879)] = 60165, + [SMALL_STATE(1880)] = 60234, + [SMALL_STATE(1881)] = 60303, + [SMALL_STATE(1882)] = 60372, + [SMALL_STATE(1883)] = 60441, + [SMALL_STATE(1884)] = 60510, + [SMALL_STATE(1885)] = 60579, + [SMALL_STATE(1886)] = 60648, + [SMALL_STATE(1887)] = 60717, + [SMALL_STATE(1888)] = 60786, + [SMALL_STATE(1889)] = 60855, + [SMALL_STATE(1890)] = 60924, + [SMALL_STATE(1891)] = 60993, + [SMALL_STATE(1892)] = 61062, + [SMALL_STATE(1893)] = 61131, + [SMALL_STATE(1894)] = 61200, + [SMALL_STATE(1895)] = 61269, + [SMALL_STATE(1896)] = 61338, + [SMALL_STATE(1897)] = 61407, + [SMALL_STATE(1898)] = 61476, + [SMALL_STATE(1899)] = 61545, + [SMALL_STATE(1900)] = 61614, + [SMALL_STATE(1901)] = 61683, + [SMALL_STATE(1902)] = 61752, + [SMALL_STATE(1903)] = 61821, + [SMALL_STATE(1904)] = 61890, + [SMALL_STATE(1905)] = 61959, + [SMALL_STATE(1906)] = 62028, + [SMALL_STATE(1907)] = 62097, + [SMALL_STATE(1908)] = 62166, + [SMALL_STATE(1909)] = 62235, + [SMALL_STATE(1910)] = 62304, + [SMALL_STATE(1911)] = 62373, + [SMALL_STATE(1912)] = 62442, + [SMALL_STATE(1913)] = 62511, + [SMALL_STATE(1914)] = 62580, + [SMALL_STATE(1915)] = 62649, + [SMALL_STATE(1916)] = 62718, + [SMALL_STATE(1917)] = 62789, + [SMALL_STATE(1918)] = 62860, + [SMALL_STATE(1919)] = 62931, + [SMALL_STATE(1920)] = 63002, + [SMALL_STATE(1921)] = 63073, + [SMALL_STATE(1922)] = 63144, + [SMALL_STATE(1923)] = 63215, + [SMALL_STATE(1924)] = 63286, + [SMALL_STATE(1925)] = 63357, + [SMALL_STATE(1926)] = 63428, + [SMALL_STATE(1927)] = 63499, + [SMALL_STATE(1928)] = 63570, + [SMALL_STATE(1929)] = 63641, + [SMALL_STATE(1930)] = 63712, + [SMALL_STATE(1931)] = 63783, + [SMALL_STATE(1932)] = 63854, + [SMALL_STATE(1933)] = 63925, + [SMALL_STATE(1934)] = 63996, + [SMALL_STATE(1935)] = 64067, + [SMALL_STATE(1936)] = 64138, + [SMALL_STATE(1937)] = 64207, + [SMALL_STATE(1938)] = 64276, + [SMALL_STATE(1939)] = 64387, + [SMALL_STATE(1940)] = 64460, + [SMALL_STATE(1941)] = 64533, + [SMALL_STATE(1942)] = 64606, + [SMALL_STATE(1943)] = 64675, + [SMALL_STATE(1944)] = 64758, + [SMALL_STATE(1945)] = 64841, + [SMALL_STATE(1946)] = 64930, + [SMALL_STATE(1947)] = 65023, + [SMALL_STATE(1948)] = 65118, + [SMALL_STATE(1949)] = 65215, + [SMALL_STATE(1950)] = 65316, + [SMALL_STATE(1951)] = 65419, + [SMALL_STATE(1952)] = 65526, + [SMALL_STATE(1953)] = 65635, + [SMALL_STATE(1954)] = 65744, + [SMALL_STATE(1955)] = 65821, + [SMALL_STATE(1956)] = 65902, + [SMALL_STATE(1957)] = 65977, + [SMALL_STATE(1958)] = 66082, + [SMALL_STATE(1959)] = 66151, + [SMALL_STATE(1960)] = 66220, + [SMALL_STATE(1961)] = 66289, + [SMALL_STATE(1962)] = 66380, + [SMALL_STATE(1963)] = 66465, + [SMALL_STATE(1964)] = 66534, + [SMALL_STATE(1965)] = 66603, + [SMALL_STATE(1966)] = 66672, + [SMALL_STATE(1967)] = 66741, + [SMALL_STATE(1968)] = 66810, + [SMALL_STATE(1969)] = 66879, + [SMALL_STATE(1970)] = 66948, + [SMALL_STATE(1971)] = 67017, + [SMALL_STATE(1972)] = 67086, + [SMALL_STATE(1973)] = 67155, + [SMALL_STATE(1974)] = 67224, + [SMALL_STATE(1975)] = 67293, + [SMALL_STATE(1976)] = 67362, + [SMALL_STATE(1977)] = 67431, + [SMALL_STATE(1978)] = 67500, + [SMALL_STATE(1979)] = 67569, + [SMALL_STATE(1980)] = 67638, + [SMALL_STATE(1981)] = 67707, + [SMALL_STATE(1982)] = 67776, + [SMALL_STATE(1983)] = 67845, + [SMALL_STATE(1984)] = 67914, + [SMALL_STATE(1985)] = 67983, + [SMALL_STATE(1986)] = 68054, + [SMALL_STATE(1987)] = 68125, + [SMALL_STATE(1988)] = 68194, + [SMALL_STATE(1989)] = 68263, + [SMALL_STATE(1990)] = 68332, + [SMALL_STATE(1991)] = 68401, + [SMALL_STATE(1992)] = 68470, + [SMALL_STATE(1993)] = 68539, + [SMALL_STATE(1994)] = 68608, + [SMALL_STATE(1995)] = 68677, + [SMALL_STATE(1996)] = 68746, + [SMALL_STATE(1997)] = 68815, + [SMALL_STATE(1998)] = 68884, + [SMALL_STATE(1999)] = 68953, + [SMALL_STATE(2000)] = 69022, + [SMALL_STATE(2001)] = 69091, + [SMALL_STATE(2002)] = 69160, + [SMALL_STATE(2003)] = 69229, + [SMALL_STATE(2004)] = 69298, + [SMALL_STATE(2005)] = 69367, + [SMALL_STATE(2006)] = 69436, + [SMALL_STATE(2007)] = 69505, + [SMALL_STATE(2008)] = 69574, + [SMALL_STATE(2009)] = 69643, + [SMALL_STATE(2010)] = 69712, + [SMALL_STATE(2011)] = 69781, + [SMALL_STATE(2012)] = 69850, + [SMALL_STATE(2013)] = 69919, + [SMALL_STATE(2014)] = 69988, + [SMALL_STATE(2015)] = 70057, + [SMALL_STATE(2016)] = 70126, + [SMALL_STATE(2017)] = 70195, + [SMALL_STATE(2018)] = 70264, + [SMALL_STATE(2019)] = 70333, + [SMALL_STATE(2020)] = 70402, + [SMALL_STATE(2021)] = 70471, + [SMALL_STATE(2022)] = 70540, + [SMALL_STATE(2023)] = 70609, + [SMALL_STATE(2024)] = 70678, + [SMALL_STATE(2025)] = 70747, + [SMALL_STATE(2026)] = 70816, + [SMALL_STATE(2027)] = 70885, + [SMALL_STATE(2028)] = 70954, + [SMALL_STATE(2029)] = 71023, + [SMALL_STATE(2030)] = 71092, + [SMALL_STATE(2031)] = 71161, + [SMALL_STATE(2032)] = 71230, + [SMALL_STATE(2033)] = 71299, + [SMALL_STATE(2034)] = 71368, + [SMALL_STATE(2035)] = 71437, + [SMALL_STATE(2036)] = 71506, + [SMALL_STATE(2037)] = 71575, + [SMALL_STATE(2038)] = 71644, + [SMALL_STATE(2039)] = 71713, + [SMALL_STATE(2040)] = 71782, + [SMALL_STATE(2041)] = 71851, + [SMALL_STATE(2042)] = 71920, + [SMALL_STATE(2043)] = 71989, + [SMALL_STATE(2044)] = 72058, + [SMALL_STATE(2045)] = 72127, + [SMALL_STATE(2046)] = 72196, + [SMALL_STATE(2047)] = 72265, + [SMALL_STATE(2048)] = 72334, + [SMALL_STATE(2049)] = 72403, + [SMALL_STATE(2050)] = 72472, + [SMALL_STATE(2051)] = 72541, + [SMALL_STATE(2052)] = 72610, + [SMALL_STATE(2053)] = 72679, + [SMALL_STATE(2054)] = 72748, + [SMALL_STATE(2055)] = 72819, + [SMALL_STATE(2056)] = 72890, + [SMALL_STATE(2057)] = 72961, + [SMALL_STATE(2058)] = 73032, + [SMALL_STATE(2059)] = 73103, + [SMALL_STATE(2060)] = 73174, + [SMALL_STATE(2061)] = 73245, + [SMALL_STATE(2062)] = 73316, + [SMALL_STATE(2063)] = 73387, + [SMALL_STATE(2064)] = 73456, + [SMALL_STATE(2065)] = 73525, + [SMALL_STATE(2066)] = 73594, + [SMALL_STATE(2067)] = 73665, + [SMALL_STATE(2068)] = 73736, + [SMALL_STATE(2069)] = 73807, + [SMALL_STATE(2070)] = 73876, + [SMALL_STATE(2071)] = 73947, + [SMALL_STATE(2072)] = 74018, + [SMALL_STATE(2073)] = 74089, + [SMALL_STATE(2074)] = 74160, + [SMALL_STATE(2075)] = 74231, + [SMALL_STATE(2076)] = 74300, + [SMALL_STATE(2077)] = 74371, + [SMALL_STATE(2078)] = 74442, + [SMALL_STATE(2079)] = 74513, + [SMALL_STATE(2080)] = 74582, + [SMALL_STATE(2081)] = 74651, + [SMALL_STATE(2082)] = 74720, + [SMALL_STATE(2083)] = 74791, + [SMALL_STATE(2084)] = 74862, + [SMALL_STATE(2085)] = 74933, + [SMALL_STATE(2086)] = 75004, + [SMALL_STATE(2087)] = 75073, + [SMALL_STATE(2088)] = 75144, + [SMALL_STATE(2089)] = 75213, + [SMALL_STATE(2090)] = 75282, + [SMALL_STATE(2091)] = 75351, + [SMALL_STATE(2092)] = 75420, + [SMALL_STATE(2093)] = 75489, + [SMALL_STATE(2094)] = 75558, + [SMALL_STATE(2095)] = 75627, + [SMALL_STATE(2096)] = 75696, + [SMALL_STATE(2097)] = 75765, + [SMALL_STATE(2098)] = 75834, + [SMALL_STATE(2099)] = 75903, + [SMALL_STATE(2100)] = 75972, + [SMALL_STATE(2101)] = 76041, + [SMALL_STATE(2102)] = 76110, + [SMALL_STATE(2103)] = 76179, + [SMALL_STATE(2104)] = 76248, + [SMALL_STATE(2105)] = 76317, + [SMALL_STATE(2106)] = 76386, + [SMALL_STATE(2107)] = 76455, + [SMALL_STATE(2108)] = 76524, + [SMALL_STATE(2109)] = 76593, + [SMALL_STATE(2110)] = 76662, + [SMALL_STATE(2111)] = 76731, + [SMALL_STATE(2112)] = 76800, + [SMALL_STATE(2113)] = 76869, + [SMALL_STATE(2114)] = 76938, + [SMALL_STATE(2115)] = 77007, + [SMALL_STATE(2116)] = 77076, + [SMALL_STATE(2117)] = 77145, + [SMALL_STATE(2118)] = 77214, + [SMALL_STATE(2119)] = 77283, + [SMALL_STATE(2120)] = 77352, + [SMALL_STATE(2121)] = 77421, + [SMALL_STATE(2122)] = 77490, + [SMALL_STATE(2123)] = 77559, + [SMALL_STATE(2124)] = 77628, + [SMALL_STATE(2125)] = 77697, + [SMALL_STATE(2126)] = 77766, + [SMALL_STATE(2127)] = 77835, + [SMALL_STATE(2128)] = 77904, + [SMALL_STATE(2129)] = 77973, + [SMALL_STATE(2130)] = 78042, + [SMALL_STATE(2131)] = 78111, + [SMALL_STATE(2132)] = 78180, + [SMALL_STATE(2133)] = 78249, [SMALL_STATE(2134)] = 78318, [SMALL_STATE(2135)] = 78386, [SMALL_STATE(2136)] = 78454, - [SMALL_STATE(2137)] = 78522, - [SMALL_STATE(2138)] = 78594, - [SMALL_STATE(2139)] = 78662, - [SMALL_STATE(2140)] = 78730, - [SMALL_STATE(2141)] = 78798, - [SMALL_STATE(2142)] = 78866, - [SMALL_STATE(2143)] = 78934, - [SMALL_STATE(2144)] = 79002, - [SMALL_STATE(2145)] = 79112, - [SMALL_STATE(2146)] = 79184, - [SMALL_STATE(2147)] = 79268, - [SMALL_STATE(2148)] = 79358, - [SMALL_STATE(2149)] = 79462, - [SMALL_STATE(2150)] = 79536, - [SMALL_STATE(2151)] = 79604, - [SMALL_STATE(2152)] = 79684, - [SMALL_STATE(2153)] = 79752, - [SMALL_STATE(2154)] = 79828, - [SMALL_STATE(2155)] = 79936, - [SMALL_STATE(2156)] = 80004, - [SMALL_STATE(2157)] = 80112, - [SMALL_STATE(2158)] = 80218, - [SMALL_STATE(2159)] = 80320, - [SMALL_STATE(2160)] = 80420, - [SMALL_STATE(2161)] = 80516, - [SMALL_STATE(2162)] = 80584, - [SMALL_STATE(2163)] = 80678, - [SMALL_STATE(2164)] = 80746, - [SMALL_STATE(2165)] = 80838, - [SMALL_STATE(2166)] = 80906, - [SMALL_STATE(2167)] = 80974, - [SMALL_STATE(2168)] = 81062, - [SMALL_STATE(2169)] = 81144, - [SMALL_STATE(2170)] = 81226, - [SMALL_STATE(2171)] = 81300, - [SMALL_STATE(2172)] = 81368, - [SMALL_STATE(2173)] = 81442, - [SMALL_STATE(2174)] = 81510, - [SMALL_STATE(2175)] = 81578, - [SMALL_STATE(2176)] = 81646, - [SMALL_STATE(2177)] = 81714, - [SMALL_STATE(2178)] = 81782, - [SMALL_STATE(2179)] = 81854, - [SMALL_STATE(2180)] = 81922, - [SMALL_STATE(2181)] = 81990, - [SMALL_STATE(2182)] = 82058, - [SMALL_STATE(2183)] = 82126, - [SMALL_STATE(2184)] = 82194, - [SMALL_STATE(2185)] = 82262, - [SMALL_STATE(2186)] = 82330, - [SMALL_STATE(2187)] = 82398, - [SMALL_STATE(2188)] = 82470, - [SMALL_STATE(2189)] = 82538, - [SMALL_STATE(2190)] = 82606, - [SMALL_STATE(2191)] = 82674, - [SMALL_STATE(2192)] = 82742, - [SMALL_STATE(2193)] = 82810, - [SMALL_STATE(2194)] = 82878, - [SMALL_STATE(2195)] = 82946, - [SMALL_STATE(2196)] = 83014, - [SMALL_STATE(2197)] = 83082, - [SMALL_STATE(2198)] = 83154, - [SMALL_STATE(2199)] = 83222, - [SMALL_STATE(2200)] = 83290, - [SMALL_STATE(2201)] = 83358, - [SMALL_STATE(2202)] = 83426, - [SMALL_STATE(2203)] = 83494, - [SMALL_STATE(2204)] = 83566, - [SMALL_STATE(2205)] = 83676, - [SMALL_STATE(2206)] = 83748, - [SMALL_STATE(2207)] = 83816, - [SMALL_STATE(2208)] = 83888, - [SMALL_STATE(2209)] = 83956, - [SMALL_STATE(2210)] = 84024, - [SMALL_STATE(2211)] = 84096, - [SMALL_STATE(2212)] = 84164, - [SMALL_STATE(2213)] = 84236, - [SMALL_STATE(2214)] = 84304, - [SMALL_STATE(2215)] = 84372, - [SMALL_STATE(2216)] = 84444, - [SMALL_STATE(2217)] = 84512, - [SMALL_STATE(2218)] = 84580, - [SMALL_STATE(2219)] = 84648, - [SMALL_STATE(2220)] = 84716, - [SMALL_STATE(2221)] = 84784, - [SMALL_STATE(2222)] = 84852, - [SMALL_STATE(2223)] = 84920, - [SMALL_STATE(2224)] = 84988, - [SMALL_STATE(2225)] = 85056, - [SMALL_STATE(2226)] = 85124, - [SMALL_STATE(2227)] = 85192, - [SMALL_STATE(2228)] = 85260, - [SMALL_STATE(2229)] = 85328, - [SMALL_STATE(2230)] = 85396, - [SMALL_STATE(2231)] = 85464, - [SMALL_STATE(2232)] = 85532, - [SMALL_STATE(2233)] = 85600, - [SMALL_STATE(2234)] = 85668, - [SMALL_STATE(2235)] = 85736, - [SMALL_STATE(2236)] = 85804, - [SMALL_STATE(2237)] = 85872, - [SMALL_STATE(2238)] = 85940, - [SMALL_STATE(2239)] = 86008, - [SMALL_STATE(2240)] = 86076, - [SMALL_STATE(2241)] = 86146, - [SMALL_STATE(2242)] = 86214, - [SMALL_STATE(2243)] = 86282, - [SMALL_STATE(2244)] = 86350, - [SMALL_STATE(2245)] = 86418, - [SMALL_STATE(2246)] = 86486, - [SMALL_STATE(2247)] = 86558, - [SMALL_STATE(2248)] = 86626, - [SMALL_STATE(2249)] = 86694, - [SMALL_STATE(2250)] = 86762, - [SMALL_STATE(2251)] = 86830, - [SMALL_STATE(2252)] = 86898, - [SMALL_STATE(2253)] = 86966, - [SMALL_STATE(2254)] = 87034, - [SMALL_STATE(2255)] = 87102, - [SMALL_STATE(2256)] = 87170, - [SMALL_STATE(2257)] = 87238, - [SMALL_STATE(2258)] = 87306, - [SMALL_STATE(2259)] = 87374, - [SMALL_STATE(2260)] = 87446, - [SMALL_STATE(2261)] = 87518, - [SMALL_STATE(2262)] = 87586, - [SMALL_STATE(2263)] = 87654, - [SMALL_STATE(2264)] = 87722, - [SMALL_STATE(2265)] = 87790, - [SMALL_STATE(2266)] = 87858, - [SMALL_STATE(2267)] = 87926, - [SMALL_STATE(2268)] = 88040, - [SMALL_STATE(2269)] = 88108, - [SMALL_STATE(2270)] = 88176, - [SMALL_STATE(2271)] = 88244, - [SMALL_STATE(2272)] = 88312, - [SMALL_STATE(2273)] = 88380, - [SMALL_STATE(2274)] = 88448, - [SMALL_STATE(2275)] = 88520, - [SMALL_STATE(2276)] = 88588, - [SMALL_STATE(2277)] = 88656, - [SMALL_STATE(2278)] = 88724, - [SMALL_STATE(2279)] = 88792, - [SMALL_STATE(2280)] = 88866, - [SMALL_STATE(2281)] = 88938, - [SMALL_STATE(2282)] = 89006, - [SMALL_STATE(2283)] = 89080, - [SMALL_STATE(2284)] = 89152, - [SMALL_STATE(2285)] = 89222, - [SMALL_STATE(2286)] = 89292, - [SMALL_STATE(2287)] = 89362, - [SMALL_STATE(2288)] = 89432, - [SMALL_STATE(2289)] = 89502, - [SMALL_STATE(2290)] = 89572, - [SMALL_STATE(2291)] = 89642, - [SMALL_STATE(2292)] = 89712, - [SMALL_STATE(2293)] = 89782, - [SMALL_STATE(2294)] = 89852, - [SMALL_STATE(2295)] = 89922, - [SMALL_STATE(2296)] = 89992, - [SMALL_STATE(2297)] = 90062, - [SMALL_STATE(2298)] = 90132, - [SMALL_STATE(2299)] = 90202, - [SMALL_STATE(2300)] = 90272, - [SMALL_STATE(2301)] = 90342, - [SMALL_STATE(2302)] = 90412, - [SMALL_STATE(2303)] = 90482, - [SMALL_STATE(2304)] = 90552, - [SMALL_STATE(2305)] = 90620, - [SMALL_STATE(2306)] = 90688, - [SMALL_STATE(2307)] = 90756, - [SMALL_STATE(2308)] = 90828, - [SMALL_STATE(2309)] = 90896, - [SMALL_STATE(2310)] = 90964, - [SMALL_STATE(2311)] = 91032, - [SMALL_STATE(2312)] = 91100, - [SMALL_STATE(2313)] = 91168, - [SMALL_STATE(2314)] = 91236, - [SMALL_STATE(2315)] = 91306, - [SMALL_STATE(2316)] = 91420, - [SMALL_STATE(2317)] = 91488, - [SMALL_STATE(2318)] = 91556, - [SMALL_STATE(2319)] = 91628, - [SMALL_STATE(2320)] = 91696, - [SMALL_STATE(2321)] = 91764, - [SMALL_STATE(2322)] = 91836, - [SMALL_STATE(2323)] = 91904, - [SMALL_STATE(2324)] = 91972, - [SMALL_STATE(2325)] = 92040, - [SMALL_STATE(2326)] = 92108, - [SMALL_STATE(2327)] = 92176, - [SMALL_STATE(2328)] = 92244, - [SMALL_STATE(2329)] = 92312, - [SMALL_STATE(2330)] = 92380, - [SMALL_STATE(2331)] = 92448, - [SMALL_STATE(2332)] = 92516, - [SMALL_STATE(2333)] = 92586, - [SMALL_STATE(2334)] = 92656, - [SMALL_STATE(2335)] = 92724, - [SMALL_STATE(2336)] = 92792, - [SMALL_STATE(2337)] = 92864, - [SMALL_STATE(2338)] = 92936, - [SMALL_STATE(2339)] = 93004, - [SMALL_STATE(2340)] = 93072, - [SMALL_STATE(2341)] = 93140, - [SMALL_STATE(2342)] = 93208, - [SMALL_STATE(2343)] = 93280, - [SMALL_STATE(2344)] = 93352, - [SMALL_STATE(2345)] = 93420, - [SMALL_STATE(2346)] = 93488, - [SMALL_STATE(2347)] = 93556, - [SMALL_STATE(2348)] = 93624, - [SMALL_STATE(2349)] = 93692, - [SMALL_STATE(2350)] = 93760, - [SMALL_STATE(2351)] = 93828, - [SMALL_STATE(2352)] = 93896, - [SMALL_STATE(2353)] = 93964, - [SMALL_STATE(2354)] = 94032, + [SMALL_STATE(2137)] = 78526, + [SMALL_STATE(2138)] = 78598, + [SMALL_STATE(2139)] = 78670, + [SMALL_STATE(2140)] = 78742, + [SMALL_STATE(2141)] = 78810, + [SMALL_STATE(2142)] = 78878, + [SMALL_STATE(2143)] = 78950, + [SMALL_STATE(2144)] = 79022, + [SMALL_STATE(2145)] = 79094, + [SMALL_STATE(2146)] = 79166, + [SMALL_STATE(2147)] = 79276, + [SMALL_STATE(2148)] = 79344, + [SMALL_STATE(2149)] = 79428, + [SMALL_STATE(2150)] = 79518, + [SMALL_STATE(2151)] = 79622, + [SMALL_STATE(2152)] = 79696, + [SMALL_STATE(2153)] = 79776, + [SMALL_STATE(2154)] = 79852, + [SMALL_STATE(2155)] = 79960, + [SMALL_STATE(2156)] = 80068, + [SMALL_STATE(2157)] = 80174, + [SMALL_STATE(2158)] = 80276, + [SMALL_STATE(2159)] = 80350, + [SMALL_STATE(2160)] = 80422, + [SMALL_STATE(2161)] = 80522, + [SMALL_STATE(2162)] = 80618, + [SMALL_STATE(2163)] = 80712, + [SMALL_STATE(2164)] = 80804, + [SMALL_STATE(2165)] = 80892, + [SMALL_STATE(2166)] = 80974, + [SMALL_STATE(2167)] = 81056, + [SMALL_STATE(2168)] = 81130, + [SMALL_STATE(2169)] = 81200, + [SMALL_STATE(2170)] = 81270, + [SMALL_STATE(2171)] = 81344, + [SMALL_STATE(2172)] = 81418, + [SMALL_STATE(2173)] = 81490, + [SMALL_STATE(2174)] = 81562, + [SMALL_STATE(2175)] = 81634, + [SMALL_STATE(2176)] = 81702, + [SMALL_STATE(2177)] = 81774, + [SMALL_STATE(2178)] = 81846, + [SMALL_STATE(2179)] = 81918, + [SMALL_STATE(2180)] = 81990, + [SMALL_STATE(2181)] = 82058, + [SMALL_STATE(2182)] = 82172, + [SMALL_STATE(2183)] = 82244, + [SMALL_STATE(2184)] = 82354, + [SMALL_STATE(2185)] = 82422, + [SMALL_STATE(2186)] = 82490, + [SMALL_STATE(2187)] = 82558, + [SMALL_STATE(2188)] = 82628, + [SMALL_STATE(2189)] = 82698, + [SMALL_STATE(2190)] = 82766, + [SMALL_STATE(2191)] = 82834, + [SMALL_STATE(2192)] = 82902, + [SMALL_STATE(2193)] = 82970, + [SMALL_STATE(2194)] = 83038, + [SMALL_STATE(2195)] = 83106, + [SMALL_STATE(2196)] = 83178, + [SMALL_STATE(2197)] = 83246, + [SMALL_STATE(2198)] = 83314, + [SMALL_STATE(2199)] = 83382, + [SMALL_STATE(2200)] = 83450, + [SMALL_STATE(2201)] = 83518, + [SMALL_STATE(2202)] = 83586, + [SMALL_STATE(2203)] = 83654, + [SMALL_STATE(2204)] = 83722, + [SMALL_STATE(2205)] = 83790, + [SMALL_STATE(2206)] = 83858, + [SMALL_STATE(2207)] = 83926, + [SMALL_STATE(2208)] = 83994, + [SMALL_STATE(2209)] = 84062, + [SMALL_STATE(2210)] = 84130, + [SMALL_STATE(2211)] = 84202, + [SMALL_STATE(2212)] = 84274, + [SMALL_STATE(2213)] = 84342, + [SMALL_STATE(2214)] = 84410, + [SMALL_STATE(2215)] = 84478, + [SMALL_STATE(2216)] = 84546, + [SMALL_STATE(2217)] = 84660, + [SMALL_STATE(2218)] = 84728, + [SMALL_STATE(2219)] = 84796, + [SMALL_STATE(2220)] = 84864, + [SMALL_STATE(2221)] = 84932, + [SMALL_STATE(2222)] = 85000, + [SMALL_STATE(2223)] = 85072, + [SMALL_STATE(2224)] = 85140, + [SMALL_STATE(2225)] = 85208, + [SMALL_STATE(2226)] = 85276, + [SMALL_STATE(2227)] = 85344, + [SMALL_STATE(2228)] = 85412, + [SMALL_STATE(2229)] = 85480, + [SMALL_STATE(2230)] = 85548, + [SMALL_STATE(2231)] = 85616, + [SMALL_STATE(2232)] = 85684, + [SMALL_STATE(2233)] = 85752, + [SMALL_STATE(2234)] = 85820, + [SMALL_STATE(2235)] = 85892, + [SMALL_STATE(2236)] = 85960, + [SMALL_STATE(2237)] = 86028, + [SMALL_STATE(2238)] = 86096, + [SMALL_STATE(2239)] = 86164, + [SMALL_STATE(2240)] = 86232, + [SMALL_STATE(2241)] = 86300, + [SMALL_STATE(2242)] = 86368, + [SMALL_STATE(2243)] = 86436, + [SMALL_STATE(2244)] = 86504, + [SMALL_STATE(2245)] = 86572, + [SMALL_STATE(2246)] = 86640, + [SMALL_STATE(2247)] = 86712, + [SMALL_STATE(2248)] = 86780, + [SMALL_STATE(2249)] = 86848, + [SMALL_STATE(2250)] = 86916, + [SMALL_STATE(2251)] = 86984, + [SMALL_STATE(2252)] = 87052, + [SMALL_STATE(2253)] = 87120, + [SMALL_STATE(2254)] = 87188, + [SMALL_STATE(2255)] = 87256, + [SMALL_STATE(2256)] = 87324, + [SMALL_STATE(2257)] = 87392, + [SMALL_STATE(2258)] = 87460, + [SMALL_STATE(2259)] = 87532, + [SMALL_STATE(2260)] = 87600, + [SMALL_STATE(2261)] = 87668, + [SMALL_STATE(2262)] = 87736, + [SMALL_STATE(2263)] = 87804, + [SMALL_STATE(2264)] = 87872, + [SMALL_STATE(2265)] = 87940, + [SMALL_STATE(2266)] = 88008, + [SMALL_STATE(2267)] = 88076, + [SMALL_STATE(2268)] = 88144, + [SMALL_STATE(2269)] = 88212, + [SMALL_STATE(2270)] = 88280, + [SMALL_STATE(2271)] = 88348, + [SMALL_STATE(2272)] = 88416, + [SMALL_STATE(2273)] = 88484, + [SMALL_STATE(2274)] = 88552, + [SMALL_STATE(2275)] = 88620, + [SMALL_STATE(2276)] = 88688, + [SMALL_STATE(2277)] = 88756, + [SMALL_STATE(2278)] = 88824, + [SMALL_STATE(2279)] = 88892, + [SMALL_STATE(2280)] = 88960, + [SMALL_STATE(2281)] = 89028, + [SMALL_STATE(2282)] = 89100, + [SMALL_STATE(2283)] = 89168, + [SMALL_STATE(2284)] = 89236, + [SMALL_STATE(2285)] = 89306, + [SMALL_STATE(2286)] = 89376, + [SMALL_STATE(2287)] = 89446, + [SMALL_STATE(2288)] = 89516, + [SMALL_STATE(2289)] = 89586, + [SMALL_STATE(2290)] = 89656, + [SMALL_STATE(2291)] = 89726, + [SMALL_STATE(2292)] = 89796, + [SMALL_STATE(2293)] = 89866, + [SMALL_STATE(2294)] = 89936, + [SMALL_STATE(2295)] = 90006, + [SMALL_STATE(2296)] = 90076, + [SMALL_STATE(2297)] = 90146, + [SMALL_STATE(2298)] = 90216, + [SMALL_STATE(2299)] = 90286, + [SMALL_STATE(2300)] = 90356, + [SMALL_STATE(2301)] = 90426, + [SMALL_STATE(2302)] = 90496, + [SMALL_STATE(2303)] = 90566, + [SMALL_STATE(2304)] = 90636, + [SMALL_STATE(2305)] = 90704, + [SMALL_STATE(2306)] = 90772, + [SMALL_STATE(2307)] = 90840, + [SMALL_STATE(2308)] = 90908, + [SMALL_STATE(2309)] = 90976, + [SMALL_STATE(2310)] = 91044, + [SMALL_STATE(2311)] = 91112, + [SMALL_STATE(2312)] = 91180, + [SMALL_STATE(2313)] = 91248, + [SMALL_STATE(2314)] = 91316, + [SMALL_STATE(2315)] = 91384, + [SMALL_STATE(2316)] = 91452, + [SMALL_STATE(2317)] = 91520, + [SMALL_STATE(2318)] = 91588, + [SMALL_STATE(2319)] = 91656, + [SMALL_STATE(2320)] = 91724, + [SMALL_STATE(2321)] = 91792, + [SMALL_STATE(2322)] = 91860, + [SMALL_STATE(2323)] = 91928, + [SMALL_STATE(2324)] = 91996, + [SMALL_STATE(2325)] = 92064, + [SMALL_STATE(2326)] = 92132, + [SMALL_STATE(2327)] = 92200, + [SMALL_STATE(2328)] = 92268, + [SMALL_STATE(2329)] = 92336, + [SMALL_STATE(2330)] = 92404, + [SMALL_STATE(2331)] = 92472, + [SMALL_STATE(2332)] = 92540, + [SMALL_STATE(2333)] = 92608, + [SMALL_STATE(2334)] = 92676, + [SMALL_STATE(2335)] = 92744, + [SMALL_STATE(2336)] = 92812, + [SMALL_STATE(2337)] = 92880, + [SMALL_STATE(2338)] = 92948, + [SMALL_STATE(2339)] = 93016, + [SMALL_STATE(2340)] = 93084, + [SMALL_STATE(2341)] = 93152, + [SMALL_STATE(2342)] = 93220, + [SMALL_STATE(2343)] = 93288, + [SMALL_STATE(2344)] = 93356, + [SMALL_STATE(2345)] = 93424, + [SMALL_STATE(2346)] = 93492, + [SMALL_STATE(2347)] = 93560, + [SMALL_STATE(2348)] = 93628, + [SMALL_STATE(2349)] = 93696, + [SMALL_STATE(2350)] = 93764, + [SMALL_STATE(2351)] = 93832, + [SMALL_STATE(2352)] = 93900, + [SMALL_STATE(2353)] = 93968, + [SMALL_STATE(2354)] = 94036, [SMALL_STATE(2355)] = 94104, [SMALL_STATE(2356)] = 94172, - [SMALL_STATE(2357)] = 94239, - [SMALL_STATE(2358)] = 94312, - [SMALL_STATE(2359)] = 94381, - [SMALL_STATE(2360)] = 94450, - [SMALL_STATE(2361)] = 94521, - [SMALL_STATE(2362)] = 94630, - [SMALL_STATE(2363)] = 94697, - [SMALL_STATE(2364)] = 94764, - [SMALL_STATE(2365)] = 94831, - [SMALL_STATE(2366)] = 94902, - [SMALL_STATE(2367)] = 94971, - [SMALL_STATE(2368)] = 95040, - [SMALL_STATE(2369)] = 95109, - [SMALL_STATE(2370)] = 95178, - [SMALL_STATE(2371)] = 95249, - [SMALL_STATE(2372)] = 95330, - [SMALL_STATE(2373)] = 95411, - [SMALL_STATE(2374)] = 95498, - [SMALL_STATE(2375)] = 95589, - [SMALL_STATE(2376)] = 95682, - [SMALL_STATE(2377)] = 95777, - [SMALL_STATE(2378)] = 95876, - [SMALL_STATE(2379)] = 95977, - [SMALL_STATE(2380)] = 96082, - [SMALL_STATE(2381)] = 96151, - [SMALL_STATE(2382)] = 96258, - [SMALL_STATE(2383)] = 96365, - [SMALL_STATE(2384)] = 96440, - [SMALL_STATE(2385)] = 96513, - [SMALL_STATE(2386)] = 96592, - [SMALL_STATE(2387)] = 96665, - [SMALL_STATE(2388)] = 96734, - [SMALL_STATE(2389)] = 96837, - [SMALL_STATE(2390)] = 96926, - [SMALL_STATE(2391)] = 96999, - [SMALL_STATE(2392)] = 97082, - [SMALL_STATE(2393)] = 97151, - [SMALL_STATE(2394)] = 97220, - [SMALL_STATE(2395)] = 97289, - [SMALL_STATE(2396)] = 97362, - [SMALL_STATE(2397)] = 97431, - [SMALL_STATE(2398)] = 97504, - [SMALL_STATE(2399)] = 97573, - [SMALL_STATE(2400)] = 97642, - [SMALL_STATE(2401)] = 97711, - [SMALL_STATE(2402)] = 97780, - [SMALL_STATE(2403)] = 97849, - [SMALL_STATE(2404)] = 97920, - [SMALL_STATE(2405)] = 97989, - [SMALL_STATE(2406)] = 98056, - [SMALL_STATE(2407)] = 98125, - [SMALL_STATE(2408)] = 98194, - [SMALL_STATE(2409)] = 98263, - [SMALL_STATE(2410)] = 98332, - [SMALL_STATE(2411)] = 98399, - [SMALL_STATE(2412)] = 98466, - [SMALL_STATE(2413)] = 98533, - [SMALL_STATE(2414)] = 98600, - [SMALL_STATE(2415)] = 98667, - [SMALL_STATE(2416)] = 98734, - [SMALL_STATE(2417)] = 98847, - [SMALL_STATE(2418)] = 98914, - [SMALL_STATE(2419)] = 98981, - [SMALL_STATE(2420)] = 99048, - [SMALL_STATE(2421)] = 99115, - [SMALL_STATE(2422)] = 99182, - [SMALL_STATE(2423)] = 99249, - [SMALL_STATE(2424)] = 99316, - [SMALL_STATE(2425)] = 99383, - [SMALL_STATE(2426)] = 99450, - [SMALL_STATE(2427)] = 99517, - [SMALL_STATE(2428)] = 99584, - [SMALL_STATE(2429)] = 99651, - [SMALL_STATE(2430)] = 99718, - [SMALL_STATE(2431)] = 99785, - [SMALL_STATE(2432)] = 99852, - [SMALL_STATE(2433)] = 99919, - [SMALL_STATE(2434)] = 99986, - [SMALL_STATE(2435)] = 100053, - [SMALL_STATE(2436)] = 100120, - [SMALL_STATE(2437)] = 100187, - [SMALL_STATE(2438)] = 100258, - [SMALL_STATE(2439)] = 100325, - [SMALL_STATE(2440)] = 100434, - [SMALL_STATE(2441)] = 100501, - [SMALL_STATE(2442)] = 100568, - [SMALL_STATE(2443)] = 100635, - [SMALL_STATE(2444)] = 100702, - [SMALL_STATE(2445)] = 100769, - [SMALL_STATE(2446)] = 100836, - [SMALL_STATE(2447)] = 100903, - [SMALL_STATE(2448)] = 100970, - [SMALL_STATE(2449)] = 101041, - [SMALL_STATE(2450)] = 101108, - [SMALL_STATE(2451)] = 101175, - [SMALL_STATE(2452)] = 101242, - [SMALL_STATE(2453)] = 101309, - [SMALL_STATE(2454)] = 101376, - [SMALL_STATE(2455)] = 101443, - [SMALL_STATE(2456)] = 101510, - [SMALL_STATE(2457)] = 101577, - [SMALL_STATE(2458)] = 101644, - [SMALL_STATE(2459)] = 101711, - [SMALL_STATE(2460)] = 101778, - [SMALL_STATE(2461)] = 101845, - [SMALL_STATE(2462)] = 101912, - [SMALL_STATE(2463)] = 101979, - [SMALL_STATE(2464)] = 102046, - [SMALL_STATE(2465)] = 102113, - [SMALL_STATE(2466)] = 102180, - [SMALL_STATE(2467)] = 102249, - [SMALL_STATE(2468)] = 102318, - [SMALL_STATE(2469)] = 102385, - [SMALL_STATE(2470)] = 102452, - [SMALL_STATE(2471)] = 102521, - [SMALL_STATE(2472)] = 102590, - [SMALL_STATE(2473)] = 102659, - [SMALL_STATE(2474)] = 102728, - [SMALL_STATE(2475)] = 102797, - [SMALL_STATE(2476)] = 102866, - [SMALL_STATE(2477)] = 102935, - [SMALL_STATE(2478)] = 103044, - [SMALL_STATE(2479)] = 103113, - [SMALL_STATE(2480)] = 103182, - [SMALL_STATE(2481)] = 103251, - [SMALL_STATE(2482)] = 103320, - [SMALL_STATE(2483)] = 103389, - [SMALL_STATE(2484)] = 103458, - [SMALL_STATE(2485)] = 103527, - [SMALL_STATE(2486)] = 103596, - [SMALL_STATE(2487)] = 103665, - [SMALL_STATE(2488)] = 103734, - [SMALL_STATE(2489)] = 103803, - [SMALL_STATE(2490)] = 103872, - [SMALL_STATE(2491)] = 103941, - [SMALL_STATE(2492)] = 104010, - [SMALL_STATE(2493)] = 104077, - [SMALL_STATE(2494)] = 104144, - [SMALL_STATE(2495)] = 104211, - [SMALL_STATE(2496)] = 104278, - [SMALL_STATE(2497)] = 104345, - [SMALL_STATE(2498)] = 104412, - [SMALL_STATE(2499)] = 104479, - [SMALL_STATE(2500)] = 104546, - [SMALL_STATE(2501)] = 104613, - [SMALL_STATE(2502)] = 104680, - [SMALL_STATE(2503)] = 104747, - [SMALL_STATE(2504)] = 104814, - [SMALL_STATE(2505)] = 104881, - [SMALL_STATE(2506)] = 104948, - [SMALL_STATE(2507)] = 105015, - [SMALL_STATE(2508)] = 105082, - [SMALL_STATE(2509)] = 105149, - [SMALL_STATE(2510)] = 105216, - [SMALL_STATE(2511)] = 105283, - [SMALL_STATE(2512)] = 105350, - [SMALL_STATE(2513)] = 105417, - [SMALL_STATE(2514)] = 105484, - [SMALL_STATE(2515)] = 105551, - [SMALL_STATE(2516)] = 105618, - [SMALL_STATE(2517)] = 105685, - [SMALL_STATE(2518)] = 105752, - [SMALL_STATE(2519)] = 105819, - [SMALL_STATE(2520)] = 105886, - [SMALL_STATE(2521)] = 105953, - [SMALL_STATE(2522)] = 106020, - [SMALL_STATE(2523)] = 106091, - [SMALL_STATE(2524)] = 106158, - [SMALL_STATE(2525)] = 106225, - [SMALL_STATE(2526)] = 106292, - [SMALL_STATE(2527)] = 106359, - [SMALL_STATE(2528)] = 106426, - [SMALL_STATE(2529)] = 106493, - [SMALL_STATE(2530)] = 106560, - [SMALL_STATE(2531)] = 106627, - [SMALL_STATE(2532)] = 106694, - [SMALL_STATE(2533)] = 106761, - [SMALL_STATE(2534)] = 106870, - [SMALL_STATE(2535)] = 106937, - [SMALL_STATE(2536)] = 107004, - [SMALL_STATE(2537)] = 107071, - [SMALL_STATE(2538)] = 107138, - [SMALL_STATE(2539)] = 107205, - [SMALL_STATE(2540)] = 107272, - [SMALL_STATE(2541)] = 107341, - [SMALL_STATE(2542)] = 107454, - [SMALL_STATE(2543)] = 107527, - [SMALL_STATE(2544)] = 107600, - [SMALL_STATE(2545)] = 107673, - [SMALL_STATE(2546)] = 107746, - [SMALL_STATE(2547)] = 107829, - [SMALL_STATE(2548)] = 107918, - [SMALL_STATE(2549)] = 108021, - [SMALL_STATE(2550)] = 108094, - [SMALL_STATE(2551)] = 108167, - [SMALL_STATE(2552)] = 108246, - [SMALL_STATE(2553)] = 108321, - [SMALL_STATE(2554)] = 108428, - [SMALL_STATE(2555)] = 108535, - [SMALL_STATE(2556)] = 108602, - [SMALL_STATE(2557)] = 108707, - [SMALL_STATE(2558)] = 108808, - [SMALL_STATE(2559)] = 108907, - [SMALL_STATE(2560)] = 109002, - [SMALL_STATE(2561)] = 109095, - [SMALL_STATE(2562)] = 109186, - [SMALL_STATE(2563)] = 109273, - [SMALL_STATE(2564)] = 109354, - [SMALL_STATE(2565)] = 109435, - [SMALL_STATE(2566)] = 109502, - [SMALL_STATE(2567)] = 109569, - [SMALL_STATE(2568)] = 109636, - [SMALL_STATE(2569)] = 109703, - [SMALL_STATE(2570)] = 109770, - [SMALL_STATE(2571)] = 109837, - [SMALL_STATE(2572)] = 109904, - [SMALL_STATE(2573)] = 109971, - [SMALL_STATE(2574)] = 110038, - [SMALL_STATE(2575)] = 110105, - [SMALL_STATE(2576)] = 110172, - [SMALL_STATE(2577)] = 110239, - [SMALL_STATE(2578)] = 110306, - [SMALL_STATE(2579)] = 110373, - [SMALL_STATE(2580)] = 110440, - [SMALL_STATE(2581)] = 110507, - [SMALL_STATE(2582)] = 110574, - [SMALL_STATE(2583)] = 110641, - [SMALL_STATE(2584)] = 110708, - [SMALL_STATE(2585)] = 110775, - [SMALL_STATE(2586)] = 110842, - [SMALL_STATE(2587)] = 110909, - [SMALL_STATE(2588)] = 110976, - [SMALL_STATE(2589)] = 111043, - [SMALL_STATE(2590)] = 111110, - [SMALL_STATE(2591)] = 111177, - [SMALL_STATE(2592)] = 111244, - [SMALL_STATE(2593)] = 111311, - [SMALL_STATE(2594)] = 111378, - [SMALL_STATE(2595)] = 111445, - [SMALL_STATE(2596)] = 111512, - [SMALL_STATE(2597)] = 111579, - [SMALL_STATE(2598)] = 111646, - [SMALL_STATE(2599)] = 111713, - [SMALL_STATE(2600)] = 111780, - [SMALL_STATE(2601)] = 111847, - [SMALL_STATE(2602)] = 111914, - [SMALL_STATE(2603)] = 111981, - [SMALL_STATE(2604)] = 112048, - [SMALL_STATE(2605)] = 112115, - [SMALL_STATE(2606)] = 112182, - [SMALL_STATE(2607)] = 112249, - [SMALL_STATE(2608)] = 112316, - [SMALL_STATE(2609)] = 112383, - [SMALL_STATE(2610)] = 112450, - [SMALL_STATE(2611)] = 112517, - [SMALL_STATE(2612)] = 112584, - [SMALL_STATE(2613)] = 112651, - [SMALL_STATE(2614)] = 112718, - [SMALL_STATE(2615)] = 112785, - [SMALL_STATE(2616)] = 112852, - [SMALL_STATE(2617)] = 112919, - [SMALL_STATE(2618)] = 112986, - [SMALL_STATE(2619)] = 113053, - [SMALL_STATE(2620)] = 113120, - [SMALL_STATE(2621)] = 113187, - [SMALL_STATE(2622)] = 113258, - [SMALL_STATE(2623)] = 113325, - [SMALL_STATE(2624)] = 113392, - [SMALL_STATE(2625)] = 113463, - [SMALL_STATE(2626)] = 113530, - [SMALL_STATE(2627)] = 113597, - [SMALL_STATE(2628)] = 113664, - [SMALL_STATE(2629)] = 113735, - [SMALL_STATE(2630)] = 113806, - [SMALL_STATE(2631)] = 113873, - [SMALL_STATE(2632)] = 113944, - [SMALL_STATE(2633)] = 114015, - [SMALL_STATE(2634)] = 114082, - [SMALL_STATE(2635)] = 114151, - [SMALL_STATE(2636)] = 114220, - [SMALL_STATE(2637)] = 114289, - [SMALL_STATE(2638)] = 114358, - [SMALL_STATE(2639)] = 114427, - [SMALL_STATE(2640)] = 114496, - [SMALL_STATE(2641)] = 114565, - [SMALL_STATE(2642)] = 114634, - [SMALL_STATE(2643)] = 114703, - [SMALL_STATE(2644)] = 114772, - [SMALL_STATE(2645)] = 114841, - [SMALL_STATE(2646)] = 114910, - [SMALL_STATE(2647)] = 114979, - [SMALL_STATE(2648)] = 115048, - [SMALL_STATE(2649)] = 115117, - [SMALL_STATE(2650)] = 115186, - [SMALL_STATE(2651)] = 115255, - [SMALL_STATE(2652)] = 115324, - [SMALL_STATE(2653)] = 115393, - [SMALL_STATE(2654)] = 115462, - [SMALL_STATE(2655)] = 115529, - [SMALL_STATE(2656)] = 115596, - [SMALL_STATE(2657)] = 115663, - [SMALL_STATE(2658)] = 115730, - [SMALL_STATE(2659)] = 115797, - [SMALL_STATE(2660)] = 115864, - [SMALL_STATE(2661)] = 115973, - [SMALL_STATE(2662)] = 116040, - [SMALL_STATE(2663)] = 116107, - [SMALL_STATE(2664)] = 116174, - [SMALL_STATE(2665)] = 116241, - [SMALL_STATE(2666)] = 116308, - [SMALL_STATE(2667)] = 116377, - [SMALL_STATE(2668)] = 116448, - [SMALL_STATE(2669)] = 116517, - [SMALL_STATE(2670)] = 116586, - [SMALL_STATE(2671)] = 116655, - [SMALL_STATE(2672)] = 116724, - [SMALL_STATE(2673)] = 116837, - [SMALL_STATE(2674)] = 116904, - [SMALL_STATE(2675)] = 116971, - [SMALL_STATE(2676)] = 117038, - [SMALL_STATE(2677)] = 117107, - [SMALL_STATE(2678)] = 117176, - [SMALL_STATE(2679)] = 117243, - [SMALL_STATE(2680)] = 117310, - [SMALL_STATE(2681)] = 117377, - [SMALL_STATE(2682)] = 117448, - [SMALL_STATE(2683)] = 117519, - [SMALL_STATE(2684)] = 117588, - [SMALL_STATE(2685)] = 117657, - [SMALL_STATE(2686)] = 117724, - [SMALL_STATE(2687)] = 117791, - [SMALL_STATE(2688)] = 117858, - [SMALL_STATE(2689)] = 117925, - [SMALL_STATE(2690)] = 117992, - [SMALL_STATE(2691)] = 118059, - [SMALL_STATE(2692)] = 118130, - [SMALL_STATE(2693)] = 118197, - [SMALL_STATE(2694)] = 118264, - [SMALL_STATE(2695)] = 118335, - [SMALL_STATE(2696)] = 118402, - [SMALL_STATE(2697)] = 118473, - [SMALL_STATE(2698)] = 118540, - [SMALL_STATE(2699)] = 118607, - [SMALL_STATE(2700)] = 118680, - [SMALL_STATE(2701)] = 118747, - [SMALL_STATE(2702)] = 118814, - [SMALL_STATE(2703)] = 118881, - [SMALL_STATE(2704)] = 118948, - [SMALL_STATE(2705)] = 119015, - [SMALL_STATE(2706)] = 119082, - [SMALL_STATE(2707)] = 119149, - [SMALL_STATE(2708)] = 119216, - [SMALL_STATE(2709)] = 119283, - [SMALL_STATE(2710)] = 119350, - [SMALL_STATE(2711)] = 119417, - [SMALL_STATE(2712)] = 119484, - [SMALL_STATE(2713)] = 119551, - [SMALL_STATE(2714)] = 119618, + [SMALL_STATE(2357)] = 94241, + [SMALL_STATE(2358)] = 94308, + [SMALL_STATE(2359)] = 94375, + [SMALL_STATE(2360)] = 94442, + [SMALL_STATE(2361)] = 94509, + [SMALL_STATE(2362)] = 94580, + [SMALL_STATE(2363)] = 94647, + [SMALL_STATE(2364)] = 94718, + [SMALL_STATE(2365)] = 94785, + [SMALL_STATE(2366)] = 94852, + [SMALL_STATE(2367)] = 94919, + [SMALL_STATE(2368)] = 94992, + [SMALL_STATE(2369)] = 95059, + [SMALL_STATE(2370)] = 95126, + [SMALL_STATE(2371)] = 95193, + [SMALL_STATE(2372)] = 95266, + [SMALL_STATE(2373)] = 95333, + [SMALL_STATE(2374)] = 95400, + [SMALL_STATE(2375)] = 95467, + [SMALL_STATE(2376)] = 95536, + [SMALL_STATE(2377)] = 95605, + [SMALL_STATE(2378)] = 95672, + [SMALL_STATE(2379)] = 95739, + [SMALL_STATE(2380)] = 95808, + [SMALL_STATE(2381)] = 95917, + [SMALL_STATE(2382)] = 95986, + [SMALL_STATE(2383)] = 96053, + [SMALL_STATE(2384)] = 96120, + [SMALL_STATE(2385)] = 96187, + [SMALL_STATE(2386)] = 96256, + [SMALL_STATE(2387)] = 96325, + [SMALL_STATE(2388)] = 96394, + [SMALL_STATE(2389)] = 96463, + [SMALL_STATE(2390)] = 96532, + [SMALL_STATE(2391)] = 96601, + [SMALL_STATE(2392)] = 96670, + [SMALL_STATE(2393)] = 96739, + [SMALL_STATE(2394)] = 96806, + [SMALL_STATE(2395)] = 96875, + [SMALL_STATE(2396)] = 96942, + [SMALL_STATE(2397)] = 97013, + [SMALL_STATE(2398)] = 97080, + [SMALL_STATE(2399)] = 97147, + [SMALL_STATE(2400)] = 97214, + [SMALL_STATE(2401)] = 97281, + [SMALL_STATE(2402)] = 97352, + [SMALL_STATE(2403)] = 97419, + [SMALL_STATE(2404)] = 97486, + [SMALL_STATE(2405)] = 97553, + [SMALL_STATE(2406)] = 97620, + [SMALL_STATE(2407)] = 97687, + [SMALL_STATE(2408)] = 97754, + [SMALL_STATE(2409)] = 97825, + [SMALL_STATE(2410)] = 97906, + [SMALL_STATE(2411)] = 97987, + [SMALL_STATE(2412)] = 98074, + [SMALL_STATE(2413)] = 98165, + [SMALL_STATE(2414)] = 98258, + [SMALL_STATE(2415)] = 98353, + [SMALL_STATE(2416)] = 98420, + [SMALL_STATE(2417)] = 98487, + [SMALL_STATE(2418)] = 98554, + [SMALL_STATE(2419)] = 98621, + [SMALL_STATE(2420)] = 98720, + [SMALL_STATE(2421)] = 98821, + [SMALL_STATE(2422)] = 98926, + [SMALL_STATE(2423)] = 98997, + [SMALL_STATE(2424)] = 99104, + [SMALL_STATE(2425)] = 99211, + [SMALL_STATE(2426)] = 99286, + [SMALL_STATE(2427)] = 99365, + [SMALL_STATE(2428)] = 99438, + [SMALL_STATE(2429)] = 99509, + [SMALL_STATE(2430)] = 99612, + [SMALL_STATE(2431)] = 99701, + [SMALL_STATE(2432)] = 99784, + [SMALL_STATE(2433)] = 99851, + [SMALL_STATE(2434)] = 99918, + [SMALL_STATE(2435)] = 99985, + [SMALL_STATE(2436)] = 100052, + [SMALL_STATE(2437)] = 100119, + [SMALL_STATE(2438)] = 100186, + [SMALL_STATE(2439)] = 100253, + [SMALL_STATE(2440)] = 100320, + [SMALL_STATE(2441)] = 100387, + [SMALL_STATE(2442)] = 100454, + [SMALL_STATE(2443)] = 100521, + [SMALL_STATE(2444)] = 100588, + [SMALL_STATE(2445)] = 100655, + [SMALL_STATE(2446)] = 100722, + [SMALL_STATE(2447)] = 100789, + [SMALL_STATE(2448)] = 100856, + [SMALL_STATE(2449)] = 100923, + [SMALL_STATE(2450)] = 100990, + [SMALL_STATE(2451)] = 101061, + [SMALL_STATE(2452)] = 101128, + [SMALL_STATE(2453)] = 101195, + [SMALL_STATE(2454)] = 101262, + [SMALL_STATE(2455)] = 101333, + [SMALL_STATE(2456)] = 101400, + [SMALL_STATE(2457)] = 101467, + [SMALL_STATE(2458)] = 101534, + [SMALL_STATE(2459)] = 101601, + [SMALL_STATE(2460)] = 101668, + [SMALL_STATE(2461)] = 101737, + [SMALL_STATE(2462)] = 101806, + [SMALL_STATE(2463)] = 101873, + [SMALL_STATE(2464)] = 101942, + [SMALL_STATE(2465)] = 102009, + [SMALL_STATE(2466)] = 102076, + [SMALL_STATE(2467)] = 102145, + [SMALL_STATE(2468)] = 102214, + [SMALL_STATE(2469)] = 102283, + [SMALL_STATE(2470)] = 102352, + [SMALL_STATE(2471)] = 102421, + [SMALL_STATE(2472)] = 102488, + [SMALL_STATE(2473)] = 102555, + [SMALL_STATE(2474)] = 102626, + [SMALL_STATE(2475)] = 102693, + [SMALL_STATE(2476)] = 102760, + [SMALL_STATE(2477)] = 102827, + [SMALL_STATE(2478)] = 102936, + [SMALL_STATE(2479)] = 103005, + [SMALL_STATE(2480)] = 103072, + [SMALL_STATE(2481)] = 103139, + [SMALL_STATE(2482)] = 103206, + [SMALL_STATE(2483)] = 103273, + [SMALL_STATE(2484)] = 103344, + [SMALL_STATE(2485)] = 103411, + [SMALL_STATE(2486)] = 103478, + [SMALL_STATE(2487)] = 103545, + [SMALL_STATE(2488)] = 103612, + [SMALL_STATE(2489)] = 103679, + [SMALL_STATE(2490)] = 103746, + [SMALL_STATE(2491)] = 103813, + [SMALL_STATE(2492)] = 103880, + [SMALL_STATE(2493)] = 103947, + [SMALL_STATE(2494)] = 104014, + [SMALL_STATE(2495)] = 104085, + [SMALL_STATE(2496)] = 104152, + [SMALL_STATE(2497)] = 104219, + [SMALL_STATE(2498)] = 104288, + [SMALL_STATE(2499)] = 104357, + [SMALL_STATE(2500)] = 104424, + [SMALL_STATE(2501)] = 104491, + [SMALL_STATE(2502)] = 104558, + [SMALL_STATE(2503)] = 104625, + [SMALL_STATE(2504)] = 104692, + [SMALL_STATE(2505)] = 104759, + [SMALL_STATE(2506)] = 104826, + [SMALL_STATE(2507)] = 104893, + [SMALL_STATE(2508)] = 104960, + [SMALL_STATE(2509)] = 105027, + [SMALL_STATE(2510)] = 105136, + [SMALL_STATE(2511)] = 105205, + [SMALL_STATE(2512)] = 105272, + [SMALL_STATE(2513)] = 105339, + [SMALL_STATE(2514)] = 105406, + [SMALL_STATE(2515)] = 105473, + [SMALL_STATE(2516)] = 105540, + [SMALL_STATE(2517)] = 105607, + [SMALL_STATE(2518)] = 105674, + [SMALL_STATE(2519)] = 105741, + [SMALL_STATE(2520)] = 105808, + [SMALL_STATE(2521)] = 105875, + [SMALL_STATE(2522)] = 105946, + [SMALL_STATE(2523)] = 106013, + [SMALL_STATE(2524)] = 106080, + [SMALL_STATE(2525)] = 106147, + [SMALL_STATE(2526)] = 106214, + [SMALL_STATE(2527)] = 106281, + [SMALL_STATE(2528)] = 106348, + [SMALL_STATE(2529)] = 106415, + [SMALL_STATE(2530)] = 106482, + [SMALL_STATE(2531)] = 106549, + [SMALL_STATE(2532)] = 106616, + [SMALL_STATE(2533)] = 106683, + [SMALL_STATE(2534)] = 106750, + [SMALL_STATE(2535)] = 106817, + [SMALL_STATE(2536)] = 106884, + [SMALL_STATE(2537)] = 106951, + [SMALL_STATE(2538)] = 107018, + [SMALL_STATE(2539)] = 107085, + [SMALL_STATE(2540)] = 107152, + [SMALL_STATE(2541)] = 107219, + [SMALL_STATE(2542)] = 107286, + [SMALL_STATE(2543)] = 107353, + [SMALL_STATE(2544)] = 107420, + [SMALL_STATE(2545)] = 107491, + [SMALL_STATE(2546)] = 107558, + [SMALL_STATE(2547)] = 107641, + [SMALL_STATE(2548)] = 107730, + [SMALL_STATE(2549)] = 107833, + [SMALL_STATE(2550)] = 107942, + [SMALL_STATE(2551)] = 108015, + [SMALL_STATE(2552)] = 108094, + [SMALL_STATE(2553)] = 108169, + [SMALL_STATE(2554)] = 108276, + [SMALL_STATE(2555)] = 108383, + [SMALL_STATE(2556)] = 108450, + [SMALL_STATE(2557)] = 108555, + [SMALL_STATE(2558)] = 108656, + [SMALL_STATE(2559)] = 108755, + [SMALL_STATE(2560)] = 108850, + [SMALL_STATE(2561)] = 108943, + [SMALL_STATE(2562)] = 109034, + [SMALL_STATE(2563)] = 109121, + [SMALL_STATE(2564)] = 109202, + [SMALL_STATE(2565)] = 109283, + [SMALL_STATE(2566)] = 109350, + [SMALL_STATE(2567)] = 109417, + [SMALL_STATE(2568)] = 109484, + [SMALL_STATE(2569)] = 109551, + [SMALL_STATE(2570)] = 109618, + [SMALL_STATE(2571)] = 109685, + [SMALL_STATE(2572)] = 109752, + [SMALL_STATE(2573)] = 109819, + [SMALL_STATE(2574)] = 109886, + [SMALL_STATE(2575)] = 109953, + [SMALL_STATE(2576)] = 110020, + [SMALL_STATE(2577)] = 110091, + [SMALL_STATE(2578)] = 110158, + [SMALL_STATE(2579)] = 110225, + [SMALL_STATE(2580)] = 110292, + [SMALL_STATE(2581)] = 110359, + [SMALL_STATE(2582)] = 110426, + [SMALL_STATE(2583)] = 110493, + [SMALL_STATE(2584)] = 110560, + [SMALL_STATE(2585)] = 110669, + [SMALL_STATE(2586)] = 110736, + [SMALL_STATE(2587)] = 110803, + [SMALL_STATE(2588)] = 110870, + [SMALL_STATE(2589)] = 110937, + [SMALL_STATE(2590)] = 111004, + [SMALL_STATE(2591)] = 111073, + [SMALL_STATE(2592)] = 111142, + [SMALL_STATE(2593)] = 111209, + [SMALL_STATE(2594)] = 111276, + [SMALL_STATE(2595)] = 111343, + [SMALL_STATE(2596)] = 111410, + [SMALL_STATE(2597)] = 111477, + [SMALL_STATE(2598)] = 111544, + [SMALL_STATE(2599)] = 111611, + [SMALL_STATE(2600)] = 111682, + [SMALL_STATE(2601)] = 111751, + [SMALL_STATE(2602)] = 111820, + [SMALL_STATE(2603)] = 111887, + [SMALL_STATE(2604)] = 111954, + [SMALL_STATE(2605)] = 112025, + [SMALL_STATE(2606)] = 112092, + [SMALL_STATE(2607)] = 112159, + [SMALL_STATE(2608)] = 112226, + [SMALL_STATE(2609)] = 112293, + [SMALL_STATE(2610)] = 112360, + [SMALL_STATE(2611)] = 112427, + [SMALL_STATE(2612)] = 112494, + [SMALL_STATE(2613)] = 112561, + [SMALL_STATE(2614)] = 112628, + [SMALL_STATE(2615)] = 112695, + [SMALL_STATE(2616)] = 112762, + [SMALL_STATE(2617)] = 112829, + [SMALL_STATE(2618)] = 112900, + [SMALL_STATE(2619)] = 113013, + [SMALL_STATE(2620)] = 113080, + [SMALL_STATE(2621)] = 113147, + [SMALL_STATE(2622)] = 113218, + [SMALL_STATE(2623)] = 113285, + [SMALL_STATE(2624)] = 113352, + [SMALL_STATE(2625)] = 113419, + [SMALL_STATE(2626)] = 113486, + [SMALL_STATE(2627)] = 113553, + [SMALL_STATE(2628)] = 113620, + [SMALL_STATE(2629)] = 113687, + [SMALL_STATE(2630)] = 113754, + [SMALL_STATE(2631)] = 113821, + [SMALL_STATE(2632)] = 113888, + [SMALL_STATE(2633)] = 113955, + [SMALL_STATE(2634)] = 114022, + [SMALL_STATE(2635)] = 114089, + [SMALL_STATE(2636)] = 114156, + [SMALL_STATE(2637)] = 114223, + [SMALL_STATE(2638)] = 114290, + [SMALL_STATE(2639)] = 114357, + [SMALL_STATE(2640)] = 114426, + [SMALL_STATE(2641)] = 114493, + [SMALL_STATE(2642)] = 114560, + [SMALL_STATE(2643)] = 114627, + [SMALL_STATE(2644)] = 114694, + [SMALL_STATE(2645)] = 114761, + [SMALL_STATE(2646)] = 114874, + [SMALL_STATE(2647)] = 114943, + [SMALL_STATE(2648)] = 115012, + [SMALL_STATE(2649)] = 115079, + [SMALL_STATE(2650)] = 115146, + [SMALL_STATE(2651)] = 115215, + [SMALL_STATE(2652)] = 115284, + [SMALL_STATE(2653)] = 115351, + [SMALL_STATE(2654)] = 115420, + [SMALL_STATE(2655)] = 115489, + [SMALL_STATE(2656)] = 115558, + [SMALL_STATE(2657)] = 115627, + [SMALL_STATE(2658)] = 115696, + [SMALL_STATE(2659)] = 115765, + [SMALL_STATE(2660)] = 115834, + [SMALL_STATE(2661)] = 115943, + [SMALL_STATE(2662)] = 116010, + [SMALL_STATE(2663)] = 116077, + [SMALL_STATE(2664)] = 116146, + [SMALL_STATE(2665)] = 116213, + [SMALL_STATE(2666)] = 116282, + [SMALL_STATE(2667)] = 116351, + [SMALL_STATE(2668)] = 116420, + [SMALL_STATE(2669)] = 116489, + [SMALL_STATE(2670)] = 116558, + [SMALL_STATE(2671)] = 116627, + [SMALL_STATE(2672)] = 116698, + [SMALL_STATE(2673)] = 116807, + [SMALL_STATE(2674)] = 116876, + [SMALL_STATE(2675)] = 116945, + [SMALL_STATE(2676)] = 117014, + [SMALL_STATE(2677)] = 117083, + [SMALL_STATE(2678)] = 117152, + [SMALL_STATE(2679)] = 117221, + [SMALL_STATE(2680)] = 117290, + [SMALL_STATE(2681)] = 117359, + [SMALL_STATE(2682)] = 117428, + [SMALL_STATE(2683)] = 117497, + [SMALL_STATE(2684)] = 117564, + [SMALL_STATE(2685)] = 117633, + [SMALL_STATE(2686)] = 117702, + [SMALL_STATE(2687)] = 117773, + [SMALL_STATE(2688)] = 117842, + [SMALL_STATE(2689)] = 117909, + [SMALL_STATE(2690)] = 117976, + [SMALL_STATE(2691)] = 118043, + [SMALL_STATE(2692)] = 118114, + [SMALL_STATE(2693)] = 118183, + [SMALL_STATE(2694)] = 118252, + [SMALL_STATE(2695)] = 118323, + [SMALL_STATE(2696)] = 118390, + [SMALL_STATE(2697)] = 118461, + [SMALL_STATE(2698)] = 118530, + [SMALL_STATE(2699)] = 118599, + [SMALL_STATE(2700)] = 118668, + [SMALL_STATE(2701)] = 118737, + [SMALL_STATE(2702)] = 118804, + [SMALL_STATE(2703)] = 118871, + [SMALL_STATE(2704)] = 118938, + [SMALL_STATE(2705)] = 119005, + [SMALL_STATE(2706)] = 119072, + [SMALL_STATE(2707)] = 119141, + [SMALL_STATE(2708)] = 119210, + [SMALL_STATE(2709)] = 119277, + [SMALL_STATE(2710)] = 119344, + [SMALL_STATE(2711)] = 119411, + [SMALL_STATE(2712)] = 119478, + [SMALL_STATE(2713)] = 119547, + [SMALL_STATE(2714)] = 119616, [SMALL_STATE(2715)] = 119685, [SMALL_STATE(2716)] = 119754, - [SMALL_STATE(2717)] = 119821, - [SMALL_STATE(2718)] = 119888, - [SMALL_STATE(2719)] = 119955, - [SMALL_STATE(2720)] = 120022, - [SMALL_STATE(2721)] = 120091, - [SMALL_STATE(2722)] = 120160, - [SMALL_STATE(2723)] = 120233, + [SMALL_STATE(2717)] = 119823, + [SMALL_STATE(2718)] = 119892, + [SMALL_STATE(2719)] = 119963, + [SMALL_STATE(2720)] = 120032, + [SMALL_STATE(2721)] = 120101, + [SMALL_STATE(2722)] = 120168, + [SMALL_STATE(2723)] = 120235, [SMALL_STATE(2724)] = 120302, - [SMALL_STATE(2725)] = 120371, - [SMALL_STATE(2726)] = 120440, - [SMALL_STATE(2727)] = 120509, - [SMALL_STATE(2728)] = 120578, - [SMALL_STATE(2729)] = 120647, - [SMALL_STATE(2730)] = 120716, - [SMALL_STATE(2731)] = 120785, - [SMALL_STATE(2732)] = 120854, - [SMALL_STATE(2733)] = 120923, - [SMALL_STATE(2734)] = 120992, - [SMALL_STATE(2735)] = 121059, - [SMALL_STATE(2736)] = 121128, - [SMALL_STATE(2737)] = 121197, - [SMALL_STATE(2738)] = 121266, - [SMALL_STATE(2739)] = 121333, - [SMALL_STATE(2740)] = 121400, - [SMALL_STATE(2741)] = 121467, - [SMALL_STATE(2742)] = 121534, - [SMALL_STATE(2743)] = 121603, - [SMALL_STATE(2744)] = 121670, - [SMALL_STATE(2745)] = 121737, - [SMALL_STATE(2746)] = 121804, - [SMALL_STATE(2747)] = 121871, - [SMALL_STATE(2748)] = 121938, - [SMALL_STATE(2749)] = 122005, - [SMALL_STATE(2750)] = 122072, - [SMALL_STATE(2751)] = 122139, - [SMALL_STATE(2752)] = 122206, - [SMALL_STATE(2753)] = 122273, - [SMALL_STATE(2754)] = 122340, - [SMALL_STATE(2755)] = 122407, - [SMALL_STATE(2756)] = 122474, - [SMALL_STATE(2757)] = 122541, - [SMALL_STATE(2758)] = 122608, - [SMALL_STATE(2759)] = 122675, - [SMALL_STATE(2760)] = 122742, - [SMALL_STATE(2761)] = 122809, - [SMALL_STATE(2762)] = 122876, - [SMALL_STATE(2763)] = 122943, - [SMALL_STATE(2764)] = 123010, - [SMALL_STATE(2765)] = 123077, - [SMALL_STATE(2766)] = 123144, - [SMALL_STATE(2767)] = 123211, - [SMALL_STATE(2768)] = 123278, - [SMALL_STATE(2769)] = 123345, - [SMALL_STATE(2770)] = 123412, - [SMALL_STATE(2771)] = 123479, - [SMALL_STATE(2772)] = 123546, - [SMALL_STATE(2773)] = 123617, - [SMALL_STATE(2774)] = 123684, - [SMALL_STATE(2775)] = 123755, - [SMALL_STATE(2776)] = 123822, - [SMALL_STATE(2777)] = 123889, - [SMALL_STATE(2778)] = 123956, - [SMALL_STATE(2779)] = 124023, - [SMALL_STATE(2780)] = 124090, - [SMALL_STATE(2781)] = 124157, - [SMALL_STATE(2782)] = 124224, - [SMALL_STATE(2783)] = 124291, - [SMALL_STATE(2784)] = 124358, - [SMALL_STATE(2785)] = 124425, - [SMALL_STATE(2786)] = 124492, - [SMALL_STATE(2787)] = 124559, - [SMALL_STATE(2788)] = 124626, - [SMALL_STATE(2789)] = 124693, - [SMALL_STATE(2790)] = 124760, - [SMALL_STATE(2791)] = 124869, - [SMALL_STATE(2792)] = 124936, - [SMALL_STATE(2793)] = 125003, - [SMALL_STATE(2794)] = 125070, - [SMALL_STATE(2795)] = 125137, - [SMALL_STATE(2796)] = 125204, - [SMALL_STATE(2797)] = 125271, - [SMALL_STATE(2798)] = 125338, - [SMALL_STATE(2799)] = 125405, - [SMALL_STATE(2800)] = 125472, - [SMALL_STATE(2801)] = 125539, - [SMALL_STATE(2802)] = 125606, - [SMALL_STATE(2803)] = 125673, - [SMALL_STATE(2804)] = 125740, - [SMALL_STATE(2805)] = 125807, - [SMALL_STATE(2806)] = 125874, - [SMALL_STATE(2807)] = 125941, - [SMALL_STATE(2808)] = 126008, - [SMALL_STATE(2809)] = 126075, - [SMALL_STATE(2810)] = 126142, - [SMALL_STATE(2811)] = 126209, - [SMALL_STATE(2812)] = 126276, - [SMALL_STATE(2813)] = 126345, - [SMALL_STATE(2814)] = 126414, - [SMALL_STATE(2815)] = 126483, - [SMALL_STATE(2816)] = 126552, - [SMALL_STATE(2817)] = 126621, + [SMALL_STATE(2725)] = 120369, + [SMALL_STATE(2726)] = 120438, + [SMALL_STATE(2727)] = 120507, + [SMALL_STATE(2728)] = 120576, + [SMALL_STATE(2729)] = 120645, + [SMALL_STATE(2730)] = 120714, + [SMALL_STATE(2731)] = 120783, + [SMALL_STATE(2732)] = 120852, + [SMALL_STATE(2733)] = 120921, + [SMALL_STATE(2734)] = 121030, + [SMALL_STATE(2735)] = 121099, + [SMALL_STATE(2736)] = 121168, + [SMALL_STATE(2737)] = 121237, + [SMALL_STATE(2738)] = 121306, + [SMALL_STATE(2739)] = 121375, + [SMALL_STATE(2740)] = 121444, + [SMALL_STATE(2741)] = 121513, + [SMALL_STATE(2742)] = 121580, + [SMALL_STATE(2743)] = 121649, + [SMALL_STATE(2744)] = 121716, + [SMALL_STATE(2745)] = 121785, + [SMALL_STATE(2746)] = 121852, + [SMALL_STATE(2747)] = 121919, + [SMALL_STATE(2748)] = 121988, + [SMALL_STATE(2749)] = 122057, + [SMALL_STATE(2750)] = 122126, + [SMALL_STATE(2751)] = 122193, + [SMALL_STATE(2752)] = 122260, + [SMALL_STATE(2753)] = 122327, + [SMALL_STATE(2754)] = 122394, + [SMALL_STATE(2755)] = 122461, + [SMALL_STATE(2756)] = 122528, + [SMALL_STATE(2757)] = 122595, + [SMALL_STATE(2758)] = 122662, + [SMALL_STATE(2759)] = 122729, + [SMALL_STATE(2760)] = 122796, + [SMALL_STATE(2761)] = 122863, + [SMALL_STATE(2762)] = 122930, + [SMALL_STATE(2763)] = 122997, + [SMALL_STATE(2764)] = 123064, + [SMALL_STATE(2765)] = 123131, + [SMALL_STATE(2766)] = 123198, + [SMALL_STATE(2767)] = 123265, + [SMALL_STATE(2768)] = 123332, + [SMALL_STATE(2769)] = 123399, + [SMALL_STATE(2770)] = 123466, + [SMALL_STATE(2771)] = 123533, + [SMALL_STATE(2772)] = 123600, + [SMALL_STATE(2773)] = 123667, + [SMALL_STATE(2774)] = 123734, + [SMALL_STATE(2775)] = 123801, + [SMALL_STATE(2776)] = 123868, + [SMALL_STATE(2777)] = 123935, + [SMALL_STATE(2778)] = 124002, + [SMALL_STATE(2779)] = 124069, + [SMALL_STATE(2780)] = 124136, + [SMALL_STATE(2781)] = 124203, + [SMALL_STATE(2782)] = 124272, + [SMALL_STATE(2783)] = 124339, + [SMALL_STATE(2784)] = 124406, + [SMALL_STATE(2785)] = 124473, + [SMALL_STATE(2786)] = 124540, + [SMALL_STATE(2787)] = 124607, + [SMALL_STATE(2788)] = 124676, + [SMALL_STATE(2789)] = 124743, + [SMALL_STATE(2790)] = 124810, + [SMALL_STATE(2791)] = 124877, + [SMALL_STATE(2792)] = 124948, + [SMALL_STATE(2793)] = 125015, + [SMALL_STATE(2794)] = 125082, + [SMALL_STATE(2795)] = 125149, + [SMALL_STATE(2796)] = 125216, + [SMALL_STATE(2797)] = 125283, + [SMALL_STATE(2798)] = 125350, + [SMALL_STATE(2799)] = 125417, + [SMALL_STATE(2800)] = 125484, + [SMALL_STATE(2801)] = 125551, + [SMALL_STATE(2802)] = 125618, + [SMALL_STATE(2803)] = 125685, + [SMALL_STATE(2804)] = 125752, + [SMALL_STATE(2805)] = 125819, + [SMALL_STATE(2806)] = 125886, + [SMALL_STATE(2807)] = 125953, + [SMALL_STATE(2808)] = 126020, + [SMALL_STATE(2809)] = 126087, + [SMALL_STATE(2810)] = 126154, + [SMALL_STATE(2811)] = 126221, + [SMALL_STATE(2812)] = 126288, + [SMALL_STATE(2813)] = 126355, + [SMALL_STATE(2814)] = 126422, + [SMALL_STATE(2815)] = 126489, + [SMALL_STATE(2816)] = 126556, + [SMALL_STATE(2817)] = 126623, [SMALL_STATE(2818)] = 126690, - [SMALL_STATE(2819)] = 126759, - [SMALL_STATE(2820)] = 126828, - [SMALL_STATE(2821)] = 126897, - [SMALL_STATE(2822)] = 126966, - [SMALL_STATE(2823)] = 127035, - [SMALL_STATE(2824)] = 127104, - [SMALL_STATE(2825)] = 127173, - [SMALL_STATE(2826)] = 127242, - [SMALL_STATE(2827)] = 127311, - [SMALL_STATE(2828)] = 127380, - [SMALL_STATE(2829)] = 127449, - [SMALL_STATE(2830)] = 127518, - [SMALL_STATE(2831)] = 127587, - [SMALL_STATE(2832)] = 127656, - [SMALL_STATE(2833)] = 127723, - [SMALL_STATE(2834)] = 127790, - [SMALL_STATE(2835)] = 127857, - [SMALL_STATE(2836)] = 127924, - [SMALL_STATE(2837)] = 127991, - [SMALL_STATE(2838)] = 128058, - [SMALL_STATE(2839)] = 128125, - [SMALL_STATE(2840)] = 128192, - [SMALL_STATE(2841)] = 128259, - [SMALL_STATE(2842)] = 128326, - [SMALL_STATE(2843)] = 128393, - [SMALL_STATE(2844)] = 128460, - [SMALL_STATE(2845)] = 128527, - [SMALL_STATE(2846)] = 128594, - [SMALL_STATE(2847)] = 128661, - [SMALL_STATE(2848)] = 128728, - [SMALL_STATE(2849)] = 128795, - [SMALL_STATE(2850)] = 128862, - [SMALL_STATE(2851)] = 128929, - [SMALL_STATE(2852)] = 128996, - [SMALL_STATE(2853)] = 129063, - [SMALL_STATE(2854)] = 129130, - [SMALL_STATE(2855)] = 129197, - [SMALL_STATE(2856)] = 129264, - [SMALL_STATE(2857)] = 129331, - [SMALL_STATE(2858)] = 129398, - [SMALL_STATE(2859)] = 129465, - [SMALL_STATE(2860)] = 129532, - [SMALL_STATE(2861)] = 129599, - [SMALL_STATE(2862)] = 129666, - [SMALL_STATE(2863)] = 129733, - [SMALL_STATE(2864)] = 129800, - [SMALL_STATE(2865)] = 129867, - [SMALL_STATE(2866)] = 129934, - [SMALL_STATE(2867)] = 130001, - [SMALL_STATE(2868)] = 130068, - [SMALL_STATE(2869)] = 130135, - [SMALL_STATE(2870)] = 130202, - [SMALL_STATE(2871)] = 130269, - [SMALL_STATE(2872)] = 130378, - [SMALL_STATE(2873)] = 130445, - [SMALL_STATE(2874)] = 130512, - [SMALL_STATE(2875)] = 130579, - [SMALL_STATE(2876)] = 130646, - [SMALL_STATE(2877)] = 130713, - [SMALL_STATE(2878)] = 130780, - [SMALL_STATE(2879)] = 130847, - [SMALL_STATE(2880)] = 130914, - [SMALL_STATE(2881)] = 130981, - [SMALL_STATE(2882)] = 131048, - [SMALL_STATE(2883)] = 131115, - [SMALL_STATE(2884)] = 131182, - [SMALL_STATE(2885)] = 131249, - [SMALL_STATE(2886)] = 131316, - [SMALL_STATE(2887)] = 131383, - [SMALL_STATE(2888)] = 131450, - [SMALL_STATE(2889)] = 131517, - [SMALL_STATE(2890)] = 131584, - [SMALL_STATE(2891)] = 131651, - [SMALL_STATE(2892)] = 131718, - [SMALL_STATE(2893)] = 131785, - [SMALL_STATE(2894)] = 131854, - [SMALL_STATE(2895)] = 131923, - [SMALL_STATE(2896)] = 131990, - [SMALL_STATE(2897)] = 132057, - [SMALL_STATE(2898)] = 132124, - [SMALL_STATE(2899)] = 132233, - [SMALL_STATE(2900)] = 132300, - [SMALL_STATE(2901)] = 132367, - [SMALL_STATE(2902)] = 132434, - [SMALL_STATE(2903)] = 132505, - [SMALL_STATE(2904)] = 132572, - [SMALL_STATE(2905)] = 132685, - [SMALL_STATE(2906)] = 132752, - [SMALL_STATE(2907)] = 132823, - [SMALL_STATE(2908)] = 132892, - [SMALL_STATE(2909)] = 132963, - [SMALL_STATE(2910)] = 133030, - [SMALL_STATE(2911)] = 133097, - [SMALL_STATE(2912)] = 133166, - [SMALL_STATE(2913)] = 133233, - [SMALL_STATE(2914)] = 133302, - [SMALL_STATE(2915)] = 133369, - [SMALL_STATE(2916)] = 133440, + [SMALL_STATE(2819)] = 126757, + [SMALL_STATE(2820)] = 126824, + [SMALL_STATE(2821)] = 126891, + [SMALL_STATE(2822)] = 126958, + [SMALL_STATE(2823)] = 127025, + [SMALL_STATE(2824)] = 127092, + [SMALL_STATE(2825)] = 127159, + [SMALL_STATE(2826)] = 127226, + [SMALL_STATE(2827)] = 127293, + [SMALL_STATE(2828)] = 127360, + [SMALL_STATE(2829)] = 127427, + [SMALL_STATE(2830)] = 127494, + [SMALL_STATE(2831)] = 127561, + [SMALL_STATE(2832)] = 127628, + [SMALL_STATE(2833)] = 127695, + [SMALL_STATE(2834)] = 127762, + [SMALL_STATE(2835)] = 127829, + [SMALL_STATE(2836)] = 127896, + [SMALL_STATE(2837)] = 127963, + [SMALL_STATE(2838)] = 128030, + [SMALL_STATE(2839)] = 128097, + [SMALL_STATE(2840)] = 128164, + [SMALL_STATE(2841)] = 128231, + [SMALL_STATE(2842)] = 128298, + [SMALL_STATE(2843)] = 128365, + [SMALL_STATE(2844)] = 128432, + [SMALL_STATE(2845)] = 128499, + [SMALL_STATE(2846)] = 128566, + [SMALL_STATE(2847)] = 128633, + [SMALL_STATE(2848)] = 128700, + [SMALL_STATE(2849)] = 128767, + [SMALL_STATE(2850)] = 128834, + [SMALL_STATE(2851)] = 128901, + [SMALL_STATE(2852)] = 128968, + [SMALL_STATE(2853)] = 129035, + [SMALL_STATE(2854)] = 129102, + [SMALL_STATE(2855)] = 129169, + [SMALL_STATE(2856)] = 129236, + [SMALL_STATE(2857)] = 129303, + [SMALL_STATE(2858)] = 129370, + [SMALL_STATE(2859)] = 129437, + [SMALL_STATE(2860)] = 129504, + [SMALL_STATE(2861)] = 129571, + [SMALL_STATE(2862)] = 129638, + [SMALL_STATE(2863)] = 129705, + [SMALL_STATE(2864)] = 129772, + [SMALL_STATE(2865)] = 129839, + [SMALL_STATE(2866)] = 129906, + [SMALL_STATE(2867)] = 129973, + [SMALL_STATE(2868)] = 130040, + [SMALL_STATE(2869)] = 130107, + [SMALL_STATE(2870)] = 130180, + [SMALL_STATE(2871)] = 130247, + [SMALL_STATE(2872)] = 130314, + [SMALL_STATE(2873)] = 130383, + [SMALL_STATE(2874)] = 130452, + [SMALL_STATE(2875)] = 130521, + [SMALL_STATE(2876)] = 130594, + [SMALL_STATE(2877)] = 130667, + [SMALL_STATE(2878)] = 130736, + [SMALL_STATE(2879)] = 130805, + [SMALL_STATE(2880)] = 130874, + [SMALL_STATE(2881)] = 130947, + [SMALL_STATE(2882)] = 131014, + [SMALL_STATE(2883)] = 131087, + [SMALL_STATE(2884)] = 131156, + [SMALL_STATE(2885)] = 131223, + [SMALL_STATE(2886)] = 131290, + [SMALL_STATE(2887)] = 131357, + [SMALL_STATE(2888)] = 131424, + [SMALL_STATE(2889)] = 131493, + [SMALL_STATE(2890)] = 131560, + [SMALL_STATE(2891)] = 131627, + [SMALL_STATE(2892)] = 131694, + [SMALL_STATE(2893)] = 131763, + [SMALL_STATE(2894)] = 131876, + [SMALL_STATE(2895)] = 131945, + [SMALL_STATE(2896)] = 132012, + [SMALL_STATE(2897)] = 132081, + [SMALL_STATE(2898)] = 132150, + [SMALL_STATE(2899)] = 132217, + [SMALL_STATE(2900)] = 132286, + [SMALL_STATE(2901)] = 132355, + [SMALL_STATE(2902)] = 132424, + [SMALL_STATE(2903)] = 132497, + [SMALL_STATE(2904)] = 132566, + [SMALL_STATE(2905)] = 132633, + [SMALL_STATE(2906)] = 132706, + [SMALL_STATE(2907)] = 132773, + [SMALL_STATE(2908)] = 132846, + [SMALL_STATE(2909)] = 132915, + [SMALL_STATE(2910)] = 132988, + [SMALL_STATE(2911)] = 133055, + [SMALL_STATE(2912)] = 133124, + [SMALL_STATE(2913)] = 133237, + [SMALL_STATE(2914)] = 133304, + [SMALL_STATE(2915)] = 133377, + [SMALL_STATE(2916)] = 133444, [SMALL_STATE(2917)] = 133511, [SMALL_STATE(2918)] = 133578, [SMALL_STATE(2919)] = 133645, - [SMALL_STATE(2920)] = 133739, - [SMALL_STATE(2921)] = 133807, - [SMALL_STATE(2922)] = 133873, - [SMALL_STATE(2923)] = 133939, - [SMALL_STATE(2924)] = 134005, - [SMALL_STATE(2925)] = 134071, - [SMALL_STATE(2926)] = 134137, - [SMALL_STATE(2927)] = 134203, - [SMALL_STATE(2928)] = 134269, - [SMALL_STATE(2929)] = 134335, - [SMALL_STATE(2930)] = 134401, - [SMALL_STATE(2931)] = 134467, - [SMALL_STATE(2932)] = 134533, - [SMALL_STATE(2933)] = 134599, - [SMALL_STATE(2934)] = 134665, - [SMALL_STATE(2935)] = 134731, - [SMALL_STATE(2936)] = 134797, - [SMALL_STATE(2937)] = 134863, - [SMALL_STATE(2938)] = 134929, - [SMALL_STATE(2939)] = 134995, - [SMALL_STATE(2940)] = 135061, - [SMALL_STATE(2941)] = 135127, - [SMALL_STATE(2942)] = 135243, - [SMALL_STATE(2943)] = 135309, - [SMALL_STATE(2944)] = 135375, - [SMALL_STATE(2945)] = 135441, - [SMALL_STATE(2946)] = 135507, - [SMALL_STATE(2947)] = 135573, - [SMALL_STATE(2948)] = 135639, - [SMALL_STATE(2949)] = 135705, - [SMALL_STATE(2950)] = 135771, - [SMALL_STATE(2951)] = 135837, - [SMALL_STATE(2952)] = 135903, - [SMALL_STATE(2953)] = 135969, - [SMALL_STATE(2954)] = 136039, - [SMALL_STATE(2955)] = 136105, - [SMALL_STATE(2956)] = 136171, - [SMALL_STATE(2957)] = 136237, - [SMALL_STATE(2958)] = 136307, - [SMALL_STATE(2959)] = 136377, - [SMALL_STATE(2960)] = 136443, - [SMALL_STATE(2961)] = 136509, - [SMALL_STATE(2962)] = 136625, - [SMALL_STATE(2963)] = 136733, - [SMALL_STATE(2964)] = 136799, - [SMALL_STATE(2965)] = 136865, - [SMALL_STATE(2966)] = 136931, - [SMALL_STATE(2967)] = 136997, - [SMALL_STATE(2968)] = 137105, - [SMALL_STATE(2969)] = 137171, - [SMALL_STATE(2970)] = 137241, - [SMALL_STATE(2971)] = 137307, - [SMALL_STATE(2972)] = 137377, - [SMALL_STATE(2973)] = 137493, - [SMALL_STATE(2974)] = 137563, - [SMALL_STATE(2975)] = 137633, - [SMALL_STATE(2976)] = 137703, - [SMALL_STATE(2977)] = 137773, - [SMALL_STATE(2978)] = 137843, - [SMALL_STATE(2979)] = 137913, - [SMALL_STATE(2980)] = 137979, - [SMALL_STATE(2981)] = 138049, - [SMALL_STATE(2982)] = 138115, - [SMALL_STATE(2983)] = 138181, - [SMALL_STATE(2984)] = 138251, - [SMALL_STATE(2985)] = 138317, - [SMALL_STATE(2986)] = 138383, - [SMALL_STATE(2987)] = 138449, - [SMALL_STATE(2988)] = 138519, - [SMALL_STATE(2989)] = 138585, - [SMALL_STATE(2990)] = 138651, - [SMALL_STATE(2991)] = 138721, - [SMALL_STATE(2992)] = 138833, - [SMALL_STATE(2993)] = 138899, - [SMALL_STATE(2994)] = 138965, - [SMALL_STATE(2995)] = 139031, - [SMALL_STATE(2996)] = 139097, - [SMALL_STATE(2997)] = 139163, - [SMALL_STATE(2998)] = 139229, - [SMALL_STATE(2999)] = 139295, - [SMALL_STATE(3000)] = 139361, - [SMALL_STATE(3001)] = 139427, - [SMALL_STATE(3002)] = 139493, - [SMALL_STATE(3003)] = 139559, - [SMALL_STATE(3004)] = 139625, - [SMALL_STATE(3005)] = 139691, - [SMALL_STATE(3006)] = 139757, - [SMALL_STATE(3007)] = 139823, - [SMALL_STATE(3008)] = 139889, - [SMALL_STATE(3009)] = 139955, - [SMALL_STATE(3010)] = 140021, - [SMALL_STATE(3011)] = 140087, - [SMALL_STATE(3012)] = 140153, - [SMALL_STATE(3013)] = 140219, - [SMALL_STATE(3014)] = 140285, - [SMALL_STATE(3015)] = 140351, - [SMALL_STATE(3016)] = 140417, - [SMALL_STATE(3017)] = 140483, - [SMALL_STATE(3018)] = 140549, - [SMALL_STATE(3019)] = 140615, - [SMALL_STATE(3020)] = 140681, - [SMALL_STATE(3021)] = 140747, - [SMALL_STATE(3022)] = 140813, - [SMALL_STATE(3023)] = 140879, - [SMALL_STATE(3024)] = 140945, - [SMALL_STATE(3025)] = 141011, - [SMALL_STATE(3026)] = 141077, - [SMALL_STATE(3027)] = 141143, - [SMALL_STATE(3028)] = 141209, - [SMALL_STATE(3029)] = 141275, - [SMALL_STATE(3030)] = 141341, - [SMALL_STATE(3031)] = 141407, - [SMALL_STATE(3032)] = 141473, - [SMALL_STATE(3033)] = 141539, - [SMALL_STATE(3034)] = 141605, - [SMALL_STATE(3035)] = 141671, - [SMALL_STATE(3036)] = 141737, - [SMALL_STATE(3037)] = 141803, - [SMALL_STATE(3038)] = 141911, - [SMALL_STATE(3039)] = 141977, - [SMALL_STATE(3040)] = 142047, - [SMALL_STATE(3041)] = 142117, - [SMALL_STATE(3042)] = 142183, - [SMALL_STATE(3043)] = 142249, - [SMALL_STATE(3044)] = 142315, - [SMALL_STATE(3045)] = 142381, - [SMALL_STATE(3046)] = 142447, - [SMALL_STATE(3047)] = 142513, - [SMALL_STATE(3048)] = 142579, - [SMALL_STATE(3049)] = 142645, - [SMALL_STATE(3050)] = 142711, - [SMALL_STATE(3051)] = 142777, - [SMALL_STATE(3052)] = 142843, - [SMALL_STATE(3053)] = 142909, - [SMALL_STATE(3054)] = 142975, - [SMALL_STATE(3055)] = 143041, - [SMALL_STATE(3056)] = 143107, - [SMALL_STATE(3057)] = 143173, - [SMALL_STATE(3058)] = 143239, - [SMALL_STATE(3059)] = 143305, - [SMALL_STATE(3060)] = 143371, - [SMALL_STATE(3061)] = 143437, - [SMALL_STATE(3062)] = 143507, - [SMALL_STATE(3063)] = 143575, - [SMALL_STATE(3064)] = 143643, - [SMALL_STATE(3065)] = 143711, - [SMALL_STATE(3066)] = 143777, - [SMALL_STATE(3067)] = 143843, - [SMALL_STATE(3068)] = 143909, - [SMALL_STATE(3069)] = 143975, - [SMALL_STATE(3070)] = 144041, - [SMALL_STATE(3071)] = 144107, - [SMALL_STATE(3072)] = 144173, - [SMALL_STATE(3073)] = 144239, - [SMALL_STATE(3074)] = 144305, - [SMALL_STATE(3075)] = 144371, - [SMALL_STATE(3076)] = 144437, - [SMALL_STATE(3077)] = 144503, - [SMALL_STATE(3078)] = 144569, - [SMALL_STATE(3079)] = 144635, - [SMALL_STATE(3080)] = 144703, - [SMALL_STATE(3081)] = 144771, - [SMALL_STATE(3082)] = 144839, - [SMALL_STATE(3083)] = 144905, - [SMALL_STATE(3084)] = 144973, - [SMALL_STATE(3085)] = 145041, - [SMALL_STATE(3086)] = 145109, - [SMALL_STATE(3087)] = 145175, - [SMALL_STATE(3088)] = 145241, - [SMALL_STATE(3089)] = 145307, - [SMALL_STATE(3090)] = 145373, - [SMALL_STATE(3091)] = 145439, - [SMALL_STATE(3092)] = 145505, - [SMALL_STATE(3093)] = 145571, - [SMALL_STATE(3094)] = 145637, - [SMALL_STATE(3095)] = 145703, - [SMALL_STATE(3096)] = 145769, - [SMALL_STATE(3097)] = 145835, - [SMALL_STATE(3098)] = 145901, - [SMALL_STATE(3099)] = 145967, - [SMALL_STATE(3100)] = 146033, - [SMALL_STATE(3101)] = 146099, - [SMALL_STATE(3102)] = 146165, - [SMALL_STATE(3103)] = 146231, - [SMALL_STATE(3104)] = 146297, - [SMALL_STATE(3105)] = 146363, - [SMALL_STATE(3106)] = 146429, - [SMALL_STATE(3107)] = 146495, - [SMALL_STATE(3108)] = 146561, - [SMALL_STATE(3109)] = 146627, - [SMALL_STATE(3110)] = 146693, - [SMALL_STATE(3111)] = 146759, - [SMALL_STATE(3112)] = 146827, - [SMALL_STATE(3113)] = 146895, - [SMALL_STATE(3114)] = 146963, - [SMALL_STATE(3115)] = 147031, - [SMALL_STATE(3116)] = 147099, - [SMALL_STATE(3117)] = 147167, - [SMALL_STATE(3118)] = 147235, - [SMALL_STATE(3119)] = 147303, - [SMALL_STATE(3120)] = 147371, - [SMALL_STATE(3121)] = 147437, - [SMALL_STATE(3122)] = 147503, - [SMALL_STATE(3123)] = 147569, - [SMALL_STATE(3124)] = 147635, - [SMALL_STATE(3125)] = 147701, - [SMALL_STATE(3126)] = 147783, - [SMALL_STATE(3127)] = 147871, - [SMALL_STATE(3128)] = 147937, - [SMALL_STATE(3129)] = 148003, - [SMALL_STATE(3130)] = 148069, - [SMALL_STATE(3131)] = 148135, - [SMALL_STATE(3132)] = 148237, - [SMALL_STATE(3133)] = 148303, - [SMALL_STATE(3134)] = 148375, - [SMALL_STATE(3135)] = 148453, - [SMALL_STATE(3136)] = 148527, - [SMALL_STATE(3137)] = 148633, - [SMALL_STATE(3138)] = 148739, - [SMALL_STATE(3139)] = 148805, - [SMALL_STATE(3140)] = 148909, - [SMALL_STATE(3141)] = 149009, - [SMALL_STATE(3142)] = 149107, - [SMALL_STATE(3143)] = 149201, - [SMALL_STATE(3144)] = 149293, - [SMALL_STATE(3145)] = 149359, - [SMALL_STATE(3146)] = 149449, - [SMALL_STATE(3147)] = 149535, - [SMALL_STATE(3148)] = 149615, - [SMALL_STATE(3149)] = 149681, - [SMALL_STATE(3150)] = 149747, - [SMALL_STATE(3151)] = 149813, - [SMALL_STATE(3152)] = 149879, - [SMALL_STATE(3153)] = 149945, - [SMALL_STATE(3154)] = 150011, - [SMALL_STATE(3155)] = 150077, - [SMALL_STATE(3156)] = 150143, - [SMALL_STATE(3157)] = 150209, - [SMALL_STATE(3158)] = 150275, - [SMALL_STATE(3159)] = 150341, - [SMALL_STATE(3160)] = 150407, - [SMALL_STATE(3161)] = 150473, - [SMALL_STATE(3162)] = 150539, - [SMALL_STATE(3163)] = 150605, - [SMALL_STATE(3164)] = 150671, - [SMALL_STATE(3165)] = 150737, - [SMALL_STATE(3166)] = 150803, - [SMALL_STATE(3167)] = 150869, - [SMALL_STATE(3168)] = 150935, - [SMALL_STATE(3169)] = 151005, - [SMALL_STATE(3170)] = 151071, - [SMALL_STATE(3171)] = 151179, - [SMALL_STATE(3172)] = 151245, - [SMALL_STATE(3173)] = 151311, - [SMALL_STATE(3174)] = 151377, - [SMALL_STATE(3175)] = 151443, - [SMALL_STATE(3176)] = 151509, - [SMALL_STATE(3177)] = 151575, - [SMALL_STATE(3178)] = 151641, - [SMALL_STATE(3179)] = 151707, - [SMALL_STATE(3180)] = 151773, - [SMALL_STATE(3181)] = 151839, - [SMALL_STATE(3182)] = 151905, - [SMALL_STATE(3183)] = 151971, - [SMALL_STATE(3184)] = 152037, - [SMALL_STATE(3185)] = 152103, - [SMALL_STATE(3186)] = 152169, - [SMALL_STATE(3187)] = 152235, - [SMALL_STATE(3188)] = 152301, - [SMALL_STATE(3189)] = 152367, - [SMALL_STATE(3190)] = 152475, - [SMALL_STATE(3191)] = 152541, - [SMALL_STATE(3192)] = 152611, - [SMALL_STATE(3193)] = 152677, - [SMALL_STATE(3194)] = 152743, - [SMALL_STATE(3195)] = 152809, - [SMALL_STATE(3196)] = 152875, - [SMALL_STATE(3197)] = 152941, - [SMALL_STATE(3198)] = 153007, - [SMALL_STATE(3199)] = 153073, - [SMALL_STATE(3200)] = 153139, - [SMALL_STATE(3201)] = 153207, - [SMALL_STATE(3202)] = 153273, - [SMALL_STATE(3203)] = 153339, - [SMALL_STATE(3204)] = 153405, - [SMALL_STATE(3205)] = 153471, - [SMALL_STATE(3206)] = 153537, - [SMALL_STATE(3207)] = 153603, - [SMALL_STATE(3208)] = 153669, - [SMALL_STATE(3209)] = 153735, - [SMALL_STATE(3210)] = 153801, - [SMALL_STATE(3211)] = 153867, - [SMALL_STATE(3212)] = 153933, - [SMALL_STATE(3213)] = 153999, - [SMALL_STATE(3214)] = 154065, - [SMALL_STATE(3215)] = 154131, - [SMALL_STATE(3216)] = 154197, - [SMALL_STATE(3217)] = 154263, - [SMALL_STATE(3218)] = 154329, - [SMALL_STATE(3219)] = 154395, - [SMALL_STATE(3220)] = 154461, - [SMALL_STATE(3221)] = 154527, - [SMALL_STATE(3222)] = 154593, - [SMALL_STATE(3223)] = 154659, - [SMALL_STATE(3224)] = 154729, - [SMALL_STATE(3225)] = 154795, - [SMALL_STATE(3226)] = 154861, - [SMALL_STATE(3227)] = 154927, - [SMALL_STATE(3228)] = 154993, - [SMALL_STATE(3229)] = 155059, - [SMALL_STATE(3230)] = 155125, - [SMALL_STATE(3231)] = 155191, - [SMALL_STATE(3232)] = 155257, - [SMALL_STATE(3233)] = 155323, - [SMALL_STATE(3234)] = 155389, - [SMALL_STATE(3235)] = 155455, - [SMALL_STATE(3236)] = 155521, - [SMALL_STATE(3237)] = 155629, - [SMALL_STATE(3238)] = 155695, - [SMALL_STATE(3239)] = 155761, - [SMALL_STATE(3240)] = 155827, - [SMALL_STATE(3241)] = 155893, - [SMALL_STATE(3242)] = 155959, - [SMALL_STATE(3243)] = 156025, - [SMALL_STATE(3244)] = 156091, - [SMALL_STATE(3245)] = 156157, - [SMALL_STATE(3246)] = 156223, - [SMALL_STATE(3247)] = 156289, - [SMALL_STATE(3248)] = 156355, - [SMALL_STATE(3249)] = 156425, - [SMALL_STATE(3250)] = 156491, - [SMALL_STATE(3251)] = 156557, - [SMALL_STATE(3252)] = 156623, - [SMALL_STATE(3253)] = 156689, - [SMALL_STATE(3254)] = 156755, - [SMALL_STATE(3255)] = 156835, - [SMALL_STATE(3256)] = 156901, - [SMALL_STATE(3257)] = 156967, - [SMALL_STATE(3258)] = 157049, - [SMALL_STATE(3259)] = 157137, - [SMALL_STATE(3260)] = 157239, - [SMALL_STATE(3261)] = 157305, - [SMALL_STATE(3262)] = 157377, - [SMALL_STATE(3263)] = 157455, - [SMALL_STATE(3264)] = 157529, - [SMALL_STATE(3265)] = 157635, - [SMALL_STATE(3266)] = 157741, - [SMALL_STATE(3267)] = 157807, - [SMALL_STATE(3268)] = 157911, - [SMALL_STATE(3269)] = 158011, - [SMALL_STATE(3270)] = 158109, - [SMALL_STATE(3271)] = 158203, - [SMALL_STATE(3272)] = 158295, - [SMALL_STATE(3273)] = 158385, - [SMALL_STATE(3274)] = 158471, - [SMALL_STATE(3275)] = 158551, - [SMALL_STATE(3276)] = 158631, - [SMALL_STATE(3277)] = 158701, - [SMALL_STATE(3278)] = 158767, - [SMALL_STATE(3279)] = 158833, - [SMALL_STATE(3280)] = 158899, - [SMALL_STATE(3281)] = 158965, - [SMALL_STATE(3282)] = 159031, - [SMALL_STATE(3283)] = 159099, - [SMALL_STATE(3284)] = 159165, - [SMALL_STATE(3285)] = 159231, - [SMALL_STATE(3286)] = 159297, - [SMALL_STATE(3287)] = 159363, - [SMALL_STATE(3288)] = 159429, - [SMALL_STATE(3289)] = 159495, - [SMALL_STATE(3290)] = 159561, - [SMALL_STATE(3291)] = 159627, - [SMALL_STATE(3292)] = 159693, - [SMALL_STATE(3293)] = 159759, - [SMALL_STATE(3294)] = 159825, - [SMALL_STATE(3295)] = 159891, - [SMALL_STATE(3296)] = 159957, - [SMALL_STATE(3297)] = 160023, - [SMALL_STATE(3298)] = 160089, - [SMALL_STATE(3299)] = 160205, - [SMALL_STATE(3300)] = 160271, - [SMALL_STATE(3301)] = 160337, - [SMALL_STATE(3302)] = 160403, - [SMALL_STATE(3303)] = 160469, - [SMALL_STATE(3304)] = 160535, - [SMALL_STATE(3305)] = 160601, - [SMALL_STATE(3306)] = 160667, - [SMALL_STATE(3307)] = 160733, - [SMALL_STATE(3308)] = 160841, - [SMALL_STATE(3309)] = 160907, - [SMALL_STATE(3310)] = 160973, - [SMALL_STATE(3311)] = 161039, - [SMALL_STATE(3312)] = 161105, - [SMALL_STATE(3313)] = 161171, - [SMALL_STATE(3314)] = 161237, - [SMALL_STATE(3315)] = 161303, - [SMALL_STATE(3316)] = 161369, - [SMALL_STATE(3317)] = 161435, - [SMALL_STATE(3318)] = 161501, - [SMALL_STATE(3319)] = 161567, - [SMALL_STATE(3320)] = 161633, - [SMALL_STATE(3321)] = 161699, - [SMALL_STATE(3322)] = 161765, - [SMALL_STATE(3323)] = 161833, - [SMALL_STATE(3324)] = 161901, - [SMALL_STATE(3325)] = 161967, - [SMALL_STATE(3326)] = 162033, - [SMALL_STATE(3327)] = 162099, - [SMALL_STATE(3328)] = 162165, - [SMALL_STATE(3329)] = 162233, - [SMALL_STATE(3330)] = 162299, - [SMALL_STATE(3331)] = 162365, - [SMALL_STATE(3332)] = 162431, - [SMALL_STATE(3333)] = 162497, - [SMALL_STATE(3334)] = 162563, - [SMALL_STATE(3335)] = 162631, - [SMALL_STATE(3336)] = 162699, - [SMALL_STATE(3337)] = 162767, - [SMALL_STATE(3338)] = 162835, - [SMALL_STATE(3339)] = 162901, - [SMALL_STATE(3340)] = 162971, - [SMALL_STATE(3341)] = 163039, - [SMALL_STATE(3342)] = 163105, - [SMALL_STATE(3343)] = 163171, - [SMALL_STATE(3344)] = 163237, - [SMALL_STATE(3345)] = 163303, - [SMALL_STATE(3346)] = 163373, - [SMALL_STATE(3347)] = 163439, - [SMALL_STATE(3348)] = 163507, - [SMALL_STATE(3349)] = 163575, - [SMALL_STATE(3350)] = 163643, - [SMALL_STATE(3351)] = 163711, - [SMALL_STATE(3352)] = 163779, - [SMALL_STATE(3353)] = 163847, - [SMALL_STATE(3354)] = 163915, - [SMALL_STATE(3355)] = 163983, - [SMALL_STATE(3356)] = 164051, - [SMALL_STATE(3357)] = 164119, - [SMALL_STATE(3358)] = 164187, - [SMALL_STATE(3359)] = 164255, - [SMALL_STATE(3360)] = 164321, - [SMALL_STATE(3361)] = 164387, - [SMALL_STATE(3362)] = 164453, - [SMALL_STATE(3363)] = 164519, - [SMALL_STATE(3364)] = 164585, - [SMALL_STATE(3365)] = 164651, - [SMALL_STATE(3366)] = 164717, - [SMALL_STATE(3367)] = 164783, - [SMALL_STATE(3368)] = 164849, - [SMALL_STATE(3369)] = 164915, - [SMALL_STATE(3370)] = 165023, - [SMALL_STATE(3371)] = 165093, - [SMALL_STATE(3372)] = 165159, - [SMALL_STATE(3373)] = 165225, - [SMALL_STATE(3374)] = 165291, - [SMALL_STATE(3375)] = 165357, - [SMALL_STATE(3376)] = 165423, - [SMALL_STATE(3377)] = 165489, - [SMALL_STATE(3378)] = 165557, - [SMALL_STATE(3379)] = 165623, - [SMALL_STATE(3380)] = 165691, - [SMALL_STATE(3381)] = 165759, - [SMALL_STATE(3382)] = 165827, - [SMALL_STATE(3383)] = 165893, - [SMALL_STATE(3384)] = 165959, - [SMALL_STATE(3385)] = 166025, - [SMALL_STATE(3386)] = 166091, - [SMALL_STATE(3387)] = 166157, - [SMALL_STATE(3388)] = 166223, - [SMALL_STATE(3389)] = 166289, - [SMALL_STATE(3390)] = 166355, - [SMALL_STATE(3391)] = 166421, - [SMALL_STATE(3392)] = 166487, - [SMALL_STATE(3393)] = 166553, - [SMALL_STATE(3394)] = 166619, - [SMALL_STATE(3395)] = 166685, - [SMALL_STATE(3396)] = 166751, - [SMALL_STATE(3397)] = 166821, - [SMALL_STATE(3398)] = 166887, - [SMALL_STATE(3399)] = 166953, - [SMALL_STATE(3400)] = 167019, - [SMALL_STATE(3401)] = 167085, - [SMALL_STATE(3402)] = 167193, - [SMALL_STATE(3403)] = 167259, - [SMALL_STATE(3404)] = 167325, - [SMALL_STATE(3405)] = 167391, - [SMALL_STATE(3406)] = 167457, - [SMALL_STATE(3407)] = 167523, - [SMALL_STATE(3408)] = 167589, - [SMALL_STATE(3409)] = 167669, - [SMALL_STATE(3410)] = 167749, - [SMALL_STATE(3411)] = 167835, - [SMALL_STATE(3412)] = 167925, - [SMALL_STATE(3413)] = 168017, - [SMALL_STATE(3414)] = 168115, - [SMALL_STATE(3415)] = 168231, - [SMALL_STATE(3416)] = 168331, - [SMALL_STATE(3417)] = 168443, - [SMALL_STATE(3418)] = 168547, - [SMALL_STATE(3419)] = 168653, - [SMALL_STATE(3420)] = 168759, - [SMALL_STATE(3421)] = 168833, - [SMALL_STATE(3422)] = 168899, - [SMALL_STATE(3423)] = 168965, - [SMALL_STATE(3424)] = 169037, - [SMALL_STATE(3425)] = 169109, - [SMALL_STATE(3426)] = 169187, - [SMALL_STATE(3427)] = 169259, - [SMALL_STATE(3428)] = 169361, - [SMALL_STATE(3429)] = 169449, - [SMALL_STATE(3430)] = 169531, - [SMALL_STATE(3431)] = 169601, - [SMALL_STATE(3432)] = 169667, - [SMALL_STATE(3433)] = 169733, - [SMALL_STATE(3434)] = 169799, - [SMALL_STATE(3435)] = 169869, - [SMALL_STATE(3436)] = 169939, - [SMALL_STATE(3437)] = 170005, - [SMALL_STATE(3438)] = 170075, - [SMALL_STATE(3439)] = 170141, - [SMALL_STATE(3440)] = 170207, - [SMALL_STATE(3441)] = 170273, - [SMALL_STATE(3442)] = 170339, - [SMALL_STATE(3443)] = 170405, - [SMALL_STATE(3444)] = 170477, - [SMALL_STATE(3445)] = 170543, - [SMALL_STATE(3446)] = 170609, - [SMALL_STATE(3447)] = 170679, - [SMALL_STATE(3448)] = 170745, - [SMALL_STATE(3449)] = 170813, - [SMALL_STATE(3450)] = 170881, - [SMALL_STATE(3451)] = 170947, - [SMALL_STATE(3452)] = 171013, - [SMALL_STATE(3453)] = 171093, - [SMALL_STATE(3454)] = 171173, - [SMALL_STATE(3455)] = 171259, - [SMALL_STATE(3456)] = 171349, - [SMALL_STATE(3457)] = 171421, - [SMALL_STATE(3458)] = 171493, - [SMALL_STATE(3459)] = 171585, - [SMALL_STATE(3460)] = 171679, - [SMALL_STATE(3461)] = 171777, - [SMALL_STATE(3462)] = 171877, - [SMALL_STATE(3463)] = 171981, - [SMALL_STATE(3464)] = 172087, - [SMALL_STATE(3465)] = 172153, - [SMALL_STATE(3466)] = 172219, - [SMALL_STATE(3467)] = 172289, - [SMALL_STATE(3468)] = 172395, - [SMALL_STATE(3469)] = 172465, - [SMALL_STATE(3470)] = 172539, - [SMALL_STATE(3471)] = 172617, - [SMALL_STATE(3472)] = 172687, - [SMALL_STATE(3473)] = 172795, - [SMALL_STATE(3474)] = 172867, - [SMALL_STATE(3475)] = 172969, - [SMALL_STATE(3476)] = 173057, - [SMALL_STATE(3477)] = 173139, - [SMALL_STATE(3478)] = 173247, - [SMALL_STATE(3479)] = 173313, - [SMALL_STATE(3480)] = 173379, - [SMALL_STATE(3481)] = 173445, - [SMALL_STATE(3482)] = 173511, - [SMALL_STATE(3483)] = 173577, - [SMALL_STATE(3484)] = 173693, - [SMALL_STATE(3485)] = 173759, - [SMALL_STATE(3486)] = 173825, - [SMALL_STATE(3487)] = 173895, - [SMALL_STATE(3488)] = 173961, - [SMALL_STATE(3489)] = 174027, - [SMALL_STATE(3490)] = 174135, - [SMALL_STATE(3491)] = 174201, - [SMALL_STATE(3492)] = 174267, + [SMALL_STATE(2920)] = 133711, + [SMALL_STATE(2921)] = 133803, + [SMALL_STATE(2922)] = 133869, + [SMALL_STATE(2923)] = 133935, + [SMALL_STATE(2924)] = 134001, + [SMALL_STATE(2925)] = 134067, + [SMALL_STATE(2926)] = 134133, + [SMALL_STATE(2927)] = 134199, + [SMALL_STATE(2928)] = 134265, + [SMALL_STATE(2929)] = 134331, + [SMALL_STATE(2930)] = 134397, + [SMALL_STATE(2931)] = 134463, + [SMALL_STATE(2932)] = 134529, + [SMALL_STATE(2933)] = 134595, + [SMALL_STATE(2934)] = 134661, + [SMALL_STATE(2935)] = 134727, + [SMALL_STATE(2936)] = 134793, + [SMALL_STATE(2937)] = 134859, + [SMALL_STATE(2938)] = 134925, + [SMALL_STATE(2939)] = 134991, + [SMALL_STATE(2940)] = 135057, + [SMALL_STATE(2941)] = 135123, + [SMALL_STATE(2942)] = 135189, + [SMALL_STATE(2943)] = 135255, + [SMALL_STATE(2944)] = 135321, + [SMALL_STATE(2945)] = 135387, + [SMALL_STATE(2946)] = 135453, + [SMALL_STATE(2947)] = 135519, + [SMALL_STATE(2948)] = 135585, + [SMALL_STATE(2949)] = 135651, + [SMALL_STATE(2950)] = 135717, + [SMALL_STATE(2951)] = 135833, + [SMALL_STATE(2952)] = 135899, + [SMALL_STATE(2953)] = 135965, + [SMALL_STATE(2954)] = 136031, + [SMALL_STATE(2955)] = 136097, + [SMALL_STATE(2956)] = 136163, + [SMALL_STATE(2957)] = 136229, + [SMALL_STATE(2958)] = 136295, + [SMALL_STATE(2959)] = 136361, + [SMALL_STATE(2960)] = 136427, + [SMALL_STATE(2961)] = 136543, + [SMALL_STATE(2962)] = 136609, + [SMALL_STATE(2963)] = 136675, + [SMALL_STATE(2964)] = 136741, + [SMALL_STATE(2965)] = 136807, + [SMALL_STATE(2966)] = 136873, + [SMALL_STATE(2967)] = 136939, + [SMALL_STATE(2968)] = 137005, + [SMALL_STATE(2969)] = 137071, + [SMALL_STATE(2970)] = 137137, + [SMALL_STATE(2971)] = 137203, + [SMALL_STATE(2972)] = 137269, + [SMALL_STATE(2973)] = 137335, + [SMALL_STATE(2974)] = 137401, + [SMALL_STATE(2975)] = 137509, + [SMALL_STATE(2976)] = 137575, + [SMALL_STATE(2977)] = 137645, + [SMALL_STATE(2978)] = 137711, + [SMALL_STATE(2979)] = 137777, + [SMALL_STATE(2980)] = 137843, + [SMALL_STATE(2981)] = 137909, + [SMALL_STATE(2982)] = 137975, + [SMALL_STATE(2983)] = 138041, + [SMALL_STATE(2984)] = 138107, + [SMALL_STATE(2985)] = 138173, + [SMALL_STATE(2986)] = 138239, + [SMALL_STATE(2987)] = 138305, + [SMALL_STATE(2988)] = 138375, + [SMALL_STATE(2989)] = 138441, + [SMALL_STATE(2990)] = 138507, + [SMALL_STATE(2991)] = 138573, + [SMALL_STATE(2992)] = 138639, + [SMALL_STATE(2993)] = 138705, + [SMALL_STATE(2994)] = 138771, + [SMALL_STATE(2995)] = 138837, + [SMALL_STATE(2996)] = 138903, + [SMALL_STATE(2997)] = 138969, + [SMALL_STATE(2998)] = 139035, + [SMALL_STATE(2999)] = 139101, + [SMALL_STATE(3000)] = 139167, + [SMALL_STATE(3001)] = 139233, + [SMALL_STATE(3002)] = 139299, + [SMALL_STATE(3003)] = 139365, + [SMALL_STATE(3004)] = 139431, + [SMALL_STATE(3005)] = 139497, + [SMALL_STATE(3006)] = 139567, + [SMALL_STATE(3007)] = 139633, + [SMALL_STATE(3008)] = 139699, + [SMALL_STATE(3009)] = 139765, + [SMALL_STATE(3010)] = 139831, + [SMALL_STATE(3011)] = 139897, + [SMALL_STATE(3012)] = 139963, + [SMALL_STATE(3013)] = 140029, + [SMALL_STATE(3014)] = 140095, + [SMALL_STATE(3015)] = 140161, + [SMALL_STATE(3016)] = 140227, + [SMALL_STATE(3017)] = 140293, + [SMALL_STATE(3018)] = 140359, + [SMALL_STATE(3019)] = 140425, + [SMALL_STATE(3020)] = 140491, + [SMALL_STATE(3021)] = 140557, + [SMALL_STATE(3022)] = 140623, + [SMALL_STATE(3023)] = 140689, + [SMALL_STATE(3024)] = 140755, + [SMALL_STATE(3025)] = 140821, + [SMALL_STATE(3026)] = 140887, + [SMALL_STATE(3027)] = 140953, + [SMALL_STATE(3028)] = 141019, + [SMALL_STATE(3029)] = 141085, + [SMALL_STATE(3030)] = 141151, + [SMALL_STATE(3031)] = 141217, + [SMALL_STATE(3032)] = 141283, + [SMALL_STATE(3033)] = 141349, + [SMALL_STATE(3034)] = 141415, + [SMALL_STATE(3035)] = 141481, + [SMALL_STATE(3036)] = 141547, + [SMALL_STATE(3037)] = 141613, + [SMALL_STATE(3038)] = 141679, + [SMALL_STATE(3039)] = 141795, + [SMALL_STATE(3040)] = 141911, + [SMALL_STATE(3041)] = 141981, + [SMALL_STATE(3042)] = 142047, + [SMALL_STATE(3043)] = 142113, + [SMALL_STATE(3044)] = 142179, + [SMALL_STATE(3045)] = 142245, + [SMALL_STATE(3046)] = 142311, + [SMALL_STATE(3047)] = 142381, + [SMALL_STATE(3048)] = 142447, + [SMALL_STATE(3049)] = 142513, + [SMALL_STATE(3050)] = 142579, + [SMALL_STATE(3051)] = 142645, + [SMALL_STATE(3052)] = 142711, + [SMALL_STATE(3053)] = 142777, + [SMALL_STATE(3054)] = 142843, + [SMALL_STATE(3055)] = 142909, + [SMALL_STATE(3056)] = 142975, + [SMALL_STATE(3057)] = 143041, + [SMALL_STATE(3058)] = 143107, + [SMALL_STATE(3059)] = 143177, + [SMALL_STATE(3060)] = 143243, + [SMALL_STATE(3061)] = 143309, + [SMALL_STATE(3062)] = 143375, + [SMALL_STATE(3063)] = 143441, + [SMALL_STATE(3064)] = 143507, + [SMALL_STATE(3065)] = 143573, + [SMALL_STATE(3066)] = 143639, + [SMALL_STATE(3067)] = 143705, + [SMALL_STATE(3068)] = 143771, + [SMALL_STATE(3069)] = 143837, + [SMALL_STATE(3070)] = 143903, + [SMALL_STATE(3071)] = 143969, + [SMALL_STATE(3072)] = 144035, + [SMALL_STATE(3073)] = 144101, + [SMALL_STATE(3074)] = 144167, + [SMALL_STATE(3075)] = 144233, + [SMALL_STATE(3076)] = 144299, + [SMALL_STATE(3077)] = 144365, + [SMALL_STATE(3078)] = 144431, + [SMALL_STATE(3079)] = 144497, + [SMALL_STATE(3080)] = 144563, + [SMALL_STATE(3081)] = 144629, + [SMALL_STATE(3082)] = 144695, + [SMALL_STATE(3083)] = 144761, + [SMALL_STATE(3084)] = 144827, + [SMALL_STATE(3085)] = 144893, + [SMALL_STATE(3086)] = 144959, + [SMALL_STATE(3087)] = 145025, + [SMALL_STATE(3088)] = 145091, + [SMALL_STATE(3089)] = 145157, + [SMALL_STATE(3090)] = 145223, + [SMALL_STATE(3091)] = 145289, + [SMALL_STATE(3092)] = 145355, + [SMALL_STATE(3093)] = 145421, + [SMALL_STATE(3094)] = 145487, + [SMALL_STATE(3095)] = 145553, + [SMALL_STATE(3096)] = 145619, + [SMALL_STATE(3097)] = 145685, + [SMALL_STATE(3098)] = 145751, + [SMALL_STATE(3099)] = 145817, + [SMALL_STATE(3100)] = 145883, + [SMALL_STATE(3101)] = 145949, + [SMALL_STATE(3102)] = 146015, + [SMALL_STATE(3103)] = 146081, + [SMALL_STATE(3104)] = 146147, + [SMALL_STATE(3105)] = 146213, + [SMALL_STATE(3106)] = 146279, + [SMALL_STATE(3107)] = 146345, + [SMALL_STATE(3108)] = 146411, + [SMALL_STATE(3109)] = 146477, + [SMALL_STATE(3110)] = 146543, + [SMALL_STATE(3111)] = 146609, + [SMALL_STATE(3112)] = 146675, + [SMALL_STATE(3113)] = 146741, + [SMALL_STATE(3114)] = 146807, + [SMALL_STATE(3115)] = 146875, + [SMALL_STATE(3116)] = 146941, + [SMALL_STATE(3117)] = 147007, + [SMALL_STATE(3118)] = 147073, + [SMALL_STATE(3119)] = 147139, + [SMALL_STATE(3120)] = 147205, + [SMALL_STATE(3121)] = 147271, + [SMALL_STATE(3122)] = 147337, + [SMALL_STATE(3123)] = 147403, + [SMALL_STATE(3124)] = 147469, + [SMALL_STATE(3125)] = 147535, + [SMALL_STATE(3126)] = 147601, + [SMALL_STATE(3127)] = 147667, + [SMALL_STATE(3128)] = 147733, + [SMALL_STATE(3129)] = 147799, + [SMALL_STATE(3130)] = 147865, + [SMALL_STATE(3131)] = 147931, + [SMALL_STATE(3132)] = 147997, + [SMALL_STATE(3133)] = 148063, + [SMALL_STATE(3134)] = 148129, + [SMALL_STATE(3135)] = 148195, + [SMALL_STATE(3136)] = 148265, + [SMALL_STATE(3137)] = 148331, + [SMALL_STATE(3138)] = 148397, + [SMALL_STATE(3139)] = 148463, + [SMALL_STATE(3140)] = 148529, + [SMALL_STATE(3141)] = 148595, + [SMALL_STATE(3142)] = 148661, + [SMALL_STATE(3143)] = 148727, + [SMALL_STATE(3144)] = 148793, + [SMALL_STATE(3145)] = 148859, + [SMALL_STATE(3146)] = 148925, + [SMALL_STATE(3147)] = 148991, + [SMALL_STATE(3148)] = 149057, + [SMALL_STATE(3149)] = 149123, + [SMALL_STATE(3150)] = 149189, + [SMALL_STATE(3151)] = 149297, + [SMALL_STATE(3152)] = 149363, + [SMALL_STATE(3153)] = 149429, + [SMALL_STATE(3154)] = 149495, + [SMALL_STATE(3155)] = 149561, + [SMALL_STATE(3156)] = 149631, + [SMALL_STATE(3157)] = 149703, + [SMALL_STATE(3158)] = 149769, + [SMALL_STATE(3159)] = 149835, + [SMALL_STATE(3160)] = 149901, + [SMALL_STATE(3161)] = 149967, + [SMALL_STATE(3162)] = 150033, + [SMALL_STATE(3163)] = 150099, + [SMALL_STATE(3164)] = 150169, + [SMALL_STATE(3165)] = 150235, + [SMALL_STATE(3166)] = 150305, + [SMALL_STATE(3167)] = 150373, + [SMALL_STATE(3168)] = 150441, + [SMALL_STATE(3169)] = 150511, + [SMALL_STATE(3170)] = 150579, + [SMALL_STATE(3171)] = 150647, + [SMALL_STATE(3172)] = 150715, + [SMALL_STATE(3173)] = 150783, + [SMALL_STATE(3174)] = 150851, + [SMALL_STATE(3175)] = 150919, + [SMALL_STATE(3176)] = 150987, + [SMALL_STATE(3177)] = 151055, + [SMALL_STATE(3178)] = 151123, + [SMALL_STATE(3179)] = 151193, + [SMALL_STATE(3180)] = 151261, + [SMALL_STATE(3181)] = 151329, + [SMALL_STATE(3182)] = 151397, + [SMALL_STATE(3183)] = 151465, + [SMALL_STATE(3184)] = 151531, + [SMALL_STATE(3185)] = 151597, + [SMALL_STATE(3186)] = 151665, + [SMALL_STATE(3187)] = 151733, + [SMALL_STATE(3188)] = 151801, + [SMALL_STATE(3189)] = 151869, + [SMALL_STATE(3190)] = 151977, + [SMALL_STATE(3191)] = 152045, + [SMALL_STATE(3192)] = 152115, + [SMALL_STATE(3193)] = 152181, + [SMALL_STATE(3194)] = 152251, + [SMALL_STATE(3195)] = 152317, + [SMALL_STATE(3196)] = 152383, + [SMALL_STATE(3197)] = 152449, + [SMALL_STATE(3198)] = 152557, + [SMALL_STATE(3199)] = 152627, + [SMALL_STATE(3200)] = 152693, + [SMALL_STATE(3201)] = 152759, + [SMALL_STATE(3202)] = 152825, + [SMALL_STATE(3203)] = 152891, + [SMALL_STATE(3204)] = 152959, + [SMALL_STATE(3205)] = 153039, + [SMALL_STATE(3206)] = 153119, + [SMALL_STATE(3207)] = 153205, + [SMALL_STATE(3208)] = 153295, + [SMALL_STATE(3209)] = 153361, + [SMALL_STATE(3210)] = 153455, + [SMALL_STATE(3211)] = 153553, + [SMALL_STATE(3212)] = 153653, + [SMALL_STATE(3213)] = 153757, + [SMALL_STATE(3214)] = 153863, + [SMALL_STATE(3215)] = 153969, + [SMALL_STATE(3216)] = 154043, + [SMALL_STATE(3217)] = 154121, + [SMALL_STATE(3218)] = 154193, + [SMALL_STATE(3219)] = 154295, + [SMALL_STATE(3220)] = 154383, + [SMALL_STATE(3221)] = 154465, + [SMALL_STATE(3222)] = 154533, + [SMALL_STATE(3223)] = 154601, + [SMALL_STATE(3224)] = 154671, + [SMALL_STATE(3225)] = 154739, + [SMALL_STATE(3226)] = 154809, + [SMALL_STATE(3227)] = 154875, + [SMALL_STATE(3228)] = 154941, + [SMALL_STATE(3229)] = 155007, + [SMALL_STATE(3230)] = 155073, + [SMALL_STATE(3231)] = 155139, + [SMALL_STATE(3232)] = 155205, + [SMALL_STATE(3233)] = 155271, + [SMALL_STATE(3234)] = 155337, + [SMALL_STATE(3235)] = 155407, + [SMALL_STATE(3236)] = 155473, + [SMALL_STATE(3237)] = 155543, + [SMALL_STATE(3238)] = 155609, + [SMALL_STATE(3239)] = 155675, + [SMALL_STATE(3240)] = 155741, + [SMALL_STATE(3241)] = 155807, + [SMALL_STATE(3242)] = 155873, + [SMALL_STATE(3243)] = 155939, + [SMALL_STATE(3244)] = 156021, + [SMALL_STATE(3245)] = 156091, + [SMALL_STATE(3246)] = 156157, + [SMALL_STATE(3247)] = 156227, + [SMALL_STATE(3248)] = 156293, + [SMALL_STATE(3249)] = 156359, + [SMALL_STATE(3250)] = 156425, + [SMALL_STATE(3251)] = 156491, + [SMALL_STATE(3252)] = 156557, + [SMALL_STATE(3253)] = 156623, + [SMALL_STATE(3254)] = 156689, + [SMALL_STATE(3255)] = 156755, + [SMALL_STATE(3256)] = 156821, + [SMALL_STATE(3257)] = 156887, + [SMALL_STATE(3258)] = 156969, + [SMALL_STATE(3259)] = 157057, + [SMALL_STATE(3260)] = 157159, + [SMALL_STATE(3261)] = 157225, + [SMALL_STATE(3262)] = 157297, + [SMALL_STATE(3263)] = 157375, + [SMALL_STATE(3264)] = 157449, + [SMALL_STATE(3265)] = 157555, + [SMALL_STATE(3266)] = 157661, + [SMALL_STATE(3267)] = 157731, + [SMALL_STATE(3268)] = 157835, + [SMALL_STATE(3269)] = 157935, + [SMALL_STATE(3270)] = 158033, + [SMALL_STATE(3271)] = 158127, + [SMALL_STATE(3272)] = 158219, + [SMALL_STATE(3273)] = 158309, + [SMALL_STATE(3274)] = 158395, + [SMALL_STATE(3275)] = 158475, + [SMALL_STATE(3276)] = 158555, + [SMALL_STATE(3277)] = 158625, + [SMALL_STATE(3278)] = 158691, + [SMALL_STATE(3279)] = 158757, + [SMALL_STATE(3280)] = 158827, + [SMALL_STATE(3281)] = 158893, + [SMALL_STATE(3282)] = 158963, + [SMALL_STATE(3283)] = 159051, + [SMALL_STATE(3284)] = 159153, + [SMALL_STATE(3285)] = 159219, + [SMALL_STATE(3286)] = 159291, + [SMALL_STATE(3287)] = 159357, + [SMALL_STATE(3288)] = 159423, + [SMALL_STATE(3289)] = 159489, + [SMALL_STATE(3290)] = 159555, + [SMALL_STATE(3291)] = 159621, + [SMALL_STATE(3292)] = 159729, + [SMALL_STATE(3293)] = 159803, + [SMALL_STATE(3294)] = 159909, + [SMALL_STATE(3295)] = 159975, + [SMALL_STATE(3296)] = 160041, + [SMALL_STATE(3297)] = 160147, + [SMALL_STATE(3298)] = 160213, + [SMALL_STATE(3299)] = 160279, + [SMALL_STATE(3300)] = 160357, + [SMALL_STATE(3301)] = 160423, + [SMALL_STATE(3302)] = 160489, + [SMALL_STATE(3303)] = 160555, + [SMALL_STATE(3304)] = 160621, + [SMALL_STATE(3305)] = 160687, + [SMALL_STATE(3306)] = 160753, + [SMALL_STATE(3307)] = 160819, + [SMALL_STATE(3308)] = 160927, + [SMALL_STATE(3309)] = 161035, + [SMALL_STATE(3310)] = 161143, + [SMALL_STATE(3311)] = 161209, + [SMALL_STATE(3312)] = 161275, + [SMALL_STATE(3313)] = 161341, + [SMALL_STATE(3314)] = 161407, + [SMALL_STATE(3315)] = 161473, + [SMALL_STATE(3316)] = 161539, + [SMALL_STATE(3317)] = 161605, + [SMALL_STATE(3318)] = 161717, + [SMALL_STATE(3319)] = 161783, + [SMALL_STATE(3320)] = 161849, + [SMALL_STATE(3321)] = 161915, + [SMALL_STATE(3322)] = 161981, + [SMALL_STATE(3323)] = 162047, + [SMALL_STATE(3324)] = 162117, + [SMALL_STATE(3325)] = 162221, + [SMALL_STATE(3326)] = 162289, + [SMALL_STATE(3327)] = 162357, + [SMALL_STATE(3328)] = 162425, + [SMALL_STATE(3329)] = 162493, + [SMALL_STATE(3330)] = 162559, + [SMALL_STATE(3331)] = 162627, + [SMALL_STATE(3332)] = 162693, + [SMALL_STATE(3333)] = 162759, + [SMALL_STATE(3334)] = 162825, + [SMALL_STATE(3335)] = 162891, + [SMALL_STATE(3336)] = 162959, + [SMALL_STATE(3337)] = 163025, + [SMALL_STATE(3338)] = 163091, + [SMALL_STATE(3339)] = 163157, + [SMALL_STATE(3340)] = 163227, + [SMALL_STATE(3341)] = 163293, + [SMALL_STATE(3342)] = 163361, + [SMALL_STATE(3343)] = 163429, + [SMALL_STATE(3344)] = 163545, + [SMALL_STATE(3345)] = 163613, + [SMALL_STATE(3346)] = 163681, + [SMALL_STATE(3347)] = 163749, + [SMALL_STATE(3348)] = 163847, + [SMALL_STATE(3349)] = 163913, + [SMALL_STATE(3350)] = 163979, + [SMALL_STATE(3351)] = 164073, + [SMALL_STATE(3352)] = 164189, + [SMALL_STATE(3353)] = 164255, + [SMALL_STATE(3354)] = 164323, + [SMALL_STATE(3355)] = 164389, + [SMALL_STATE(3356)] = 164455, + [SMALL_STATE(3357)] = 164521, + [SMALL_STATE(3358)] = 164587, + [SMALL_STATE(3359)] = 164653, + [SMALL_STATE(3360)] = 164719, + [SMALL_STATE(3361)] = 164785, + [SMALL_STATE(3362)] = 164851, + [SMALL_STATE(3363)] = 164917, + [SMALL_STATE(3364)] = 164983, + [SMALL_STATE(3365)] = 165049, + [SMALL_STATE(3366)] = 165115, + [SMALL_STATE(3367)] = 165181, + [SMALL_STATE(3368)] = 165247, + [SMALL_STATE(3369)] = 165313, + [SMALL_STATE(3370)] = 165379, + [SMALL_STATE(3371)] = 165445, + [SMALL_STATE(3372)] = 165511, + [SMALL_STATE(3373)] = 165577, + [SMALL_STATE(3374)] = 165643, + [SMALL_STATE(3375)] = 165711, + [SMALL_STATE(3376)] = 165779, + [SMALL_STATE(3377)] = 165871, + [SMALL_STATE(3378)] = 165937, + [SMALL_STATE(3379)] = 166003, + [SMALL_STATE(3380)] = 166069, + [SMALL_STATE(3381)] = 166135, + [SMALL_STATE(3382)] = 166205, + [SMALL_STATE(3383)] = 166273, + [SMALL_STATE(3384)] = 166341, + [SMALL_STATE(3385)] = 166411, + [SMALL_STATE(3386)] = 166479, + [SMALL_STATE(3387)] = 166545, + [SMALL_STATE(3388)] = 166611, + [SMALL_STATE(3389)] = 166679, + [SMALL_STATE(3390)] = 166745, + [SMALL_STATE(3391)] = 166811, + [SMALL_STATE(3392)] = 166877, + [SMALL_STATE(3393)] = 166943, + [SMALL_STATE(3394)] = 167011, + [SMALL_STATE(3395)] = 167077, + [SMALL_STATE(3396)] = 167143, + [SMALL_STATE(3397)] = 167209, + [SMALL_STATE(3398)] = 167275, + [SMALL_STATE(3399)] = 167341, + [SMALL_STATE(3400)] = 167407, + [SMALL_STATE(3401)] = 167473, + [SMALL_STATE(3402)] = 167541, + [SMALL_STATE(3403)] = 167609, + [SMALL_STATE(3404)] = 167677, + [SMALL_STATE(3405)] = 167767, + [SMALL_STATE(3406)] = 167853, + [SMALL_STATE(3407)] = 167923, + [SMALL_STATE(3408)] = 168003, + [SMALL_STATE(3409)] = 168069, + [SMALL_STATE(3410)] = 168135, + [SMALL_STATE(3411)] = 168201, + [SMALL_STATE(3412)] = 168271, + [SMALL_STATE(3413)] = 168337, + [SMALL_STATE(3414)] = 168403, + [SMALL_STATE(3415)] = 168469, + [SMALL_STATE(3416)] = 168535, + [SMALL_STATE(3417)] = 168615, + [SMALL_STATE(3418)] = 168681, + [SMALL_STATE(3419)] = 168747, + [SMALL_STATE(3420)] = 168827, + [SMALL_STATE(3421)] = 168907, + [SMALL_STATE(3422)] = 168973, + [SMALL_STATE(3423)] = 169039, + [SMALL_STATE(3424)] = 169125, + [SMALL_STATE(3425)] = 169215, + [SMALL_STATE(3426)] = 169307, + [SMALL_STATE(3427)] = 169401, + [SMALL_STATE(3428)] = 169499, + [SMALL_STATE(3429)] = 169599, + [SMALL_STATE(3430)] = 169703, + [SMALL_STATE(3431)] = 169809, + [SMALL_STATE(3432)] = 169915, + [SMALL_STATE(3433)] = 169989, + [SMALL_STATE(3434)] = 170067, + [SMALL_STATE(3435)] = 170139, + [SMALL_STATE(3436)] = 170241, + [SMALL_STATE(3437)] = 170329, + [SMALL_STATE(3438)] = 170411, + [SMALL_STATE(3439)] = 170481, + [SMALL_STATE(3440)] = 170581, + [SMALL_STATE(3441)] = 170647, + [SMALL_STATE(3442)] = 170713, + [SMALL_STATE(3443)] = 170783, + [SMALL_STATE(3444)] = 170849, + [SMALL_STATE(3445)] = 170915, + [SMALL_STATE(3446)] = 170981, + [SMALL_STATE(3447)] = 171047, + [SMALL_STATE(3448)] = 171113, + [SMALL_STATE(3449)] = 171179, + [SMALL_STATE(3450)] = 171245, + [SMALL_STATE(3451)] = 171311, + [SMALL_STATE(3452)] = 171377, + [SMALL_STATE(3453)] = 171485, + [SMALL_STATE(3454)] = 171555, + [SMALL_STATE(3455)] = 171621, + [SMALL_STATE(3456)] = 171687, + [SMALL_STATE(3457)] = 171753, + [SMALL_STATE(3458)] = 171819, + [SMALL_STATE(3459)] = 171885, + [SMALL_STATE(3460)] = 171951, + [SMALL_STATE(3461)] = 172017, + [SMALL_STATE(3462)] = 172083, + [SMALL_STATE(3463)] = 172149, + [SMALL_STATE(3464)] = 172215, + [SMALL_STATE(3465)] = 172281, + [SMALL_STATE(3466)] = 172347, + [SMALL_STATE(3467)] = 172413, + [SMALL_STATE(3468)] = 172479, + [SMALL_STATE(3469)] = 172545, + [SMALL_STATE(3470)] = 172611, + [SMALL_STATE(3471)] = 172677, + [SMALL_STATE(3472)] = 172747, + [SMALL_STATE(3473)] = 172813, + [SMALL_STATE(3474)] = 172879, + [SMALL_STATE(3475)] = 172949, + [SMALL_STATE(3476)] = 173015, + [SMALL_STATE(3477)] = 173081, + [SMALL_STATE(3478)] = 173147, + [SMALL_STATE(3479)] = 173213, + [SMALL_STATE(3480)] = 173321, + [SMALL_STATE(3481)] = 173387, + [SMALL_STATE(3482)] = 173453, + [SMALL_STATE(3483)] = 173525, + [SMALL_STATE(3484)] = 173591, + [SMALL_STATE(3485)] = 173663, + [SMALL_STATE(3486)] = 173735, + [SMALL_STATE(3487)] = 173801, + [SMALL_STATE(3488)] = 173873, + [SMALL_STATE(3489)] = 173939, + [SMALL_STATE(3490)] = 174047, + [SMALL_STATE(3491)] = 174155, + [SMALL_STATE(3492)] = 174221, [SMALL_STATE(3493)] = 174333, [SMALL_STATE(3494)] = 174399, - [SMALL_STATE(3495)] = 174465, + [SMALL_STATE(3495)] = 174469, [SMALL_STATE(3496)] = 174535, [SMALL_STATE(3497)] = 174601, [SMALL_STATE(3498)] = 174667, [SMALL_STATE(3499)] = 174732, - [SMALL_STATE(3500)] = 174797, - [SMALL_STATE(3501)] = 174862, - [SMALL_STATE(3502)] = 174927, - [SMALL_STATE(3503)] = 174992, - [SMALL_STATE(3504)] = 175057, - [SMALL_STATE(3505)] = 175126, - [SMALL_STATE(3506)] = 175195, - [SMALL_STATE(3507)] = 175274, - [SMALL_STATE(3508)] = 175339, - [SMALL_STATE(3509)] = 175404, - [SMALL_STATE(3510)] = 175469, - [SMALL_STATE(3511)] = 175534, - [SMALL_STATE(3512)] = 175599, - [SMALL_STATE(3513)] = 175664, - [SMALL_STATE(3514)] = 175729, - [SMALL_STATE(3515)] = 175794, - [SMALL_STATE(3516)] = 175859, - [SMALL_STATE(3517)] = 175924, - [SMALL_STATE(3518)] = 175989, - [SMALL_STATE(3519)] = 176054, - [SMALL_STATE(3520)] = 176119, - [SMALL_STATE(3521)] = 176184, - [SMALL_STATE(3522)] = 176253, - [SMALL_STATE(3523)] = 176320, - [SMALL_STATE(3524)] = 176387, - [SMALL_STATE(3525)] = 176452, - [SMALL_STATE(3526)] = 176517, - [SMALL_STATE(3527)] = 176582, - [SMALL_STATE(3528)] = 176647, - [SMALL_STATE(3529)] = 176714, - [SMALL_STATE(3530)] = 176779, - [SMALL_STATE(3531)] = 176844, - [SMALL_STATE(3532)] = 176909, - [SMALL_STATE(3533)] = 176974, - [SMALL_STATE(3534)] = 177039, - [SMALL_STATE(3535)] = 177148, - [SMALL_STATE(3536)] = 177215, - [SMALL_STATE(3537)] = 177280, - [SMALL_STATE(3538)] = 177345, - [SMALL_STATE(3539)] = 177410, - [SMALL_STATE(3540)] = 177491, - [SMALL_STATE(3541)] = 177578, - [SMALL_STATE(3542)] = 177679, - [SMALL_STATE(3543)] = 177744, - [SMALL_STATE(3544)] = 177809, - [SMALL_STATE(3545)] = 177874, - [SMALL_STATE(3546)] = 177945, - [SMALL_STATE(3547)] = 178022, - [SMALL_STATE(3548)] = 178087, - [SMALL_STATE(3549)] = 178160, - [SMALL_STATE(3550)] = 178265, - [SMALL_STATE(3551)] = 178370, - [SMALL_STATE(3552)] = 178473, - [SMALL_STATE(3553)] = 178538, - [SMALL_STATE(3554)] = 178637, - [SMALL_STATE(3555)] = 178734, - [SMALL_STATE(3556)] = 178799, - [SMALL_STATE(3557)] = 178868, - [SMALL_STATE(3558)] = 178937, - [SMALL_STATE(3559)] = 179006, - [SMALL_STATE(3560)] = 179071, - [SMALL_STATE(3561)] = 179136, - [SMALL_STATE(3562)] = 179201, - [SMALL_STATE(3563)] = 179268, - [SMALL_STATE(3564)] = 179333, - [SMALL_STATE(3565)] = 179398, - [SMALL_STATE(3566)] = 179463, - [SMALL_STATE(3567)] = 179528, - [SMALL_STATE(3568)] = 179593, - [SMALL_STATE(3569)] = 179658, - [SMALL_STATE(3570)] = 179723, - [SMALL_STATE(3571)] = 179788, - [SMALL_STATE(3572)] = 179853, - [SMALL_STATE(3573)] = 179918, - [SMALL_STATE(3574)] = 179983, - [SMALL_STATE(3575)] = 180050, - [SMALL_STATE(3576)] = 180117, - [SMALL_STATE(3577)] = 180182, - [SMALL_STATE(3578)] = 180247, - [SMALL_STATE(3579)] = 180316, - [SMALL_STATE(3580)] = 180381, - [SMALL_STATE(3581)] = 180446, - [SMALL_STATE(3582)] = 180511, - [SMALL_STATE(3583)] = 180576, - [SMALL_STATE(3584)] = 180641, - [SMALL_STATE(3585)] = 180706, - [SMALL_STATE(3586)] = 180771, - [SMALL_STATE(3587)] = 180836, - [SMALL_STATE(3588)] = 180901, - [SMALL_STATE(3589)] = 180966, - [SMALL_STATE(3590)] = 181031, - [SMALL_STATE(3591)] = 181138, - [SMALL_STATE(3592)] = 181245, - [SMALL_STATE(3593)] = 181310, - [SMALL_STATE(3594)] = 181375, - [SMALL_STATE(3595)] = 181482, - [SMALL_STATE(3596)] = 181547, - [SMALL_STATE(3597)] = 181654, - [SMALL_STATE(3598)] = 181719, - [SMALL_STATE(3599)] = 181784, - [SMALL_STATE(3600)] = 181849, - [SMALL_STATE(3601)] = 181914, - [SMALL_STATE(3602)] = 181979, - [SMALL_STATE(3603)] = 182044, - [SMALL_STATE(3604)] = 182109, - [SMALL_STATE(3605)] = 182174, - [SMALL_STATE(3606)] = 182239, - [SMALL_STATE(3607)] = 182304, - [SMALL_STATE(3608)] = 182369, - [SMALL_STATE(3609)] = 182434, - [SMALL_STATE(3610)] = 182501, - [SMALL_STATE(3611)] = 182566, - [SMALL_STATE(3612)] = 182631, - [SMALL_STATE(3613)] = 182696, - [SMALL_STATE(3614)] = 182761, - [SMALL_STATE(3615)] = 182826, - [SMALL_STATE(3616)] = 182891, - [SMALL_STATE(3617)] = 182958, - [SMALL_STATE(3618)] = 183025, - [SMALL_STATE(3619)] = 183090, - [SMALL_STATE(3620)] = 183157, - [SMALL_STATE(3621)] = 183224, - [SMALL_STATE(3622)] = 183291, - [SMALL_STATE(3623)] = 183358, - [SMALL_STATE(3624)] = 183423, - [SMALL_STATE(3625)] = 183488, - [SMALL_STATE(3626)] = 183553, - [SMALL_STATE(3627)] = 183618, - [SMALL_STATE(3628)] = 183683, - [SMALL_STATE(3629)] = 183748, - [SMALL_STATE(3630)] = 183813, - [SMALL_STATE(3631)] = 183878, - [SMALL_STATE(3632)] = 183943, - [SMALL_STATE(3633)] = 184008, - [SMALL_STATE(3634)] = 184073, - [SMALL_STATE(3635)] = 184140, - [SMALL_STATE(3636)] = 184205, - [SMALL_STATE(3637)] = 184270, - [SMALL_STATE(3638)] = 184335, - [SMALL_STATE(3639)] = 184400, - [SMALL_STATE(3640)] = 184465, - [SMALL_STATE(3641)] = 184530, - [SMALL_STATE(3642)] = 184595, - [SMALL_STATE(3643)] = 184660, - [SMALL_STATE(3644)] = 184725, - [SMALL_STATE(3645)] = 184790, - [SMALL_STATE(3646)] = 184855, - [SMALL_STATE(3647)] = 184960, - [SMALL_STATE(3648)] = 185027, - [SMALL_STATE(3649)] = 185092, - [SMALL_STATE(3650)] = 185157, - [SMALL_STATE(3651)] = 185222, - [SMALL_STATE(3652)] = 185287, - [SMALL_STATE(3653)] = 185354, - [SMALL_STATE(3654)] = 185419, - [SMALL_STATE(3655)] = 185486, - [SMALL_STATE(3656)] = 185553, - [SMALL_STATE(3657)] = 185618, - [SMALL_STATE(3658)] = 185683, - [SMALL_STATE(3659)] = 185748, - [SMALL_STATE(3660)] = 185813, - [SMALL_STATE(3661)] = 185878, - [SMALL_STATE(3662)] = 185943, - [SMALL_STATE(3663)] = 186008, - [SMALL_STATE(3664)] = 186073, - [SMALL_STATE(3665)] = 186138, - [SMALL_STATE(3666)] = 186203, - [SMALL_STATE(3667)] = 186268, - [SMALL_STATE(3668)] = 186333, - [SMALL_STATE(3669)] = 186398, - [SMALL_STATE(3670)] = 186463, - [SMALL_STATE(3671)] = 186528, - [SMALL_STATE(3672)] = 186595, - [SMALL_STATE(3673)] = 186660, - [SMALL_STATE(3674)] = 186725, - [SMALL_STATE(3675)] = 186790, - [SMALL_STATE(3676)] = 186855, - [SMALL_STATE(3677)] = 186920, - [SMALL_STATE(3678)] = 186985, - [SMALL_STATE(3679)] = 187050, - [SMALL_STATE(3680)] = 187115, - [SMALL_STATE(3681)] = 187180, - [SMALL_STATE(3682)] = 187245, - [SMALL_STATE(3683)] = 187310, - [SMALL_STATE(3684)] = 187375, - [SMALL_STATE(3685)] = 187440, - [SMALL_STATE(3686)] = 187505, - [SMALL_STATE(3687)] = 187570, - [SMALL_STATE(3688)] = 187635, - [SMALL_STATE(3689)] = 187700, - [SMALL_STATE(3690)] = 187765, - [SMALL_STATE(3691)] = 187830, - [SMALL_STATE(3692)] = 187895, - [SMALL_STATE(3693)] = 187960, - [SMALL_STATE(3694)] = 188025, - [SMALL_STATE(3695)] = 188132, - [SMALL_STATE(3696)] = 188197, - [SMALL_STATE(3697)] = 188266, - [SMALL_STATE(3698)] = 188331, - [SMALL_STATE(3699)] = 188398, - [SMALL_STATE(3700)] = 188463, - [SMALL_STATE(3701)] = 188528, - [SMALL_STATE(3702)] = 188597, - [SMALL_STATE(3703)] = 188662, - [SMALL_STATE(3704)] = 188727, - [SMALL_STATE(3705)] = 188792, - [SMALL_STATE(3706)] = 188857, - [SMALL_STATE(3707)] = 188922, - [SMALL_STATE(3708)] = 188987, - [SMALL_STATE(3709)] = 189052, - [SMALL_STATE(3710)] = 189117, - [SMALL_STATE(3711)] = 189182, - [SMALL_STATE(3712)] = 189247, - [SMALL_STATE(3713)] = 189312, - [SMALL_STATE(3714)] = 189377, - [SMALL_STATE(3715)] = 189442, - [SMALL_STATE(3716)] = 189507, - [SMALL_STATE(3717)] = 189572, - [SMALL_STATE(3718)] = 189637, - [SMALL_STATE(3719)] = 189702, - [SMALL_STATE(3720)] = 189767, - [SMALL_STATE(3721)] = 189832, - [SMALL_STATE(3722)] = 189897, - [SMALL_STATE(3723)] = 189964, - [SMALL_STATE(3724)] = 190029, - [SMALL_STATE(3725)] = 190094, - [SMALL_STATE(3726)] = 190159, - [SMALL_STATE(3727)] = 190224, - [SMALL_STATE(3728)] = 190289, - [SMALL_STATE(3729)] = 190354, - [SMALL_STATE(3730)] = 190421, - [SMALL_STATE(3731)] = 190486, - [SMALL_STATE(3732)] = 190551, - [SMALL_STATE(3733)] = 190616, - [SMALL_STATE(3734)] = 190681, - [SMALL_STATE(3735)] = 190746, - [SMALL_STATE(3736)] = 190811, - [SMALL_STATE(3737)] = 190876, - [SMALL_STATE(3738)] = 190941, - [SMALL_STATE(3739)] = 191006, - [SMALL_STATE(3740)] = 191071, - [SMALL_STATE(3741)] = 191136, - [SMALL_STATE(3742)] = 191201, - [SMALL_STATE(3743)] = 191266, - [SMALL_STATE(3744)] = 191331, - [SMALL_STATE(3745)] = 191396, - [SMALL_STATE(3746)] = 191461, - [SMALL_STATE(3747)] = 191526, - [SMALL_STATE(3748)] = 191607, - [SMALL_STATE(3749)] = 191676, - [SMALL_STATE(3750)] = 191741, - [SMALL_STATE(3751)] = 191810, - [SMALL_STATE(3752)] = 191875, - [SMALL_STATE(3753)] = 191940, - [SMALL_STATE(3754)] = 192007, - [SMALL_STATE(3755)] = 192074, - [SMALL_STATE(3756)] = 192139, - [SMALL_STATE(3757)] = 192204, - [SMALL_STATE(3758)] = 192271, - [SMALL_STATE(3759)] = 192338, - [SMALL_STATE(3760)] = 192403, - [SMALL_STATE(3761)] = 192468, - [SMALL_STATE(3762)] = 192535, - [SMALL_STATE(3763)] = 192602, - [SMALL_STATE(3764)] = 192667, - [SMALL_STATE(3765)] = 192766, - [SMALL_STATE(3766)] = 192831, - [SMALL_STATE(3767)] = 192896, - [SMALL_STATE(3768)] = 192961, - [SMALL_STATE(3769)] = 193026, - [SMALL_STATE(3770)] = 193131, - [SMALL_STATE(3771)] = 193202, - [SMALL_STATE(3772)] = 193267, - [SMALL_STATE(3773)] = 193332, - [SMALL_STATE(3774)] = 193397, - [SMALL_STATE(3775)] = 193462, - [SMALL_STATE(3776)] = 193539, - [SMALL_STATE(3777)] = 193604, - [SMALL_STATE(3778)] = 193677, - [SMALL_STATE(3779)] = 193780, - [SMALL_STATE(3780)] = 193883, - [SMALL_STATE(3781)] = 193948, - [SMALL_STATE(3782)] = 194013, - [SMALL_STATE(3783)] = 194078, - [SMALL_STATE(3784)] = 194143, - [SMALL_STATE(3785)] = 194208, - [SMALL_STATE(3786)] = 194277, - [SMALL_STATE(3787)] = 194342, - [SMALL_STATE(3788)] = 194407, - [SMALL_STATE(3789)] = 194472, - [SMALL_STATE(3790)] = 194537, - [SMALL_STATE(3791)] = 194638, - [SMALL_STATE(3792)] = 194735, - [SMALL_STATE(3793)] = 194830, - [SMALL_STATE(3794)] = 194895, - [SMALL_STATE(3795)] = 194960, - [SMALL_STATE(3796)] = 195025, - [SMALL_STATE(3797)] = 195090, - [SMALL_STATE(3798)] = 195157, - [SMALL_STATE(3799)] = 195224, - [SMALL_STATE(3800)] = 195289, - [SMALL_STATE(3801)] = 195356, - [SMALL_STATE(3802)] = 195423, - [SMALL_STATE(3803)] = 195490, - [SMALL_STATE(3804)] = 195557, - [SMALL_STATE(3805)] = 195624, - [SMALL_STATE(3806)] = 195691, - [SMALL_STATE(3807)] = 195758, - [SMALL_STATE(3808)] = 195825, - [SMALL_STATE(3809)] = 195892, - [SMALL_STATE(3810)] = 195959, - [SMALL_STATE(3811)] = 196026, - [SMALL_STATE(3812)] = 196093, - [SMALL_STATE(3813)] = 196160, - [SMALL_STATE(3814)] = 196227, - [SMALL_STATE(3815)] = 196294, - [SMALL_STATE(3816)] = 196361, - [SMALL_STATE(3817)] = 196428, - [SMALL_STATE(3818)] = 196495, - [SMALL_STATE(3819)] = 196562, - [SMALL_STATE(3820)] = 196629, - [SMALL_STATE(3821)] = 196696, - [SMALL_STATE(3822)] = 196803, - [SMALL_STATE(3823)] = 196872, - [SMALL_STATE(3824)] = 196939, - [SMALL_STATE(3825)] = 197004, - [SMALL_STATE(3826)] = 197069, - [SMALL_STATE(3827)] = 197162, - [SMALL_STATE(3828)] = 197227, - [SMALL_STATE(3829)] = 197292, - [SMALL_STATE(3830)] = 197357, - [SMALL_STATE(3831)] = 197422, - [SMALL_STATE(3832)] = 197487, - [SMALL_STATE(3833)] = 197552, + [SMALL_STATE(3500)] = 174829, + [SMALL_STATE(3501)] = 174894, + [SMALL_STATE(3502)] = 174959, + [SMALL_STATE(3503)] = 175024, + [SMALL_STATE(3504)] = 175089, + [SMALL_STATE(3505)] = 175154, + [SMALL_STATE(3506)] = 175219, + [SMALL_STATE(3507)] = 175284, + [SMALL_STATE(3508)] = 175349, + [SMALL_STATE(3509)] = 175414, + [SMALL_STATE(3510)] = 175479, + [SMALL_STATE(3511)] = 175544, + [SMALL_STATE(3512)] = 175611, + [SMALL_STATE(3513)] = 175676, + [SMALL_STATE(3514)] = 175743, + [SMALL_STATE(3515)] = 175808, + [SMALL_STATE(3516)] = 175873, + [SMALL_STATE(3517)] = 175938, + [SMALL_STATE(3518)] = 176005, + [SMALL_STATE(3519)] = 176070, + [SMALL_STATE(3520)] = 176137, + [SMALL_STATE(3521)] = 176206, + [SMALL_STATE(3522)] = 176273, + [SMALL_STATE(3523)] = 176340, + [SMALL_STATE(3524)] = 176407, + [SMALL_STATE(3525)] = 176472, + [SMALL_STATE(3526)] = 176539, + [SMALL_STATE(3527)] = 176604, + [SMALL_STATE(3528)] = 176669, + [SMALL_STATE(3529)] = 176734, + [SMALL_STATE(3530)] = 176799, + [SMALL_STATE(3531)] = 176864, + [SMALL_STATE(3532)] = 176931, + [SMALL_STATE(3533)] = 176998, + [SMALL_STATE(3534)] = 177065, + [SMALL_STATE(3535)] = 177130, + [SMALL_STATE(3536)] = 177197, + [SMALL_STATE(3537)] = 177262, + [SMALL_STATE(3538)] = 177327, + [SMALL_STATE(3539)] = 177392, + [SMALL_STATE(3540)] = 177461, + [SMALL_STATE(3541)] = 177526, + [SMALL_STATE(3542)] = 177595, + [SMALL_STATE(3543)] = 177660, + [SMALL_STATE(3544)] = 177725, + [SMALL_STATE(3545)] = 177790, + [SMALL_STATE(3546)] = 177855, + [SMALL_STATE(3547)] = 177920, + [SMALL_STATE(3548)] = 177989, + [SMALL_STATE(3549)] = 178054, + [SMALL_STATE(3550)] = 178119, + [SMALL_STATE(3551)] = 178184, + [SMALL_STATE(3552)] = 178249, + [SMALL_STATE(3553)] = 178314, + [SMALL_STATE(3554)] = 178379, + [SMALL_STATE(3555)] = 178444, + [SMALL_STATE(3556)] = 178509, + [SMALL_STATE(3557)] = 178576, + [SMALL_STATE(3558)] = 178643, + [SMALL_STATE(3559)] = 178710, + [SMALL_STATE(3560)] = 178775, + [SMALL_STATE(3561)] = 178840, + [SMALL_STATE(3562)] = 178907, + [SMALL_STATE(3563)] = 178976, + [SMALL_STATE(3564)] = 179041, + [SMALL_STATE(3565)] = 179106, + [SMALL_STATE(3566)] = 179171, + [SMALL_STATE(3567)] = 179236, + [SMALL_STATE(3568)] = 179301, + [SMALL_STATE(3569)] = 179368, + [SMALL_STATE(3570)] = 179433, + [SMALL_STATE(3571)] = 179500, + [SMALL_STATE(3572)] = 179567, + [SMALL_STATE(3573)] = 179632, + [SMALL_STATE(3574)] = 179699, + [SMALL_STATE(3575)] = 179764, + [SMALL_STATE(3576)] = 179831, + [SMALL_STATE(3577)] = 179896, + [SMALL_STATE(3578)] = 179961, + [SMALL_STATE(3579)] = 180070, + [SMALL_STATE(3580)] = 180135, + [SMALL_STATE(3581)] = 180200, + [SMALL_STATE(3582)] = 180265, + [SMALL_STATE(3583)] = 180330, + [SMALL_STATE(3584)] = 180395, + [SMALL_STATE(3585)] = 180460, + [SMALL_STATE(3586)] = 180525, + [SMALL_STATE(3587)] = 180590, + [SMALL_STATE(3588)] = 180655, + [SMALL_STATE(3589)] = 180720, + [SMALL_STATE(3590)] = 180785, + [SMALL_STATE(3591)] = 180854, + [SMALL_STATE(3592)] = 180919, + [SMALL_STATE(3593)] = 180984, + [SMALL_STATE(3594)] = 181049, + [SMALL_STATE(3595)] = 181114, + [SMALL_STATE(3596)] = 181179, + [SMALL_STATE(3597)] = 181244, + [SMALL_STATE(3598)] = 181309, + [SMALL_STATE(3599)] = 181374, + [SMALL_STATE(3600)] = 181439, + [SMALL_STATE(3601)] = 181504, + [SMALL_STATE(3602)] = 181569, + [SMALL_STATE(3603)] = 181636, + [SMALL_STATE(3604)] = 181701, + [SMALL_STATE(3605)] = 181766, + [SMALL_STATE(3606)] = 181831, + [SMALL_STATE(3607)] = 181896, + [SMALL_STATE(3608)] = 181961, + [SMALL_STATE(3609)] = 182030, + [SMALL_STATE(3610)] = 182095, + [SMALL_STATE(3611)] = 182160, + [SMALL_STATE(3612)] = 182225, + [SMALL_STATE(3613)] = 182290, + [SMALL_STATE(3614)] = 182395, + [SMALL_STATE(3615)] = 182460, + [SMALL_STATE(3616)] = 182539, + [SMALL_STATE(3617)] = 182604, + [SMALL_STATE(3618)] = 182683, + [SMALL_STATE(3619)] = 182768, + [SMALL_STATE(3620)] = 182857, + [SMALL_STATE(3621)] = 182948, + [SMALL_STATE(3622)] = 183041, + [SMALL_STATE(3623)] = 183138, + [SMALL_STATE(3624)] = 183237, + [SMALL_STATE(3625)] = 183340, + [SMALL_STATE(3626)] = 183445, + [SMALL_STATE(3627)] = 183550, + [SMALL_STATE(3628)] = 183623, + [SMALL_STATE(3629)] = 183700, + [SMALL_STATE(3630)] = 183771, + [SMALL_STATE(3631)] = 183872, + [SMALL_STATE(3632)] = 183959, + [SMALL_STATE(3633)] = 184040, + [SMALL_STATE(3634)] = 184105, + [SMALL_STATE(3635)] = 184170, + [SMALL_STATE(3636)] = 184235, + [SMALL_STATE(3637)] = 184300, + [SMALL_STATE(3638)] = 184365, + [SMALL_STATE(3639)] = 184430, + [SMALL_STATE(3640)] = 184495, + [SMALL_STATE(3641)] = 184560, + [SMALL_STATE(3642)] = 184625, + [SMALL_STATE(3643)] = 184690, + [SMALL_STATE(3644)] = 184755, + [SMALL_STATE(3645)] = 184820, + [SMALL_STATE(3646)] = 184927, + [SMALL_STATE(3647)] = 184992, + [SMALL_STATE(3648)] = 185057, + [SMALL_STATE(3649)] = 185126, + [SMALL_STATE(3650)] = 185195, + [SMALL_STATE(3651)] = 185260, + [SMALL_STATE(3652)] = 185325, + [SMALL_STATE(3653)] = 185430, + [SMALL_STATE(3654)] = 185495, + [SMALL_STATE(3655)] = 185560, + [SMALL_STATE(3656)] = 185625, + [SMALL_STATE(3657)] = 185690, + [SMALL_STATE(3658)] = 185755, + [SMALL_STATE(3659)] = 185820, + [SMALL_STATE(3660)] = 185885, + [SMALL_STATE(3661)] = 185950, + [SMALL_STATE(3662)] = 186015, + [SMALL_STATE(3663)] = 186080, + [SMALL_STATE(3664)] = 186145, + [SMALL_STATE(3665)] = 186210, + [SMALL_STATE(3666)] = 186275, + [SMALL_STATE(3667)] = 186340, + [SMALL_STATE(3668)] = 186409, + [SMALL_STATE(3669)] = 186474, + [SMALL_STATE(3670)] = 186539, + [SMALL_STATE(3671)] = 186604, + [SMALL_STATE(3672)] = 186669, + [SMALL_STATE(3673)] = 186734, + [SMALL_STATE(3674)] = 186799, + [SMALL_STATE(3675)] = 186864, + [SMALL_STATE(3676)] = 186929, + [SMALL_STATE(3677)] = 186994, + [SMALL_STATE(3678)] = 187059, + [SMALL_STATE(3679)] = 187124, + [SMALL_STATE(3680)] = 187189, + [SMALL_STATE(3681)] = 187254, + [SMALL_STATE(3682)] = 187319, + [SMALL_STATE(3683)] = 187384, + [SMALL_STATE(3684)] = 187449, + [SMALL_STATE(3685)] = 187530, + [SMALL_STATE(3686)] = 187617, + [SMALL_STATE(3687)] = 187718, + [SMALL_STATE(3688)] = 187789, + [SMALL_STATE(3689)] = 187854, + [SMALL_STATE(3690)] = 187923, + [SMALL_STATE(3691)] = 187988, + [SMALL_STATE(3692)] = 188053, + [SMALL_STATE(3693)] = 188118, + [SMALL_STATE(3694)] = 188183, + [SMALL_STATE(3695)] = 188248, + [SMALL_STATE(3696)] = 188313, + [SMALL_STATE(3697)] = 188378, + [SMALL_STATE(3698)] = 188451, + [SMALL_STATE(3699)] = 188556, + [SMALL_STATE(3700)] = 188661, + [SMALL_STATE(3701)] = 188764, + [SMALL_STATE(3702)] = 188863, + [SMALL_STATE(3703)] = 188928, + [SMALL_STATE(3704)] = 189021, + [SMALL_STATE(3705)] = 189112, + [SMALL_STATE(3706)] = 189201, + [SMALL_STATE(3707)] = 189286, + [SMALL_STATE(3708)] = 189365, + [SMALL_STATE(3709)] = 189444, + [SMALL_STATE(3710)] = 189513, + [SMALL_STATE(3711)] = 189578, + [SMALL_STATE(3712)] = 189643, + [SMALL_STATE(3713)] = 189708, + [SMALL_STATE(3714)] = 189773, + [SMALL_STATE(3715)] = 189838, + [SMALL_STATE(3716)] = 189903, + [SMALL_STATE(3717)] = 189968, + [SMALL_STATE(3718)] = 190033, + [SMALL_STATE(3719)] = 190098, + [SMALL_STATE(3720)] = 190163, + [SMALL_STATE(3721)] = 190228, + [SMALL_STATE(3722)] = 190293, + [SMALL_STATE(3723)] = 190358, + [SMALL_STATE(3724)] = 190423, + [SMALL_STATE(3725)] = 190488, + [SMALL_STATE(3726)] = 190553, + [SMALL_STATE(3727)] = 190618, + [SMALL_STATE(3728)] = 190683, + [SMALL_STATE(3729)] = 190748, + [SMALL_STATE(3730)] = 190817, + [SMALL_STATE(3731)] = 190882, + [SMALL_STATE(3732)] = 190947, + [SMALL_STATE(3733)] = 191012, + [SMALL_STATE(3734)] = 191077, + [SMALL_STATE(3735)] = 191142, + [SMALL_STATE(3736)] = 191209, + [SMALL_STATE(3737)] = 191274, + [SMALL_STATE(3738)] = 191339, + [SMALL_STATE(3739)] = 191404, + [SMALL_STATE(3740)] = 191469, + [SMALL_STATE(3741)] = 191534, + [SMALL_STATE(3742)] = 191611, + [SMALL_STATE(3743)] = 191676, + [SMALL_STATE(3744)] = 191741, + [SMALL_STATE(3745)] = 191806, + [SMALL_STATE(3746)] = 191871, + [SMALL_STATE(3747)] = 191936, + [SMALL_STATE(3748)] = 192001, + [SMALL_STATE(3749)] = 192066, + [SMALL_STATE(3750)] = 192131, + [SMALL_STATE(3751)] = 192196, + [SMALL_STATE(3752)] = 192261, + [SMALL_STATE(3753)] = 192326, + [SMALL_STATE(3754)] = 192391, + [SMALL_STATE(3755)] = 192456, + [SMALL_STATE(3756)] = 192521, + [SMALL_STATE(3757)] = 192586, + [SMALL_STATE(3758)] = 192651, + [SMALL_STATE(3759)] = 192716, + [SMALL_STATE(3760)] = 192781, + [SMALL_STATE(3761)] = 192846, + [SMALL_STATE(3762)] = 192911, + [SMALL_STATE(3763)] = 192976, + [SMALL_STATE(3764)] = 193041, + [SMALL_STATE(3765)] = 193106, + [SMALL_STATE(3766)] = 193171, + [SMALL_STATE(3767)] = 193236, + [SMALL_STATE(3768)] = 193301, + [SMALL_STATE(3769)] = 193366, + [SMALL_STATE(3770)] = 193431, + [SMALL_STATE(3771)] = 193496, + [SMALL_STATE(3772)] = 193561, + [SMALL_STATE(3773)] = 193626, + [SMALL_STATE(3774)] = 193691, + [SMALL_STATE(3775)] = 193756, + [SMALL_STATE(3776)] = 193821, + [SMALL_STATE(3777)] = 193890, + [SMALL_STATE(3778)] = 193955, + [SMALL_STATE(3779)] = 194020, + [SMALL_STATE(3780)] = 194085, + [SMALL_STATE(3781)] = 194150, + [SMALL_STATE(3782)] = 194215, + [SMALL_STATE(3783)] = 194280, + [SMALL_STATE(3784)] = 194345, + [SMALL_STATE(3785)] = 194410, + [SMALL_STATE(3786)] = 194475, + [SMALL_STATE(3787)] = 194540, + [SMALL_STATE(3788)] = 194605, + [SMALL_STATE(3789)] = 194670, + [SMALL_STATE(3790)] = 194735, + [SMALL_STATE(3791)] = 194800, + [SMALL_STATE(3792)] = 194865, + [SMALL_STATE(3793)] = 194930, + [SMALL_STATE(3794)] = 194999, + [SMALL_STATE(3795)] = 195064, + [SMALL_STATE(3796)] = 195129, + [SMALL_STATE(3797)] = 195194, + [SMALL_STATE(3798)] = 195259, + [SMALL_STATE(3799)] = 195324, + [SMALL_STATE(3800)] = 195389, + [SMALL_STATE(3801)] = 195454, + [SMALL_STATE(3802)] = 195519, + [SMALL_STATE(3803)] = 195584, + [SMALL_STATE(3804)] = 195649, + [SMALL_STATE(3805)] = 195714, + [SMALL_STATE(3806)] = 195779, + [SMALL_STATE(3807)] = 195844, + [SMALL_STATE(3808)] = 195909, + [SMALL_STATE(3809)] = 195974, + [SMALL_STATE(3810)] = 196039, + [SMALL_STATE(3811)] = 196104, + [SMALL_STATE(3812)] = 196169, + [SMALL_STATE(3813)] = 196234, + [SMALL_STATE(3814)] = 196299, + [SMALL_STATE(3815)] = 196364, + [SMALL_STATE(3816)] = 196429, + [SMALL_STATE(3817)] = 196494, + [SMALL_STATE(3818)] = 196559, + [SMALL_STATE(3819)] = 196626, + [SMALL_STATE(3820)] = 196693, + [SMALL_STATE(3821)] = 196760, + [SMALL_STATE(3822)] = 196827, + [SMALL_STATE(3823)] = 196894, + [SMALL_STATE(3824)] = 196959, + [SMALL_STATE(3825)] = 197024, + [SMALL_STATE(3826)] = 197091, + [SMALL_STATE(3827)] = 197156, + [SMALL_STATE(3828)] = 197223, + [SMALL_STATE(3829)] = 197288, + [SMALL_STATE(3830)] = 197353, + [SMALL_STATE(3831)] = 197420, + [SMALL_STATE(3832)] = 197485, + [SMALL_STATE(3833)] = 197550, [SMALL_STATE(3834)] = 197617, - [SMALL_STATE(3835)] = 197682, - [SMALL_STATE(3836)] = 197747, - [SMALL_STATE(3837)] = 197812, - [SMALL_STATE(3838)] = 197877, - [SMALL_STATE(3839)] = 197968, - [SMALL_STATE(3840)] = 198033, - [SMALL_STATE(3841)] = 198098, - [SMALL_STATE(3842)] = 198163, - [SMALL_STATE(3843)] = 198228, - [SMALL_STATE(3844)] = 198295, - [SMALL_STATE(3845)] = 198360, - [SMALL_STATE(3846)] = 198427, - [SMALL_STATE(3847)] = 198496, - [SMALL_STATE(3848)] = 198561, - [SMALL_STATE(3849)] = 198628, - [SMALL_STATE(3850)] = 198695, - [SMALL_STATE(3851)] = 198762, - [SMALL_STATE(3852)] = 198829, - [SMALL_STATE(3853)] = 198896, - [SMALL_STATE(3854)] = 198963, - [SMALL_STATE(3855)] = 199028, - [SMALL_STATE(3856)] = 199119, - [SMALL_STATE(3857)] = 199226, - [SMALL_STATE(3858)] = 199295, - [SMALL_STATE(3859)] = 199384, - [SMALL_STATE(3860)] = 199449, - [SMALL_STATE(3861)] = 199536, - [SMALL_STATE(3862)] = 199619, - [SMALL_STATE(3863)] = 199686, - [SMALL_STATE(3864)] = 199765, - [SMALL_STATE(3865)] = 199844, - [SMALL_STATE(3866)] = 199909, - [SMALL_STATE(3867)] = 199974, - [SMALL_STATE(3868)] = 200039, - [SMALL_STATE(3869)] = 200104, - [SMALL_STATE(3870)] = 200185, - [SMALL_STATE(3871)] = 200272, - [SMALL_STATE(3872)] = 200337, - [SMALL_STATE(3873)] = 200404, - [SMALL_STATE(3874)] = 200505, - [SMALL_STATE(3875)] = 200570, - [SMALL_STATE(3876)] = 200641, - [SMALL_STATE(3877)] = 200718, - [SMALL_STATE(3878)] = 200791, - [SMALL_STATE(3879)] = 200896, - [SMALL_STATE(3880)] = 201001, - [SMALL_STATE(3881)] = 201066, - [SMALL_STATE(3882)] = 201169, - [SMALL_STATE(3883)] = 201268, - [SMALL_STATE(3884)] = 201365, - [SMALL_STATE(3885)] = 201458, - [SMALL_STATE(3886)] = 201549, - [SMALL_STATE(3887)] = 201638, - [SMALL_STATE(3888)] = 201723, - [SMALL_STATE(3889)] = 201802, - [SMALL_STATE(3890)] = 201867, - [SMALL_STATE(3891)] = 201934, - [SMALL_STATE(3892)] = 202013, - [SMALL_STATE(3893)] = 202082, - [SMALL_STATE(3894)] = 202149, - [SMALL_STATE(3895)] = 202216, - [SMALL_STATE(3896)] = 202281, - [SMALL_STATE(3897)] = 202346, - [SMALL_STATE(3898)] = 202411, - [SMALL_STATE(3899)] = 202480, - [SMALL_STATE(3900)] = 202547, - [SMALL_STATE(3901)] = 202612, - [SMALL_STATE(3902)] = 202697, - [SMALL_STATE(3903)] = 202762, - [SMALL_STATE(3904)] = 202827, - [SMALL_STATE(3905)] = 202894, - [SMALL_STATE(3906)] = 202959, - [SMALL_STATE(3907)] = 203024, - [SMALL_STATE(3908)] = 203089, - [SMALL_STATE(3909)] = 203154, - [SMALL_STATE(3910)] = 203219, - [SMALL_STATE(3911)] = 203284, - [SMALL_STATE(3912)] = 203351, - [SMALL_STATE(3913)] = 203416, - [SMALL_STATE(3914)] = 203481, - [SMALL_STATE(3915)] = 203546, - [SMALL_STATE(3916)] = 203613, - [SMALL_STATE(3917)] = 203678, - [SMALL_STATE(3918)] = 203743, - [SMALL_STATE(3919)] = 203808, - [SMALL_STATE(3920)] = 203873, - [SMALL_STATE(3921)] = 203938, - [SMALL_STATE(3922)] = 204003, - [SMALL_STATE(3923)] = 204068, - [SMALL_STATE(3924)] = 204133, - [SMALL_STATE(3925)] = 204198, - [SMALL_STATE(3926)] = 204263, - [SMALL_STATE(3927)] = 204370, - [SMALL_STATE(3928)] = 204437, - [SMALL_STATE(3929)] = 204506, - [SMALL_STATE(3930)] = 204571, - [SMALL_STATE(3931)] = 204636, - [SMALL_STATE(3932)] = 204701, - [SMALL_STATE(3933)] = 204768, - [SMALL_STATE(3934)] = 204835, - [SMALL_STATE(3935)] = 204900, - [SMALL_STATE(3936)] = 204965, - [SMALL_STATE(3937)] = 205030, - [SMALL_STATE(3938)] = 205095, - [SMALL_STATE(3939)] = 205160, - [SMALL_STATE(3940)] = 205227, - [SMALL_STATE(3941)] = 205296, - [SMALL_STATE(3942)] = 205365, - [SMALL_STATE(3943)] = 205430, - [SMALL_STATE(3944)] = 205495, - [SMALL_STATE(3945)] = 205560, - [SMALL_STATE(3946)] = 205625, - [SMALL_STATE(3947)] = 205690, - [SMALL_STATE(3948)] = 205755, - [SMALL_STATE(3949)] = 205820, - [SMALL_STATE(3950)] = 205885, - [SMALL_STATE(3951)] = 205950, - [SMALL_STATE(3952)] = 206015, - [SMALL_STATE(3953)] = 206082, - [SMALL_STATE(3954)] = 206149, - [SMALL_STATE(3955)] = 206216, - [SMALL_STATE(3956)] = 206283, - [SMALL_STATE(3957)] = 206348, - [SMALL_STATE(3958)] = 206413, - [SMALL_STATE(3959)] = 206480, - [SMALL_STATE(3960)] = 206545, - [SMALL_STATE(3961)] = 206612, - [SMALL_STATE(3962)] = 206679, - [SMALL_STATE(3963)] = 206746, - [SMALL_STATE(3964)] = 206811, - [SMALL_STATE(3965)] = 206876, - [SMALL_STATE(3966)] = 206941, - [SMALL_STATE(3967)] = 207006, - [SMALL_STATE(3968)] = 207071, - [SMALL_STATE(3969)] = 207136, - [SMALL_STATE(3970)] = 207201, - [SMALL_STATE(3971)] = 207266, - [SMALL_STATE(3972)] = 207331, - [SMALL_STATE(3973)] = 207396, - [SMALL_STATE(3974)] = 207461, - [SMALL_STATE(3975)] = 207526, - [SMALL_STATE(3976)] = 207591, - [SMALL_STATE(3977)] = 207656, - [SMALL_STATE(3978)] = 207721, - [SMALL_STATE(3979)] = 207786, - [SMALL_STATE(3980)] = 207851, - [SMALL_STATE(3981)] = 207916, - [SMALL_STATE(3982)] = 207981, - [SMALL_STATE(3983)] = 208046, - [SMALL_STATE(3984)] = 208111, - [SMALL_STATE(3985)] = 208176, - [SMALL_STATE(3986)] = 208241, - [SMALL_STATE(3987)] = 208306, - [SMALL_STATE(3988)] = 208411, - [SMALL_STATE(3989)] = 208476, - [SMALL_STATE(3990)] = 208545, - [SMALL_STATE(3991)] = 208624, - [SMALL_STATE(3992)] = 208703, - [SMALL_STATE(3993)] = 208788, - [SMALL_STATE(3994)] = 208877, - [SMALL_STATE(3995)] = 208968, - [SMALL_STATE(3996)] = 209061, - [SMALL_STATE(3997)] = 209158, - [SMALL_STATE(3998)] = 209257, - [SMALL_STATE(3999)] = 209360, - [SMALL_STATE(4000)] = 209425, - [SMALL_STATE(4001)] = 209530, - [SMALL_STATE(4002)] = 209635, - [SMALL_STATE(4003)] = 209708, - [SMALL_STATE(4004)] = 209785, - [SMALL_STATE(4005)] = 209856, - [SMALL_STATE(4006)] = 209921, - [SMALL_STATE(4007)] = 210022, - [SMALL_STATE(4008)] = 210109, - [SMALL_STATE(4009)] = 210188, - [SMALL_STATE(4010)] = 210269, - [SMALL_STATE(4011)] = 210334, - [SMALL_STATE(4012)] = 210399, - [SMALL_STATE(4013)] = 210484, - [SMALL_STATE(4014)] = 210549, - [SMALL_STATE(4015)] = 210614, - [SMALL_STATE(4016)] = 210679, - [SMALL_STATE(4017)] = 210744, - [SMALL_STATE(4018)] = 210809, - [SMALL_STATE(4019)] = 210874, - [SMALL_STATE(4020)] = 210939, - [SMALL_STATE(4021)] = 211004, - [SMALL_STATE(4022)] = 211069, - [SMALL_STATE(4023)] = 211158, - [SMALL_STATE(4024)] = 211223, - [SMALL_STATE(4025)] = 211288, - [SMALL_STATE(4026)] = 211353, - [SMALL_STATE(4027)] = 211418, - [SMALL_STATE(4028)] = 211485, - [SMALL_STATE(4029)] = 211550, - [SMALL_STATE(4030)] = 211615, - [SMALL_STATE(4031)] = 211680, - [SMALL_STATE(4032)] = 211745, - [SMALL_STATE(4033)] = 211810, - [SMALL_STATE(4034)] = 211875, - [SMALL_STATE(4035)] = 211940, - [SMALL_STATE(4036)] = 212005, - [SMALL_STATE(4037)] = 212070, - [SMALL_STATE(4038)] = 212135, - [SMALL_STATE(4039)] = 212200, - [SMALL_STATE(4040)] = 212267, - [SMALL_STATE(4041)] = 212332, - [SMALL_STATE(4042)] = 212397, - [SMALL_STATE(4043)] = 212462, - [SMALL_STATE(4044)] = 212527, - [SMALL_STATE(4045)] = 212592, + [SMALL_STATE(3835)] = 197684, + [SMALL_STATE(3836)] = 197751, + [SMALL_STATE(3837)] = 197818, + [SMALL_STATE(3838)] = 197885, + [SMALL_STATE(3839)] = 197952, + [SMALL_STATE(3840)] = 198019, + [SMALL_STATE(3841)] = 198086, + [SMALL_STATE(3842)] = 198153, + [SMALL_STATE(3843)] = 198220, + [SMALL_STATE(3844)] = 198287, + [SMALL_STATE(3845)] = 198354, + [SMALL_STATE(3846)] = 198421, + [SMALL_STATE(3847)] = 198488, + [SMALL_STATE(3848)] = 198555, + [SMALL_STATE(3849)] = 198622, + [SMALL_STATE(3850)] = 198689, + [SMALL_STATE(3851)] = 198756, + [SMALL_STATE(3852)] = 198823, + [SMALL_STATE(3853)] = 198890, + [SMALL_STATE(3854)] = 198957, + [SMALL_STATE(3855)] = 199024, + [SMALL_STATE(3856)] = 199091, + [SMALL_STATE(3857)] = 199158, + [SMALL_STATE(3858)] = 199225, + [SMALL_STATE(3859)] = 199290, + [SMALL_STATE(3860)] = 199355, + [SMALL_STATE(3861)] = 199462, + [SMALL_STATE(3862)] = 199529, + [SMALL_STATE(3863)] = 199596, + [SMALL_STATE(3864)] = 199663, + [SMALL_STATE(3865)] = 199730, + [SMALL_STATE(3866)] = 199797, + [SMALL_STATE(3867)] = 199864, + [SMALL_STATE(3868)] = 199931, + [SMALL_STATE(3869)] = 199998, + [SMALL_STATE(3870)] = 200065, + [SMALL_STATE(3871)] = 200132, + [SMALL_STATE(3872)] = 200239, + [SMALL_STATE(3873)] = 200304, + [SMALL_STATE(3874)] = 200369, + [SMALL_STATE(3875)] = 200434, + [SMALL_STATE(3876)] = 200501, + [SMALL_STATE(3877)] = 200568, + [SMALL_STATE(3878)] = 200633, + [SMALL_STATE(3879)] = 200700, + [SMALL_STATE(3880)] = 200767, + [SMALL_STATE(3881)] = 200834, + [SMALL_STATE(3882)] = 200901, + [SMALL_STATE(3883)] = 200968, + [SMALL_STATE(3884)] = 201033, + [SMALL_STATE(3885)] = 201098, + [SMALL_STATE(3886)] = 201167, + [SMALL_STATE(3887)] = 201232, + [SMALL_STATE(3888)] = 201297, + [SMALL_STATE(3889)] = 201362, + [SMALL_STATE(3890)] = 201427, + [SMALL_STATE(3891)] = 201492, + [SMALL_STATE(3892)] = 201557, + [SMALL_STATE(3893)] = 201622, + [SMALL_STATE(3894)] = 201687, + [SMALL_STATE(3895)] = 201794, + [SMALL_STATE(3896)] = 201859, + [SMALL_STATE(3897)] = 201924, + [SMALL_STATE(3898)] = 201989, + [SMALL_STATE(3899)] = 202054, + [SMALL_STATE(3900)] = 202119, + [SMALL_STATE(3901)] = 202184, + [SMALL_STATE(3902)] = 202249, + [SMALL_STATE(3903)] = 202314, + [SMALL_STATE(3904)] = 202379, + [SMALL_STATE(3905)] = 202444, + [SMALL_STATE(3906)] = 202509, + [SMALL_STATE(3907)] = 202574, + [SMALL_STATE(3908)] = 202639, + [SMALL_STATE(3909)] = 202704, + [SMALL_STATE(3910)] = 202769, + [SMALL_STATE(3911)] = 202834, + [SMALL_STATE(3912)] = 202899, + [SMALL_STATE(3913)] = 202964, + [SMALL_STATE(3914)] = 203029, + [SMALL_STATE(3915)] = 203094, + [SMALL_STATE(3916)] = 203163, + [SMALL_STATE(3917)] = 203228, + [SMALL_STATE(3918)] = 203293, + [SMALL_STATE(3919)] = 203358, + [SMALL_STATE(3920)] = 203423, + [SMALL_STATE(3921)] = 203488, + [SMALL_STATE(3922)] = 203553, + [SMALL_STATE(3923)] = 203618, + [SMALL_STATE(3924)] = 203683, + [SMALL_STATE(3925)] = 203748, + [SMALL_STATE(3926)] = 203813, + [SMALL_STATE(3927)] = 203878, + [SMALL_STATE(3928)] = 203985, + [SMALL_STATE(3929)] = 204050, + [SMALL_STATE(3930)] = 204115, + [SMALL_STATE(3931)] = 204180, + [SMALL_STATE(3932)] = 204245, + [SMALL_STATE(3933)] = 204314, + [SMALL_STATE(3934)] = 204379, + [SMALL_STATE(3935)] = 204444, + [SMALL_STATE(3936)] = 204509, + [SMALL_STATE(3937)] = 204574, + [SMALL_STATE(3938)] = 204639, + [SMALL_STATE(3939)] = 204704, + [SMALL_STATE(3940)] = 204769, + [SMALL_STATE(3941)] = 204834, + [SMALL_STATE(3942)] = 204899, + [SMALL_STATE(3943)] = 204964, + [SMALL_STATE(3944)] = 205029, + [SMALL_STATE(3945)] = 205098, + [SMALL_STATE(3946)] = 205177, + [SMALL_STATE(3947)] = 205256, + [SMALL_STATE(3948)] = 205341, + [SMALL_STATE(3949)] = 205430, + [SMALL_STATE(3950)] = 205521, + [SMALL_STATE(3951)] = 205614, + [SMALL_STATE(3952)] = 205711, + [SMALL_STATE(3953)] = 205776, + [SMALL_STATE(3954)] = 205875, + [SMALL_STATE(3955)] = 205978, + [SMALL_STATE(3956)] = 206043, + [SMALL_STATE(3957)] = 206148, + [SMALL_STATE(3958)] = 206213, + [SMALL_STATE(3959)] = 206278, + [SMALL_STATE(3960)] = 206343, + [SMALL_STATE(3961)] = 206408, + [SMALL_STATE(3962)] = 206513, + [SMALL_STATE(3963)] = 206586, + [SMALL_STATE(3964)] = 206663, + [SMALL_STATE(3965)] = 206734, + [SMALL_STATE(3966)] = 206799, + [SMALL_STATE(3967)] = 206900, + [SMALL_STATE(3968)] = 206987, + [SMALL_STATE(3969)] = 207068, + [SMALL_STATE(3970)] = 207133, + [SMALL_STATE(3971)] = 207198, + [SMALL_STATE(3972)] = 207265, + [SMALL_STATE(3973)] = 207330, + [SMALL_STATE(3974)] = 207395, + [SMALL_STATE(3975)] = 207460, + [SMALL_STATE(3976)] = 207539, + [SMALL_STATE(3977)] = 207618, + [SMALL_STATE(3978)] = 207701, + [SMALL_STATE(3979)] = 207788, + [SMALL_STATE(3980)] = 207877, + [SMALL_STATE(3981)] = 207968, + [SMALL_STATE(3982)] = 208063, + [SMALL_STATE(3983)] = 208160, + [SMALL_STATE(3984)] = 208261, + [SMALL_STATE(3985)] = 208326, + [SMALL_STATE(3986)] = 208429, + [SMALL_STATE(3987)] = 208532, + [SMALL_STATE(3988)] = 208605, + [SMALL_STATE(3989)] = 208682, + [SMALL_STATE(3990)] = 208753, + [SMALL_STATE(3991)] = 208818, + [SMALL_STATE(3992)] = 208917, + [SMALL_STATE(3993)] = 209002, + [SMALL_STATE(3994)] = 209083, + [SMALL_STATE(3995)] = 209148, + [SMALL_STATE(3996)] = 209213, + [SMALL_STATE(3997)] = 209278, + [SMALL_STATE(3998)] = 209343, + [SMALL_STATE(3999)] = 209412, + [SMALL_STATE(4000)] = 209477, + [SMALL_STATE(4001)] = 209542, + [SMALL_STATE(4002)] = 209607, + [SMALL_STATE(4003)] = 209672, + [SMALL_STATE(4004)] = 209737, + [SMALL_STATE(4005)] = 209842, + [SMALL_STATE(4006)] = 209907, + [SMALL_STATE(4007)] = 209972, + [SMALL_STATE(4008)] = 210037, + [SMALL_STATE(4009)] = 210104, + [SMALL_STATE(4010)] = 210171, + [SMALL_STATE(4011)] = 210236, + [SMALL_STATE(4012)] = 210301, + [SMALL_STATE(4013)] = 210366, + [SMALL_STATE(4014)] = 210431, + [SMALL_STATE(4015)] = 210496, + [SMALL_STATE(4016)] = 210561, + [SMALL_STATE(4017)] = 210626, + [SMALL_STATE(4018)] = 210693, + [SMALL_STATE(4019)] = 210760, + [SMALL_STATE(4020)] = 210827, + [SMALL_STATE(4021)] = 210892, + [SMALL_STATE(4022)] = 210959, + [SMALL_STATE(4023)] = 211026, + [SMALL_STATE(4024)] = 211091, + [SMALL_STATE(4025)] = 211160, + [SMALL_STATE(4026)] = 211225, + [SMALL_STATE(4027)] = 211332, + [SMALL_STATE(4028)] = 211397, + [SMALL_STATE(4029)] = 211462, + [SMALL_STATE(4030)] = 211527, + [SMALL_STATE(4031)] = 211592, + [SMALL_STATE(4032)] = 211657, + [SMALL_STATE(4033)] = 211764, + [SMALL_STATE(4034)] = 211829, + [SMALL_STATE(4035)] = 211936, + [SMALL_STATE(4036)] = 212001, + [SMALL_STATE(4037)] = 212066, + [SMALL_STATE(4038)] = 212131, + [SMALL_STATE(4039)] = 212196, + [SMALL_STATE(4040)] = 212263, + [SMALL_STATE(4041)] = 212330, + [SMALL_STATE(4042)] = 212395, + [SMALL_STATE(4043)] = 212460, + [SMALL_STATE(4044)] = 212525, + [SMALL_STATE(4045)] = 212590, [SMALL_STATE(4046)] = 212657, [SMALL_STATE(4047)] = 212722, [SMALL_STATE(4048)] = 212787, [SMALL_STATE(4049)] = 212852, [SMALL_STATE(4050)] = 212916, - [SMALL_STATE(4051)] = 212982, + [SMALL_STATE(4051)] = 212980, [SMALL_STATE(4052)] = 213046, [SMALL_STATE(4053)] = 213110, [SMALL_STATE(4054)] = 213174, [SMALL_STATE(4055)] = 213238, - [SMALL_STATE(4056)] = 213306, - [SMALL_STATE(4057)] = 213370, + [SMALL_STATE(4056)] = 213302, + [SMALL_STATE(4057)] = 213366, [SMALL_STATE(4058)] = 213434, [SMALL_STATE(4059)] = 213498, - [SMALL_STATE(4060)] = 213566, - [SMALL_STATE(4061)] = 213630, + [SMALL_STATE(4060)] = 213562, + [SMALL_STATE(4061)] = 213626, [SMALL_STATE(4062)] = 213694, - [SMALL_STATE(4063)] = 213774, - [SMALL_STATE(4064)] = 213880, - [SMALL_STATE(4065)] = 213958, - [SMALL_STATE(4066)] = 214022, - [SMALL_STATE(4067)] = 214086, - [SMALL_STATE(4068)] = 214150, - [SMALL_STATE(4069)] = 214234, - [SMALL_STATE(4070)] = 214322, - [SMALL_STATE(4071)] = 214386, - [SMALL_STATE(4072)] = 214476, - [SMALL_STATE(4073)] = 214540, - [SMALL_STATE(4074)] = 214632, - [SMALL_STATE(4075)] = 214696, - [SMALL_STATE(4076)] = 214776, - [SMALL_STATE(4077)] = 214840, - [SMALL_STATE(4078)] = 214924, - [SMALL_STATE(4079)] = 214988, - [SMALL_STATE(4080)] = 215052, - [SMALL_STATE(4081)] = 215130, - [SMALL_STATE(4082)] = 215208, - [SMALL_STATE(4083)] = 215292, - [SMALL_STATE(4084)] = 215380, - [SMALL_STATE(4085)] = 215470, - [SMALL_STATE(4086)] = 215534, - [SMALL_STATE(4087)] = 215598, - [SMALL_STATE(4088)] = 215690, - [SMALL_STATE(4089)] = 215754, - [SMALL_STATE(4090)] = 215850, - [SMALL_STATE(4091)] = 215914, - [SMALL_STATE(4092)] = 216012, - [SMALL_STATE(4093)] = 216076, - [SMALL_STATE(4094)] = 216178, - [SMALL_STATE(4095)] = 216242, - [SMALL_STATE(4096)] = 216350, - [SMALL_STATE(4097)] = 216420, - [SMALL_STATE(4098)] = 216484, - [SMALL_STATE(4099)] = 216588, - [SMALL_STATE(4100)] = 216664, - [SMALL_STATE(4101)] = 216736, - [SMALL_STATE(4102)] = 216800, - [SMALL_STATE(4103)] = 216864, - [SMALL_STATE(4104)] = 216936, - [SMALL_STATE(4105)] = 217038, - [SMALL_STATE(4106)] = 217114, - [SMALL_STATE(4107)] = 217178, - [SMALL_STATE(4108)] = 217280, - [SMALL_STATE(4109)] = 217344, - [SMALL_STATE(4110)] = 217414, - [SMALL_STATE(4111)] = 217514, - [SMALL_STATE(4112)] = 217600, - [SMALL_STATE(4113)] = 217680, - [SMALL_STATE(4114)] = 217744, - [SMALL_STATE(4115)] = 217812, - [SMALL_STATE(4116)] = 217876, - [SMALL_STATE(4117)] = 217940, - [SMALL_STATE(4118)] = 218004, - [SMALL_STATE(4119)] = 218068, - [SMALL_STATE(4120)] = 218132, - [SMALL_STATE(4121)] = 218196, - [SMALL_STATE(4122)] = 218302, - [SMALL_STATE(4123)] = 218370, - [SMALL_STATE(4124)] = 218434, - [SMALL_STATE(4125)] = 218498, - [SMALL_STATE(4126)] = 218562, - [SMALL_STATE(4127)] = 218626, - [SMALL_STATE(4128)] = 218690, - [SMALL_STATE(4129)] = 218754, - [SMALL_STATE(4130)] = 218818, - [SMALL_STATE(4131)] = 218882, - [SMALL_STATE(4132)] = 218946, - [SMALL_STATE(4133)] = 219010, - [SMALL_STATE(4134)] = 219074, - [SMALL_STATE(4135)] = 219138, - [SMALL_STATE(4136)] = 219206, - [SMALL_STATE(4137)] = 219270, - [SMALL_STATE(4138)] = 219334, - [SMALL_STATE(4139)] = 219398, - [SMALL_STATE(4140)] = 219502, - [SMALL_STATE(4141)] = 219566, - [SMALL_STATE(4142)] = 219630, - [SMALL_STATE(4143)] = 219694, - [SMALL_STATE(4144)] = 219758, - [SMALL_STATE(4145)] = 219822, - [SMALL_STATE(4146)] = 219886, - [SMALL_STATE(4147)] = 219950, - [SMALL_STATE(4148)] = 220014, - [SMALL_STATE(4149)] = 220078, - [SMALL_STATE(4150)] = 220178, - [SMALL_STATE(4151)] = 220246, - [SMALL_STATE(4152)] = 220310, - [SMALL_STATE(4153)] = 220374, - [SMALL_STATE(4154)] = 220454, - [SMALL_STATE(4155)] = 220540, - [SMALL_STATE(4156)] = 220604, - [SMALL_STATE(4157)] = 220668, - [SMALL_STATE(4158)] = 220768, - [SMALL_STATE(4159)] = 220864, - [SMALL_STATE(4160)] = 220928, - [SMALL_STATE(4161)] = 220992, - [SMALL_STATE(4162)] = 221090, - [SMALL_STATE(4163)] = 221154, - [SMALL_STATE(4164)] = 221218, - [SMALL_STATE(4165)] = 221294, - [SMALL_STATE(4166)] = 221358, - [SMALL_STATE(4167)] = 221422, - [SMALL_STATE(4168)] = 221494, - [SMALL_STATE(4169)] = 221558, - [SMALL_STATE(4170)] = 221654, - [SMALL_STATE(4171)] = 221752, - [SMALL_STATE(4172)] = 221816, - [SMALL_STATE(4173)] = 221920, - [SMALL_STATE(4174)] = 221990, - [SMALL_STATE(4175)] = 222094, - [SMALL_STATE(4176)] = 222196, - [SMALL_STATE(4177)] = 222294, - [SMALL_STATE(4178)] = 222390, - [SMALL_STATE(4179)] = 222482, - [SMALL_STATE(4180)] = 222572, - [SMALL_STATE(4181)] = 222660, - [SMALL_STATE(4182)] = 222744, - [SMALL_STATE(4183)] = 222822, - [SMALL_STATE(4184)] = 222892, - [SMALL_STATE(4185)] = 222960, - [SMALL_STATE(4186)] = 223024, - [SMALL_STATE(4187)] = 223090, - [SMALL_STATE(4188)] = 223154, - [SMALL_STATE(4189)] = 223258, - [SMALL_STATE(4190)] = 223344, - [SMALL_STATE(4191)] = 223408, - [SMALL_STATE(4192)] = 223472, - [SMALL_STATE(4193)] = 223578, - [SMALL_STATE(4194)] = 223642, - [SMALL_STATE(4195)] = 223710, - [SMALL_STATE(4196)] = 223774, - [SMALL_STATE(4197)] = 223868, - [SMALL_STATE(4198)] = 223976, - [SMALL_STATE(4199)] = 224082, - [SMALL_STATE(4200)] = 224146, - [SMALL_STATE(4201)] = 224210, - [SMALL_STATE(4202)] = 224274, - [SMALL_STATE(4203)] = 224338, - [SMALL_STATE(4204)] = 224402, - [SMALL_STATE(4205)] = 224468, - [SMALL_STATE(4206)] = 224534, - [SMALL_STATE(4207)] = 224598, - [SMALL_STATE(4208)] = 224662, - [SMALL_STATE(4209)] = 224726, - [SMALL_STATE(4210)] = 224790, - [SMALL_STATE(4211)] = 224868, - [SMALL_STATE(4212)] = 224932, - [SMALL_STATE(4213)] = 224996, - [SMALL_STATE(4214)] = 225060, - [SMALL_STATE(4215)] = 225124, - [SMALL_STATE(4216)] = 225228, - [SMALL_STATE(4217)] = 225300, - [SMALL_STATE(4218)] = 225364, - [SMALL_STATE(4219)] = 225428, - [SMALL_STATE(4220)] = 225492, - [SMALL_STATE(4221)] = 225556, - [SMALL_STATE(4222)] = 225620, - [SMALL_STATE(4223)] = 225684, - [SMALL_STATE(4224)] = 225748, - [SMALL_STATE(4225)] = 225812, - [SMALL_STATE(4226)] = 225876, - [SMALL_STATE(4227)] = 225940, - [SMALL_STATE(4228)] = 226004, - [SMALL_STATE(4229)] = 226068, - [SMALL_STATE(4230)] = 226132, - [SMALL_STATE(4231)] = 226196, - [SMALL_STATE(4232)] = 226260, - [SMALL_STATE(4233)] = 226336, - [SMALL_STATE(4234)] = 226400, - [SMALL_STATE(4235)] = 226464, - [SMALL_STATE(4236)] = 226528, - [SMALL_STATE(4237)] = 226592, - [SMALL_STATE(4238)] = 226656, - [SMALL_STATE(4239)] = 226720, - [SMALL_STATE(4240)] = 226784, - [SMALL_STATE(4241)] = 226848, - [SMALL_STATE(4242)] = 226912, - [SMALL_STATE(4243)] = 226976, - [SMALL_STATE(4244)] = 227040, - [SMALL_STATE(4245)] = 227104, - [SMALL_STATE(4246)] = 227168, - [SMALL_STATE(4247)] = 227232, - [SMALL_STATE(4248)] = 227296, - [SMALL_STATE(4249)] = 227360, - [SMALL_STATE(4250)] = 227424, - [SMALL_STATE(4251)] = 227488, - [SMALL_STATE(4252)] = 227552, - [SMALL_STATE(4253)] = 227616, - [SMALL_STATE(4254)] = 227680, - [SMALL_STATE(4255)] = 227744, - [SMALL_STATE(4256)] = 227808, - [SMALL_STATE(4257)] = 227872, - [SMALL_STATE(4258)] = 227936, - [SMALL_STATE(4259)] = 228000, - [SMALL_STATE(4260)] = 228064, - [SMALL_STATE(4261)] = 228128, - [SMALL_STATE(4262)] = 228192, - [SMALL_STATE(4263)] = 228256, - [SMALL_STATE(4264)] = 228320, - [SMALL_STATE(4265)] = 228384, - [SMALL_STATE(4266)] = 228448, - [SMALL_STATE(4267)] = 228512, - [SMALL_STATE(4268)] = 228576, - [SMALL_STATE(4269)] = 228640, - [SMALL_STATE(4270)] = 228704, - [SMALL_STATE(4271)] = 228772, - [SMALL_STATE(4272)] = 228836, - [SMALL_STATE(4273)] = 228900, - [SMALL_STATE(4274)] = 228964, - [SMALL_STATE(4275)] = 229028, - [SMALL_STATE(4276)] = 229092, - [SMALL_STATE(4277)] = 229158, - [SMALL_STATE(4278)] = 229222, - [SMALL_STATE(4279)] = 229286, - [SMALL_STATE(4280)] = 229350, - [SMALL_STATE(4281)] = 229414, - [SMALL_STATE(4282)] = 229478, - [SMALL_STATE(4283)] = 229542, - [SMALL_STATE(4284)] = 229606, - [SMALL_STATE(4285)] = 229712, - [SMALL_STATE(4286)] = 229776, - [SMALL_STATE(4287)] = 229844, - [SMALL_STATE(4288)] = 229912, - [SMALL_STATE(4289)] = 229980, - [SMALL_STATE(4290)] = 230044, - [SMALL_STATE(4291)] = 230110, - [SMALL_STATE(4292)] = 230200, - [SMALL_STATE(4293)] = 230266, - [SMALL_STATE(4294)] = 230330, - [SMALL_STATE(4295)] = 230394, - [SMALL_STATE(4296)] = 230458, - [SMALL_STATE(4297)] = 230522, - [SMALL_STATE(4298)] = 230586, - [SMALL_STATE(4299)] = 230650, - [SMALL_STATE(4300)] = 230714, - [SMALL_STATE(4301)] = 230778, - [SMALL_STATE(4302)] = 230842, - [SMALL_STATE(4303)] = 230906, - [SMALL_STATE(4304)] = 230970, - [SMALL_STATE(4305)] = 231034, - [SMALL_STATE(4306)] = 231098, - [SMALL_STATE(4307)] = 231162, - [SMALL_STATE(4308)] = 231228, - [SMALL_STATE(4309)] = 231292, - [SMALL_STATE(4310)] = 231360, - [SMALL_STATE(4311)] = 231428, - [SMALL_STATE(4312)] = 231496, - [SMALL_STATE(4313)] = 231560, - [SMALL_STATE(4314)] = 231624, - [SMALL_STATE(4315)] = 231688, - [SMALL_STATE(4316)] = 231752, - [SMALL_STATE(4317)] = 231816, - [SMALL_STATE(4318)] = 231880, - [SMALL_STATE(4319)] = 231946, - [SMALL_STATE(4320)] = 232010, - [SMALL_STATE(4321)] = 232074, - [SMALL_STATE(4322)] = 232178, - [SMALL_STATE(4323)] = 232242, - [SMALL_STATE(4324)] = 232306, - [SMALL_STATE(4325)] = 232370, - [SMALL_STATE(4326)] = 232434, - [SMALL_STATE(4327)] = 232498, - [SMALL_STATE(4328)] = 232562, - [SMALL_STATE(4329)] = 232626, - [SMALL_STATE(4330)] = 232690, - [SMALL_STATE(4331)] = 232754, - [SMALL_STATE(4332)] = 232820, - [SMALL_STATE(4333)] = 232886, - [SMALL_STATE(4334)] = 232950, - [SMALL_STATE(4335)] = 233016, - [SMALL_STATE(4336)] = 233080, - [SMALL_STATE(4337)] = 233144, - [SMALL_STATE(4338)] = 233208, - [SMALL_STATE(4339)] = 233272, - [SMALL_STATE(4340)] = 233336, - [SMALL_STATE(4341)] = 233402, - [SMALL_STATE(4342)] = 233466, - [SMALL_STATE(4343)] = 233532, - [SMALL_STATE(4344)] = 233598, - [SMALL_STATE(4345)] = 233664, - [SMALL_STATE(4346)] = 233728, - [SMALL_STATE(4347)] = 233792, - [SMALL_STATE(4348)] = 233856, - [SMALL_STATE(4349)] = 233922, - [SMALL_STATE(4350)] = 234000, - [SMALL_STATE(4351)] = 234104, - [SMALL_STATE(4352)] = 234168, - [SMALL_STATE(4353)] = 234232, - [SMALL_STATE(4354)] = 234296, - [SMALL_STATE(4355)] = 234360, - [SMALL_STATE(4356)] = 234424, - [SMALL_STATE(4357)] = 234532, - [SMALL_STATE(4358)] = 234600, - [SMALL_STATE(4359)] = 234664, - [SMALL_STATE(4360)] = 234728, - [SMALL_STATE(4361)] = 234792, - [SMALL_STATE(4362)] = 234858, - [SMALL_STATE(4363)] = 234922, - [SMALL_STATE(4364)] = 234988, - [SMALL_STATE(4365)] = 235052, - [SMALL_STATE(4366)] = 235116, - [SMALL_STATE(4367)] = 235180, - [SMALL_STATE(4368)] = 235244, - [SMALL_STATE(4369)] = 235308, - [SMALL_STATE(4370)] = 235410, - [SMALL_STATE(4371)] = 235474, - [SMALL_STATE(4372)] = 235538, - [SMALL_STATE(4373)] = 235644, - [SMALL_STATE(4374)] = 235708, - [SMALL_STATE(4375)] = 235772, - [SMALL_STATE(4376)] = 235836, - [SMALL_STATE(4377)] = 235900, - [SMALL_STATE(4378)] = 235964, - [SMALL_STATE(4379)] = 236028, - [SMALL_STATE(4380)] = 236092, - [SMALL_STATE(4381)] = 236156, - [SMALL_STATE(4382)] = 236220, - [SMALL_STATE(4383)] = 236320, - [SMALL_STATE(4384)] = 236384, - [SMALL_STATE(4385)] = 236452, - [SMALL_STATE(4386)] = 236516, - [SMALL_STATE(4387)] = 236580, - [SMALL_STATE(4388)] = 236644, - [SMALL_STATE(4389)] = 236708, - [SMALL_STATE(4390)] = 236772, - [SMALL_STATE(4391)] = 236836, - [SMALL_STATE(4392)] = 236900, - [SMALL_STATE(4393)] = 236964, - [SMALL_STATE(4394)] = 237028, - [SMALL_STATE(4395)] = 237092, - [SMALL_STATE(4396)] = 237158, - [SMALL_STATE(4397)] = 237224, - [SMALL_STATE(4398)] = 237288, - [SMALL_STATE(4399)] = 237352, - [SMALL_STATE(4400)] = 237460, - [SMALL_STATE(4401)] = 237524, - [SMALL_STATE(4402)] = 237588, - [SMALL_STATE(4403)] = 237652, - [SMALL_STATE(4404)] = 237716, - [SMALL_STATE(4405)] = 237780, - [SMALL_STATE(4406)] = 237844, - [SMALL_STATE(4407)] = 237908, - [SMALL_STATE(4408)] = 237972, - [SMALL_STATE(4409)] = 238036, - [SMALL_STATE(4410)] = 238102, - [SMALL_STATE(4411)] = 238166, - [SMALL_STATE(4412)] = 238230, - [SMALL_STATE(4413)] = 238298, - [SMALL_STATE(4414)] = 238376, - [SMALL_STATE(4415)] = 238454, - [SMALL_STATE(4416)] = 238536, - [SMALL_STATE(4417)] = 238622, + [SMALL_STATE(4063)] = 213758, + [SMALL_STATE(4064)] = 213822, + [SMALL_STATE(4065)] = 213886, + [SMALL_STATE(4066)] = 213950, + [SMALL_STATE(4067)] = 214018, + [SMALL_STATE(4068)] = 214082, + [SMALL_STATE(4069)] = 214150, + [SMALL_STATE(4070)] = 214214, + [SMALL_STATE(4071)] = 214278, + [SMALL_STATE(4072)] = 214342, + [SMALL_STATE(4073)] = 214406, + [SMALL_STATE(4074)] = 214512, + [SMALL_STATE(4075)] = 214578, + [SMALL_STATE(4076)] = 214644, + [SMALL_STATE(4077)] = 214712, + [SMALL_STATE(4078)] = 214776, + [SMALL_STATE(4079)] = 214840, + [SMALL_STATE(4080)] = 214932, + [SMALL_STATE(4081)] = 214996, + [SMALL_STATE(4082)] = 215064, + [SMALL_STATE(4083)] = 215168, + [SMALL_STATE(4084)] = 215232, + [SMALL_STATE(4085)] = 215296, + [SMALL_STATE(4086)] = 215364, + [SMALL_STATE(4087)] = 215432, + [SMALL_STATE(4088)] = 215496, + [SMALL_STATE(4089)] = 215564, + [SMALL_STATE(4090)] = 215628, + [SMALL_STATE(4091)] = 215692, + [SMALL_STATE(4092)] = 215756, + [SMALL_STATE(4093)] = 215820, + [SMALL_STATE(4094)] = 215884, + [SMALL_STATE(4095)] = 215948, + [SMALL_STATE(4096)] = 216012, + [SMALL_STATE(4097)] = 216080, + [SMALL_STATE(4098)] = 216144, + [SMALL_STATE(4099)] = 216208, + [SMALL_STATE(4100)] = 216272, + [SMALL_STATE(4101)] = 216336, + [SMALL_STATE(4102)] = 216400, + [SMALL_STATE(4103)] = 216464, + [SMALL_STATE(4104)] = 216528, + [SMALL_STATE(4105)] = 216596, + [SMALL_STATE(4106)] = 216660, + [SMALL_STATE(4107)] = 216764, + [SMALL_STATE(4108)] = 216828, + [SMALL_STATE(4109)] = 216892, + [SMALL_STATE(4110)] = 216960, + [SMALL_STATE(4111)] = 217040, + [SMALL_STATE(4112)] = 217104, + [SMALL_STATE(4113)] = 217168, + [SMALL_STATE(4114)] = 217248, + [SMALL_STATE(4115)] = 217334, + [SMALL_STATE(4116)] = 217434, + [SMALL_STATE(4117)] = 217504, + [SMALL_STATE(4118)] = 217580, + [SMALL_STATE(4119)] = 217652, + [SMALL_STATE(4120)] = 217716, + [SMALL_STATE(4121)] = 217820, + [SMALL_STATE(4122)] = 217924, + [SMALL_STATE(4123)] = 218026, + [SMALL_STATE(4124)] = 218124, + [SMALL_STATE(4125)] = 218220, + [SMALL_STATE(4126)] = 218292, + [SMALL_STATE(4127)] = 218382, + [SMALL_STATE(4128)] = 218446, + [SMALL_STATE(4129)] = 218534, + [SMALL_STATE(4130)] = 218640, + [SMALL_STATE(4131)] = 218726, + [SMALL_STATE(4132)] = 218790, + [SMALL_STATE(4133)] = 218868, + [SMALL_STATE(4134)] = 218946, + [SMALL_STATE(4135)] = 219046, + [SMALL_STATE(4136)] = 219116, + [SMALL_STATE(4137)] = 219192, + [SMALL_STATE(4138)] = 219260, + [SMALL_STATE(4139)] = 219332, + [SMALL_STATE(4140)] = 219436, + [SMALL_STATE(4141)] = 219540, + [SMALL_STATE(4142)] = 219642, + [SMALL_STATE(4143)] = 219738, + [SMALL_STATE(4144)] = 219830, + [SMALL_STATE(4145)] = 219920, + [SMALL_STATE(4146)] = 219984, + [SMALL_STATE(4147)] = 220052, + [SMALL_STATE(4148)] = 220116, + [SMALL_STATE(4149)] = 220180, + [SMALL_STATE(4150)] = 220268, + [SMALL_STATE(4151)] = 220352, + [SMALL_STATE(4152)] = 220416, + [SMALL_STATE(4153)] = 220480, + [SMALL_STATE(4154)] = 220558, + [SMALL_STATE(4155)] = 220636, + [SMALL_STATE(4156)] = 220700, + [SMALL_STATE(4157)] = 220764, + [SMALL_STATE(4158)] = 220828, + [SMALL_STATE(4159)] = 220892, + [SMALL_STATE(4160)] = 220956, + [SMALL_STATE(4161)] = 221020, + [SMALL_STATE(4162)] = 221084, + [SMALL_STATE(4163)] = 221148, + [SMALL_STATE(4164)] = 221228, + [SMALL_STATE(4165)] = 221312, + [SMALL_STATE(4166)] = 221410, + [SMALL_STATE(4167)] = 221474, + [SMALL_STATE(4168)] = 221538, + [SMALL_STATE(4169)] = 221608, + [SMALL_STATE(4170)] = 221684, + [SMALL_STATE(4171)] = 221748, + [SMALL_STATE(4172)] = 221812, + [SMALL_STATE(4173)] = 221880, + [SMALL_STATE(4174)] = 221944, + [SMALL_STATE(4175)] = 222046, + [SMALL_STATE(4176)] = 222110, + [SMALL_STATE(4177)] = 222174, + [SMALL_STATE(4178)] = 222238, + [SMALL_STATE(4179)] = 222340, + [SMALL_STATE(4180)] = 222438, + [SMALL_STATE(4181)] = 222502, + [SMALL_STATE(4182)] = 222566, + [SMALL_STATE(4183)] = 222666, + [SMALL_STATE(4184)] = 222762, + [SMALL_STATE(4185)] = 222856, + [SMALL_STATE(4186)] = 222920, + [SMALL_STATE(4187)] = 222984, + [SMALL_STATE(4188)] = 223048, + [SMALL_STATE(4189)] = 223138, + [SMALL_STATE(4190)] = 223202, + [SMALL_STATE(4191)] = 223266, + [SMALL_STATE(4192)] = 223354, + [SMALL_STATE(4193)] = 223440, + [SMALL_STATE(4194)] = 223504, + [SMALL_STATE(4195)] = 223570, + [SMALL_STATE(4196)] = 223634, + [SMALL_STATE(4197)] = 223698, + [SMALL_STATE(4198)] = 223780, + [SMALL_STATE(4199)] = 223858, + [SMALL_STATE(4200)] = 223966, + [SMALL_STATE(4201)] = 224030, + [SMALL_STATE(4202)] = 224108, + [SMALL_STATE(4203)] = 224176, + [SMALL_STATE(4204)] = 224240, + [SMALL_STATE(4205)] = 224304, + [SMALL_STATE(4206)] = 224368, + [SMALL_STATE(4207)] = 224432, + [SMALL_STATE(4208)] = 224496, + [SMALL_STATE(4209)] = 224560, + [SMALL_STATE(4210)] = 224624, + [SMALL_STATE(4211)] = 224688, + [SMALL_STATE(4212)] = 224752, + [SMALL_STATE(4213)] = 224836, + [SMALL_STATE(4214)] = 224900, + [SMALL_STATE(4215)] = 224964, + [SMALL_STATE(4216)] = 225028, + [SMALL_STATE(4217)] = 225092, + [SMALL_STATE(4218)] = 225156, + [SMALL_STATE(4219)] = 225220, + [SMALL_STATE(4220)] = 225284, + [SMALL_STATE(4221)] = 225348, + [SMALL_STATE(4222)] = 225412, + [SMALL_STATE(4223)] = 225478, + [SMALL_STATE(4224)] = 225542, + [SMALL_STATE(4225)] = 225606, + [SMALL_STATE(4226)] = 225670, + [SMALL_STATE(4227)] = 225734, + [SMALL_STATE(4228)] = 225798, + [SMALL_STATE(4229)] = 225862, + [SMALL_STATE(4230)] = 225926, + [SMALL_STATE(4231)] = 225990, + [SMALL_STATE(4232)] = 226054, + [SMALL_STATE(4233)] = 226118, + [SMALL_STATE(4234)] = 226182, + [SMALL_STATE(4235)] = 226246, + [SMALL_STATE(4236)] = 226310, + [SMALL_STATE(4237)] = 226374, + [SMALL_STATE(4238)] = 226438, + [SMALL_STATE(4239)] = 226502, + [SMALL_STATE(4240)] = 226566, + [SMALL_STATE(4241)] = 226630, + [SMALL_STATE(4242)] = 226694, + [SMALL_STATE(4243)] = 226758, + [SMALL_STATE(4244)] = 226822, + [SMALL_STATE(4245)] = 226886, + [SMALL_STATE(4246)] = 226950, + [SMALL_STATE(4247)] = 227014, + [SMALL_STATE(4248)] = 227078, + [SMALL_STATE(4249)] = 227144, + [SMALL_STATE(4250)] = 227210, + [SMALL_STATE(4251)] = 227274, + [SMALL_STATE(4252)] = 227338, + [SMALL_STATE(4253)] = 227402, + [SMALL_STATE(4254)] = 227466, + [SMALL_STATE(4255)] = 227530, + [SMALL_STATE(4256)] = 227594, + [SMALL_STATE(4257)] = 227658, + [SMALL_STATE(4258)] = 227722, + [SMALL_STATE(4259)] = 227786, + [SMALL_STATE(4260)] = 227850, + [SMALL_STATE(4261)] = 227914, + [SMALL_STATE(4262)] = 227980, + [SMALL_STATE(4263)] = 228046, + [SMALL_STATE(4264)] = 228112, + [SMALL_STATE(4265)] = 228176, + [SMALL_STATE(4266)] = 228240, + [SMALL_STATE(4267)] = 228306, + [SMALL_STATE(4268)] = 228370, + [SMALL_STATE(4269)] = 228434, + [SMALL_STATE(4270)] = 228500, + [SMALL_STATE(4271)] = 228564, + [SMALL_STATE(4272)] = 228628, + [SMALL_STATE(4273)] = 228692, + [SMALL_STATE(4274)] = 228756, + [SMALL_STATE(4275)] = 228822, + [SMALL_STATE(4276)] = 228886, + [SMALL_STATE(4277)] = 228950, + [SMALL_STATE(4278)] = 229016, + [SMALL_STATE(4279)] = 229080, + [SMALL_STATE(4280)] = 229144, + [SMALL_STATE(4281)] = 229208, + [SMALL_STATE(4282)] = 229272, + [SMALL_STATE(4283)] = 229336, + [SMALL_STATE(4284)] = 229400, + [SMALL_STATE(4285)] = 229466, + [SMALL_STATE(4286)] = 229532, + [SMALL_STATE(4287)] = 229596, + [SMALL_STATE(4288)] = 229704, + [SMALL_STATE(4289)] = 229768, + [SMALL_STATE(4290)] = 229832, + [SMALL_STATE(4291)] = 229896, + [SMALL_STATE(4292)] = 229960, + [SMALL_STATE(4293)] = 230024, + [SMALL_STATE(4294)] = 230088, + [SMALL_STATE(4295)] = 230152, + [SMALL_STATE(4296)] = 230216, + [SMALL_STATE(4297)] = 230280, + [SMALL_STATE(4298)] = 230344, + [SMALL_STATE(4299)] = 230408, + [SMALL_STATE(4300)] = 230472, + [SMALL_STATE(4301)] = 230536, + [SMALL_STATE(4302)] = 230600, + [SMALL_STATE(4303)] = 230664, + [SMALL_STATE(4304)] = 230728, + [SMALL_STATE(4305)] = 230792, + [SMALL_STATE(4306)] = 230856, + [SMALL_STATE(4307)] = 230920, + [SMALL_STATE(4308)] = 230984, + [SMALL_STATE(4309)] = 231048, + [SMALL_STATE(4310)] = 231154, + [SMALL_STATE(4311)] = 231218, + [SMALL_STATE(4312)] = 231282, + [SMALL_STATE(4313)] = 231346, + [SMALL_STATE(4314)] = 231410, + [SMALL_STATE(4315)] = 231474, + [SMALL_STATE(4316)] = 231538, + [SMALL_STATE(4317)] = 231602, + [SMALL_STATE(4318)] = 231668, + [SMALL_STATE(4319)] = 231732, + [SMALL_STATE(4320)] = 231800, + [SMALL_STATE(4321)] = 231864, + [SMALL_STATE(4322)] = 231930, + [SMALL_STATE(4323)] = 232036, + [SMALL_STATE(4324)] = 232100, + [SMALL_STATE(4325)] = 232166, + [SMALL_STATE(4326)] = 232232, + [SMALL_STATE(4327)] = 232298, + [SMALL_STATE(4328)] = 232362, + [SMALL_STATE(4329)] = 232428, + [SMALL_STATE(4330)] = 232492, + [SMALL_STATE(4331)] = 232556, + [SMALL_STATE(4332)] = 232620, + [SMALL_STATE(4333)] = 232684, + [SMALL_STATE(4334)] = 232748, + [SMALL_STATE(4335)] = 232812, + [SMALL_STATE(4336)] = 232876, + [SMALL_STATE(4337)] = 232940, + [SMALL_STATE(4338)] = 233004, + [SMALL_STATE(4339)] = 233068, + [SMALL_STATE(4340)] = 233132, + [SMALL_STATE(4341)] = 233238, + [SMALL_STATE(4342)] = 233318, + [SMALL_STATE(4343)] = 233404, + [SMALL_STATE(4344)] = 233504, + [SMALL_STATE(4345)] = 233568, + [SMALL_STATE(4346)] = 233632, + [SMALL_STATE(4347)] = 233696, + [SMALL_STATE(4348)] = 233760, + [SMALL_STATE(4349)] = 233824, + [SMALL_STATE(4350)] = 233888, + [SMALL_STATE(4351)] = 233952, + [SMALL_STATE(4352)] = 234028, + [SMALL_STATE(4353)] = 234092, + [SMALL_STATE(4354)] = 234164, + [SMALL_STATE(4355)] = 234228, + [SMALL_STATE(4356)] = 234292, + [SMALL_STATE(4357)] = 234400, + [SMALL_STATE(4358)] = 234504, + [SMALL_STATE(4359)] = 234568, + [SMALL_STATE(4360)] = 234632, + [SMALL_STATE(4361)] = 234696, + [SMALL_STATE(4362)] = 234760, + [SMALL_STATE(4363)] = 234824, + [SMALL_STATE(4364)] = 234928, + [SMALL_STATE(4365)] = 234992, + [SMALL_STATE(4366)] = 235062, + [SMALL_STATE(4367)] = 235126, + [SMALL_STATE(4368)] = 235224, + [SMALL_STATE(4369)] = 235320, + [SMALL_STATE(4370)] = 235384, + [SMALL_STATE(4371)] = 235476, + [SMALL_STATE(4372)] = 235566, + [SMALL_STATE(4373)] = 235654, + [SMALL_STATE(4374)] = 235738, + [SMALL_STATE(4375)] = 235816, + [SMALL_STATE(4376)] = 235880, + [SMALL_STATE(4377)] = 235944, + [SMALL_STATE(4378)] = 236008, + [SMALL_STATE(4379)] = 236072, + [SMALL_STATE(4380)] = 236136, + [SMALL_STATE(4381)] = 236200, + [SMALL_STATE(4382)] = 236264, + [SMALL_STATE(4383)] = 236328, + [SMALL_STATE(4384)] = 236392, + [SMALL_STATE(4385)] = 236456, + [SMALL_STATE(4386)] = 236534, + [SMALL_STATE(4387)] = 236598, + [SMALL_STATE(4388)] = 236666, + [SMALL_STATE(4389)] = 236730, + [SMALL_STATE(4390)] = 236794, + [SMALL_STATE(4391)] = 236858, + [SMALL_STATE(4392)] = 236922, + [SMALL_STATE(4393)] = 236986, + [SMALL_STATE(4394)] = 237050, + [SMALL_STATE(4395)] = 237152, + [SMALL_STATE(4396)] = 237216, + [SMALL_STATE(4397)] = 237280, + [SMALL_STATE(4398)] = 237386, + [SMALL_STATE(4399)] = 237450, + [SMALL_STATE(4400)] = 237514, + [SMALL_STATE(4401)] = 237578, + [SMALL_STATE(4402)] = 237642, + [SMALL_STATE(4403)] = 237706, + [SMALL_STATE(4404)] = 237770, + [SMALL_STATE(4405)] = 237834, + [SMALL_STATE(4406)] = 237898, + [SMALL_STATE(4407)] = 237962, + [SMALL_STATE(4408)] = 238026, + [SMALL_STATE(4409)] = 238134, + [SMALL_STATE(4410)] = 238198, + [SMALL_STATE(4411)] = 238262, + [SMALL_STATE(4412)] = 238326, + [SMALL_STATE(4413)] = 238390, + [SMALL_STATE(4414)] = 238454, + [SMALL_STATE(4415)] = 238518, + [SMALL_STATE(4416)] = 238582, + [SMALL_STATE(4417)] = 238646, [SMALL_STATE(4418)] = 238710, - [SMALL_STATE(4419)] = 238785, - [SMALL_STATE(4420)] = 238848, - [SMALL_STATE(4421)] = 238911, - [SMALL_STATE(4422)] = 238974, - [SMALL_STATE(4423)] = 239037, - [SMALL_STATE(4424)] = 239100, - [SMALL_STATE(4425)] = 239163, - [SMALL_STATE(4426)] = 239226, - [SMALL_STATE(4427)] = 239289, - [SMALL_STATE(4428)] = 239352, - [SMALL_STATE(4429)] = 239415, - [SMALL_STATE(4430)] = 239478, - [SMALL_STATE(4431)] = 239541, - [SMALL_STATE(4432)] = 239604, - [SMALL_STATE(4433)] = 239667, - [SMALL_STATE(4434)] = 239730, - [SMALL_STATE(4435)] = 239793, - [SMALL_STATE(4436)] = 239856, - [SMALL_STATE(4437)] = 239919, - [SMALL_STATE(4438)] = 239982, - [SMALL_STATE(4439)] = 240045, - [SMALL_STATE(4440)] = 240108, - [SMALL_STATE(4441)] = 240171, - [SMALL_STATE(4442)] = 240234, - [SMALL_STATE(4443)] = 240337, - [SMALL_STATE(4444)] = 240440, - [SMALL_STATE(4445)] = 240503, - [SMALL_STATE(4446)] = 240606, - [SMALL_STATE(4447)] = 240669, - [SMALL_STATE(4448)] = 240732, - [SMALL_STATE(4449)] = 240795, - [SMALL_STATE(4450)] = 240858, - [SMALL_STATE(4451)] = 240921, - [SMALL_STATE(4452)] = 240984, - [SMALL_STATE(4453)] = 241047, - [SMALL_STATE(4454)] = 241110, - [SMALL_STATE(4455)] = 241173, - [SMALL_STATE(4456)] = 241262, - [SMALL_STATE(4457)] = 241367, - [SMALL_STATE(4458)] = 241430, - [SMALL_STATE(4459)] = 241493, - [SMALL_STATE(4460)] = 241556, - [SMALL_STATE(4461)] = 241619, - [SMALL_STATE(4462)] = 241682, - [SMALL_STATE(4463)] = 241745, - [SMALL_STATE(4464)] = 241808, - [SMALL_STATE(4465)] = 241871, - [SMALL_STATE(4466)] = 241934, - [SMALL_STATE(4467)] = 241997, - [SMALL_STATE(4468)] = 242060, - [SMALL_STATE(4469)] = 242123, - [SMALL_STATE(4470)] = 242228, - [SMALL_STATE(4471)] = 242291, - [SMALL_STATE(4472)] = 242354, - [SMALL_STATE(4473)] = 242417, - [SMALL_STATE(4474)] = 242480, - [SMALL_STATE(4475)] = 242547, - [SMALL_STATE(4476)] = 242624, - [SMALL_STATE(4477)] = 242701, - [SMALL_STATE(4478)] = 242782, - [SMALL_STATE(4479)] = 242867, - [SMALL_STATE(4480)] = 242954, - [SMALL_STATE(4481)] = 243017, - [SMALL_STATE(4482)] = 243110, - [SMALL_STATE(4483)] = 243205, - [SMALL_STATE(4484)] = 243304, - [SMALL_STATE(4485)] = 243367, - [SMALL_STATE(4486)] = 243468, - [SMALL_STATE(4487)] = 243569, - [SMALL_STATE(4488)] = 243640, - [SMALL_STATE(4489)] = 243745, - [SMALL_STATE(4490)] = 243810, - [SMALL_STATE(4491)] = 243915, - [SMALL_STATE(4492)] = 243990, - [SMALL_STATE(4493)] = 244059, - [SMALL_STATE(4494)] = 244122, - [SMALL_STATE(4495)] = 244219, - [SMALL_STATE(4496)] = 244322, - [SMALL_STATE(4497)] = 244425, - [SMALL_STATE(4498)] = 244508, - [SMALL_STATE(4499)] = 244573, - [SMALL_STATE(4500)] = 244652, - [SMALL_STATE(4501)] = 244715, - [SMALL_STATE(4502)] = 244778, - [SMALL_STATE(4503)] = 244841, - [SMALL_STATE(4504)] = 244904, - [SMALL_STATE(4505)] = 244967, - [SMALL_STATE(4506)] = 245030, - [SMALL_STATE(4507)] = 245093, - [SMALL_STATE(4508)] = 245156, - [SMALL_STATE(4509)] = 245219, - [SMALL_STATE(4510)] = 245282, - [SMALL_STATE(4511)] = 245349, - [SMALL_STATE(4512)] = 245412, - [SMALL_STATE(4513)] = 245475, - [SMALL_STATE(4514)] = 245538, - [SMALL_STATE(4515)] = 245601, - [SMALL_STATE(4516)] = 245668, - [SMALL_STATE(4517)] = 245771, - [SMALL_STATE(4518)] = 245850, - [SMALL_STATE(4519)] = 245933, - [SMALL_STATE(4520)] = 246030, - [SMALL_STATE(4521)] = 246099, - [SMALL_STATE(4522)] = 246162, - [SMALL_STATE(4523)] = 246233, - [SMALL_STATE(4524)] = 246334, - [SMALL_STATE(4525)] = 246435, - [SMALL_STATE(4526)] = 246534, - [SMALL_STATE(4527)] = 246629, - [SMALL_STATE(4528)] = 246722, - [SMALL_STATE(4529)] = 246811, - [SMALL_STATE(4530)] = 246898, - [SMALL_STATE(4531)] = 246983, - [SMALL_STATE(4532)] = 247064, - [SMALL_STATE(4533)] = 247141, - [SMALL_STATE(4534)] = 247218, - [SMALL_STATE(4535)] = 247321, - [SMALL_STATE(4536)] = 247384, - [SMALL_STATE(4537)] = 247447, - [SMALL_STATE(4538)] = 247510, - [SMALL_STATE(4539)] = 247573, - [SMALL_STATE(4540)] = 247636, - [SMALL_STATE(4541)] = 247699, - [SMALL_STATE(4542)] = 247762, - [SMALL_STATE(4543)] = 247825, - [SMALL_STATE(4544)] = 247888, - [SMALL_STATE(4545)] = 247951, - [SMALL_STATE(4546)] = 248014, - [SMALL_STATE(4547)] = 248077, - [SMALL_STATE(4548)] = 248140, - [SMALL_STATE(4549)] = 248203, - [SMALL_STATE(4550)] = 248266, - [SMALL_STATE(4551)] = 248329, - [SMALL_STATE(4552)] = 248392, + [SMALL_STATE(4419)] = 238773, + [SMALL_STATE(4420)] = 238856, + [SMALL_STATE(4421)] = 238919, + [SMALL_STATE(4422)] = 238982, + [SMALL_STATE(4423)] = 239085, + [SMALL_STATE(4424)] = 239148, + [SMALL_STATE(4425)] = 239215, + [SMALL_STATE(4426)] = 239278, + [SMALL_STATE(4427)] = 239341, + [SMALL_STATE(4428)] = 239404, + [SMALL_STATE(4429)] = 239467, + [SMALL_STATE(4430)] = 239530, + [SMALL_STATE(4431)] = 239593, + [SMALL_STATE(4432)] = 239656, + [SMALL_STATE(4433)] = 239719, + [SMALL_STATE(4434)] = 239782, + [SMALL_STATE(4435)] = 239845, + [SMALL_STATE(4436)] = 239908, + [SMALL_STATE(4437)] = 239971, + [SMALL_STATE(4438)] = 240048, + [SMALL_STATE(4439)] = 240111, + [SMALL_STATE(4440)] = 240196, + [SMALL_STATE(4441)] = 240283, + [SMALL_STATE(4442)] = 240386, + [SMALL_STATE(4443)] = 240475, + [SMALL_STATE(4444)] = 240568, + [SMALL_STATE(4445)] = 240663, + [SMALL_STATE(4446)] = 240726, + [SMALL_STATE(4447)] = 240825, + [SMALL_STATE(4448)] = 240888, + [SMALL_STATE(4449)] = 240951, + [SMALL_STATE(4450)] = 241014, + [SMALL_STATE(4451)] = 241077, + [SMALL_STATE(4452)] = 241140, + [SMALL_STATE(4453)] = 241241, + [SMALL_STATE(4454)] = 241306, + [SMALL_STATE(4455)] = 241407, + [SMALL_STATE(4456)] = 241478, + [SMALL_STATE(4457)] = 241583, + [SMALL_STATE(4458)] = 241658, + [SMALL_STATE(4459)] = 241721, + [SMALL_STATE(4460)] = 241784, + [SMALL_STATE(4461)] = 241847, + [SMALL_STATE(4462)] = 241910, + [SMALL_STATE(4463)] = 241973, + [SMALL_STATE(4464)] = 242070, + [SMALL_STATE(4465)] = 242133, + [SMALL_STATE(4466)] = 242196, + [SMALL_STATE(4467)] = 242259, + [SMALL_STATE(4468)] = 242338, + [SMALL_STATE(4469)] = 242405, + [SMALL_STATE(4470)] = 242468, + [SMALL_STATE(4471)] = 242571, + [SMALL_STATE(4472)] = 242634, + [SMALL_STATE(4473)] = 242697, + [SMALL_STATE(4474)] = 242760, + [SMALL_STATE(4475)] = 242823, + [SMALL_STATE(4476)] = 242886, + [SMALL_STATE(4477)] = 242949, + [SMALL_STATE(4478)] = 243012, + [SMALL_STATE(4479)] = 243075, + [SMALL_STATE(4480)] = 243138, + [SMALL_STATE(4481)] = 243201, + [SMALL_STATE(4482)] = 243264, + [SMALL_STATE(4483)] = 243327, + [SMALL_STATE(4484)] = 243390, + [SMALL_STATE(4485)] = 243453, + [SMALL_STATE(4486)] = 243516, + [SMALL_STATE(4487)] = 243579, + [SMALL_STATE(4488)] = 243642, + [SMALL_STATE(4489)] = 243705, + [SMALL_STATE(4490)] = 243772, + [SMALL_STATE(4491)] = 243877, + [SMALL_STATE(4492)] = 243940, + [SMALL_STATE(4493)] = 244045, + [SMALL_STATE(4494)] = 244108, + [SMALL_STATE(4495)] = 244211, + [SMALL_STATE(4496)] = 244274, + [SMALL_STATE(4497)] = 244337, + [SMALL_STATE(4498)] = 244400, + [SMALL_STATE(4499)] = 244465, + [SMALL_STATE(4500)] = 244528, + [SMALL_STATE(4501)] = 244631, + [SMALL_STATE(4502)] = 244694, + [SMALL_STATE(4503)] = 244757, + [SMALL_STATE(4504)] = 244820, + [SMALL_STATE(4505)] = 244883, + [SMALL_STATE(4506)] = 244946, + [SMALL_STATE(4507)] = 245009, + [SMALL_STATE(4508)] = 245112, + [SMALL_STATE(4509)] = 245175, + [SMALL_STATE(4510)] = 245238, + [SMALL_STATE(4511)] = 245301, + [SMALL_STATE(4512)] = 245364, + [SMALL_STATE(4513)] = 245427, + [SMALL_STATE(4514)] = 245490, + [SMALL_STATE(4515)] = 245553, + [SMALL_STATE(4516)] = 245616, + [SMALL_STATE(4517)] = 245679, + [SMALL_STATE(4518)] = 245758, + [SMALL_STATE(4519)] = 245841, + [SMALL_STATE(4520)] = 245938, + [SMALL_STATE(4521)] = 246007, + [SMALL_STATE(4522)] = 246082, + [SMALL_STATE(4523)] = 246153, + [SMALL_STATE(4524)] = 246254, + [SMALL_STATE(4525)] = 246355, + [SMALL_STATE(4526)] = 246454, + [SMALL_STATE(4527)] = 246549, + [SMALL_STATE(4528)] = 246642, + [SMALL_STATE(4529)] = 246731, + [SMALL_STATE(4530)] = 246818, + [SMALL_STATE(4531)] = 246903, + [SMALL_STATE(4532)] = 246984, + [SMALL_STATE(4533)] = 247061, + [SMALL_STATE(4534)] = 247138, + [SMALL_STATE(4535)] = 247201, + [SMALL_STATE(4536)] = 247306, + [SMALL_STATE(4537)] = 247409, + [SMALL_STATE(4538)] = 247472, + [SMALL_STATE(4539)] = 247535, + [SMALL_STATE(4540)] = 247598, + [SMALL_STATE(4541)] = 247661, + [SMALL_STATE(4542)] = 247738, + [SMALL_STATE(4543)] = 247801, + [SMALL_STATE(4544)] = 247864, + [SMALL_STATE(4545)] = 247927, + [SMALL_STATE(4546)] = 247990, + [SMALL_STATE(4547)] = 248053, + [SMALL_STATE(4548)] = 248116, + [SMALL_STATE(4549)] = 248179, + [SMALL_STATE(4550)] = 248260, + [SMALL_STATE(4551)] = 248323, + [SMALL_STATE(4552)] = 248386, [SMALL_STATE(4553)] = 248455, [SMALL_STATE(4554)] = 248557, [SMALL_STATE(4555)] = 248659, @@ -428551,13 +428317,13 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4560)] = 249169, [SMALL_STATE(4561)] = 249271, [SMALL_STATE(4562)] = 249335, - [SMALL_STATE(4563)] = 249437, - [SMALL_STATE(4564)] = 249539, - [SMALL_STATE(4565)] = 249641, - [SMALL_STATE(4566)] = 249743, - [SMALL_STATE(4567)] = 249845, - [SMALL_STATE(4568)] = 249947, - [SMALL_STATE(4569)] = 250049, + [SMALL_STATE(4563)] = 249399, + [SMALL_STATE(4564)] = 249501, + [SMALL_STATE(4565)] = 249603, + [SMALL_STATE(4566)] = 249705, + [SMALL_STATE(4567)] = 249807, + [SMALL_STATE(4568)] = 249909, + [SMALL_STATE(4569)] = 250011, [SMALL_STATE(4570)] = 250113, [SMALL_STATE(4571)] = 250215, [SMALL_STATE(4572)] = 250317, @@ -428741,31 +428507,31 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4750)] = 258786, [SMALL_STATE(4751)] = 258817, [SMALL_STATE(4752)] = 258847, - [SMALL_STATE(4753)] = 258877, - [SMALL_STATE(4754)] = 258907, - [SMALL_STATE(4755)] = 258937, - [SMALL_STATE(4756)] = 258967, - [SMALL_STATE(4757)] = 258997, - [SMALL_STATE(4758)] = 259027, - [SMALL_STATE(4759)] = 259057, - [SMALL_STATE(4760)] = 259087, - [SMALL_STATE(4761)] = 259117, - [SMALL_STATE(4762)] = 259147, - [SMALL_STATE(4763)] = 259177, - [SMALL_STATE(4764)] = 259207, - [SMALL_STATE(4765)] = 259237, - [SMALL_STATE(4766)] = 259267, - [SMALL_STATE(4767)] = 259297, - [SMALL_STATE(4768)] = 259327, - [SMALL_STATE(4769)] = 259357, - [SMALL_STATE(4770)] = 259387, - [SMALL_STATE(4771)] = 259417, - [SMALL_STATE(4772)] = 259447, - [SMALL_STATE(4773)] = 259477, - [SMALL_STATE(4774)] = 259507, - [SMALL_STATE(4775)] = 259537, - [SMALL_STATE(4776)] = 259571, - [SMALL_STATE(4777)] = 259601, + [SMALL_STATE(4753)] = 258881, + [SMALL_STATE(4754)] = 258911, + [SMALL_STATE(4755)] = 258941, + [SMALL_STATE(4756)] = 258971, + [SMALL_STATE(4757)] = 259001, + [SMALL_STATE(4758)] = 259031, + [SMALL_STATE(4759)] = 259061, + [SMALL_STATE(4760)] = 259091, + [SMALL_STATE(4761)] = 259125, + [SMALL_STATE(4762)] = 259155, + [SMALL_STATE(4763)] = 259185, + [SMALL_STATE(4764)] = 259215, + [SMALL_STATE(4765)] = 259245, + [SMALL_STATE(4766)] = 259275, + [SMALL_STATE(4767)] = 259305, + [SMALL_STATE(4768)] = 259335, + [SMALL_STATE(4769)] = 259365, + [SMALL_STATE(4770)] = 259395, + [SMALL_STATE(4771)] = 259425, + [SMALL_STATE(4772)] = 259455, + [SMALL_STATE(4773)] = 259485, + [SMALL_STATE(4774)] = 259515, + [SMALL_STATE(4775)] = 259545, + [SMALL_STATE(4776)] = 259575, + [SMALL_STATE(4777)] = 259605, [SMALL_STATE(4778)] = 259635, [SMALL_STATE(4779)] = 259665, [SMALL_STATE(4780)] = 259695, @@ -428775,47 +428541,47 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4784)] = 259809, [SMALL_STATE(4785)] = 259840, [SMALL_STATE(4786)] = 259863, - [SMALL_STATE(4787)] = 259886, - [SMALL_STATE(4788)] = 259909, + [SMALL_STATE(4787)] = 259894, + [SMALL_STATE(4788)] = 259917, [SMALL_STATE(4789)] = 259940, [SMALL_STATE(4790)] = 259971, [SMALL_STATE(4791)] = 260002, - [SMALL_STATE(4792)] = 260033, - [SMALL_STATE(4793)] = 260064, - [SMALL_STATE(4794)] = 260095, - [SMALL_STATE(4795)] = 260118, - [SMALL_STATE(4796)] = 260149, - [SMALL_STATE(4797)] = 260180, - [SMALL_STATE(4798)] = 260203, - [SMALL_STATE(4799)] = 260226, - [SMALL_STATE(4800)] = 260257, - [SMALL_STATE(4801)] = 260288, - [SMALL_STATE(4802)] = 260319, - [SMALL_STATE(4803)] = 260342, - [SMALL_STATE(4804)] = 260365, - [SMALL_STATE(4805)] = 260396, - [SMALL_STATE(4806)] = 260419, - [SMALL_STATE(4807)] = 260442, - [SMALL_STATE(4808)] = 260473, + [SMALL_STATE(4792)] = 260025, + [SMALL_STATE(4793)] = 260056, + [SMALL_STATE(4794)] = 260079, + [SMALL_STATE(4795)] = 260110, + [SMALL_STATE(4796)] = 260141, + [SMALL_STATE(4797)] = 260164, + [SMALL_STATE(4798)] = 260195, + [SMALL_STATE(4799)] = 260218, + [SMALL_STATE(4800)] = 260241, + [SMALL_STATE(4801)] = 260272, + [SMALL_STATE(4802)] = 260303, + [SMALL_STATE(4803)] = 260326, + [SMALL_STATE(4804)] = 260357, + [SMALL_STATE(4805)] = 260380, + [SMALL_STATE(4806)] = 260403, + [SMALL_STATE(4807)] = 260434, + [SMALL_STATE(4808)] = 260465, [SMALL_STATE(4809)] = 260496, [SMALL_STATE(4810)] = 260527, - [SMALL_STATE(4811)] = 260550, - [SMALL_STATE(4812)] = 260581, - [SMALL_STATE(4813)] = 260604, - [SMALL_STATE(4814)] = 260635, - [SMALL_STATE(4815)] = 260666, - [SMALL_STATE(4816)] = 260689, - [SMALL_STATE(4817)] = 260720, - [SMALL_STATE(4818)] = 260743, - [SMALL_STATE(4819)] = 260774, + [SMALL_STATE(4811)] = 260558, + [SMALL_STATE(4812)] = 260589, + [SMALL_STATE(4813)] = 260620, + [SMALL_STATE(4814)] = 260643, + [SMALL_STATE(4815)] = 260674, + [SMALL_STATE(4816)] = 260705, + [SMALL_STATE(4817)] = 260728, + [SMALL_STATE(4818)] = 260751, + [SMALL_STATE(4819)] = 260782, [SMALL_STATE(4820)] = 260805, - [SMALL_STATE(4821)] = 260828, + [SMALL_STATE(4821)] = 260836, [SMALL_STATE(4822)] = 260859, [SMALL_STATE(4823)] = 260882, [SMALL_STATE(4824)] = 260905, [SMALL_STATE(4825)] = 260928, [SMALL_STATE(4826)] = 260948, - [SMALL_STATE(4827)] = 260966, + [SMALL_STATE(4827)] = 260968, [SMALL_STATE(4828)] = 260986, [SMALL_STATE(4829)] = 261006, [SMALL_STATE(4830)] = 261033, @@ -429062,102 +428828,102 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5071)] = 267540, [SMALL_STATE(5072)] = 267564, [SMALL_STATE(5073)] = 267588, - [SMALL_STATE(5074)] = 267608, - [SMALL_STATE(5075)] = 267628, - [SMALL_STATE(5076)] = 267652, - [SMALL_STATE(5077)] = 267676, - [SMALL_STATE(5078)] = 267700, - [SMALL_STATE(5079)] = 267726, - [SMALL_STATE(5080)] = 267752, - [SMALL_STATE(5081)] = 267778, - [SMALL_STATE(5082)] = 267802, - [SMALL_STATE(5083)] = 267826, - [SMALL_STATE(5084)] = 267850, - [SMALL_STATE(5085)] = 267874, - [SMALL_STATE(5086)] = 267898, - [SMALL_STATE(5087)] = 267922, - [SMALL_STATE(5088)] = 267946, - [SMALL_STATE(5089)] = 267970, - [SMALL_STATE(5090)] = 267994, - [SMALL_STATE(5091)] = 268018, - [SMALL_STATE(5092)] = 268042, - [SMALL_STATE(5093)] = 268066, - [SMALL_STATE(5094)] = 268090, + [SMALL_STATE(5074)] = 267614, + [SMALL_STATE(5075)] = 267638, + [SMALL_STATE(5076)] = 267662, + [SMALL_STATE(5077)] = 267686, + [SMALL_STATE(5078)] = 267710, + [SMALL_STATE(5079)] = 267734, + [SMALL_STATE(5080)] = 267758, + [SMALL_STATE(5081)] = 267782, + [SMALL_STATE(5082)] = 267806, + [SMALL_STATE(5083)] = 267830, + [SMALL_STATE(5084)] = 267854, + [SMALL_STATE(5085)] = 267878, + [SMALL_STATE(5086)] = 267902, + [SMALL_STATE(5087)] = 267926, + [SMALL_STATE(5088)] = 267950, + [SMALL_STATE(5089)] = 267974, + [SMALL_STATE(5090)] = 268000, + [SMALL_STATE(5091)] = 268020, + [SMALL_STATE(5092)] = 268044, + [SMALL_STATE(5093)] = 268068, + [SMALL_STATE(5094)] = 268092, [SMALL_STATE(5095)] = 268116, [SMALL_STATE(5096)] = 268140, [SMALL_STATE(5097)] = 268166, [SMALL_STATE(5098)] = 268190, - [SMALL_STATE(5099)] = 268214, - [SMALL_STATE(5100)] = 268238, - [SMALL_STATE(5101)] = 268262, - [SMALL_STATE(5102)] = 268286, - [SMALL_STATE(5103)] = 268310, - [SMALL_STATE(5104)] = 268336, - [SMALL_STATE(5105)] = 268360, + [SMALL_STATE(5099)] = 268216, + [SMALL_STATE(5100)] = 268240, + [SMALL_STATE(5101)] = 268266, + [SMALL_STATE(5102)] = 268290, + [SMALL_STATE(5103)] = 268314, + [SMALL_STATE(5104)] = 268338, + [SMALL_STATE(5105)] = 268362, [SMALL_STATE(5106)] = 268386, - [SMALL_STATE(5107)] = 268412, - [SMALL_STATE(5108)] = 268436, - [SMALL_STATE(5109)] = 268460, - [SMALL_STATE(5110)] = 268484, - [SMALL_STATE(5111)] = 268508, - [SMALL_STATE(5112)] = 268532, - [SMALL_STATE(5113)] = 268556, + [SMALL_STATE(5107)] = 268410, + [SMALL_STATE(5108)] = 268434, + [SMALL_STATE(5109)] = 268458, + [SMALL_STATE(5110)] = 268482, + [SMALL_STATE(5111)] = 268506, + [SMALL_STATE(5112)] = 268530, + [SMALL_STATE(5113)] = 268554, [SMALL_STATE(5114)] = 268580, [SMALL_STATE(5115)] = 268604, [SMALL_STATE(5116)] = 268628, - [SMALL_STATE(5117)] = 268652, - [SMALL_STATE(5118)] = 268676, - [SMALL_STATE(5119)] = 268700, - [SMALL_STATE(5120)] = 268724, - [SMALL_STATE(5121)] = 268748, - [SMALL_STATE(5122)] = 268772, - [SMALL_STATE(5123)] = 268796, - [SMALL_STATE(5124)] = 268820, - [SMALL_STATE(5125)] = 268844, - [SMALL_STATE(5126)] = 268870, - [SMALL_STATE(5127)] = 268896, - [SMALL_STATE(5128)] = 268920, - [SMALL_STATE(5129)] = 268944, - [SMALL_STATE(5130)] = 268968, - [SMALL_STATE(5131)] = 268992, - [SMALL_STATE(5132)] = 269016, - [SMALL_STATE(5133)] = 269040, - [SMALL_STATE(5134)] = 269064, - [SMALL_STATE(5135)] = 269088, - [SMALL_STATE(5136)] = 269112, - [SMALL_STATE(5137)] = 269138, - [SMALL_STATE(5138)] = 269164, - [SMALL_STATE(5139)] = 269188, - [SMALL_STATE(5140)] = 269212, - [SMALL_STATE(5141)] = 269236, - [SMALL_STATE(5142)] = 269260, - [SMALL_STATE(5143)] = 269284, - [SMALL_STATE(5144)] = 269308, - [SMALL_STATE(5145)] = 269332, - [SMALL_STATE(5146)] = 269356, - [SMALL_STATE(5147)] = 269380, - [SMALL_STATE(5148)] = 269404, - [SMALL_STATE(5149)] = 269428, - [SMALL_STATE(5150)] = 269452, - [SMALL_STATE(5151)] = 269476, - [SMALL_STATE(5152)] = 269500, - [SMALL_STATE(5153)] = 269526, - [SMALL_STATE(5154)] = 269550, + [SMALL_STATE(5117)] = 268654, + [SMALL_STATE(5118)] = 268680, + [SMALL_STATE(5119)] = 268704, + [SMALL_STATE(5120)] = 268728, + [SMALL_STATE(5121)] = 268752, + [SMALL_STATE(5122)] = 268776, + [SMALL_STATE(5123)] = 268800, + [SMALL_STATE(5124)] = 268824, + [SMALL_STATE(5125)] = 268848, + [SMALL_STATE(5126)] = 268874, + [SMALL_STATE(5127)] = 268900, + [SMALL_STATE(5128)] = 268924, + [SMALL_STATE(5129)] = 268948, + [SMALL_STATE(5130)] = 268972, + [SMALL_STATE(5131)] = 268996, + [SMALL_STATE(5132)] = 269020, + [SMALL_STATE(5133)] = 269044, + [SMALL_STATE(5134)] = 269068, + [SMALL_STATE(5135)] = 269092, + [SMALL_STATE(5136)] = 269116, + [SMALL_STATE(5137)] = 269142, + [SMALL_STATE(5138)] = 269168, + [SMALL_STATE(5139)] = 269192, + [SMALL_STATE(5140)] = 269216, + [SMALL_STATE(5141)] = 269240, + [SMALL_STATE(5142)] = 269264, + [SMALL_STATE(5143)] = 269288, + [SMALL_STATE(5144)] = 269312, + [SMALL_STATE(5145)] = 269336, + [SMALL_STATE(5146)] = 269360, + [SMALL_STATE(5147)] = 269384, + [SMALL_STATE(5148)] = 269408, + [SMALL_STATE(5149)] = 269432, + [SMALL_STATE(5150)] = 269456, + [SMALL_STATE(5151)] = 269480, + [SMALL_STATE(5152)] = 269504, + [SMALL_STATE(5153)] = 269528, + [SMALL_STATE(5154)] = 269552, [SMALL_STATE(5155)] = 269576, - [SMALL_STATE(5156)] = 269602, - [SMALL_STATE(5157)] = 269626, - [SMALL_STATE(5158)] = 269650, - [SMALL_STATE(5159)] = 269674, - [SMALL_STATE(5160)] = 269698, - [SMALL_STATE(5161)] = 269722, - [SMALL_STATE(5162)] = 269748, - [SMALL_STATE(5163)] = 269772, - [SMALL_STATE(5164)] = 269796, - [SMALL_STATE(5165)] = 269820, - [SMALL_STATE(5166)] = 269844, - [SMALL_STATE(5167)] = 269868, - [SMALL_STATE(5168)] = 269892, - [SMALL_STATE(5169)] = 269916, + [SMALL_STATE(5156)] = 269600, + [SMALL_STATE(5157)] = 269624, + [SMALL_STATE(5158)] = 269648, + [SMALL_STATE(5159)] = 269668, + [SMALL_STATE(5160)] = 269692, + [SMALL_STATE(5161)] = 269716, + [SMALL_STATE(5162)] = 269736, + [SMALL_STATE(5163)] = 269760, + [SMALL_STATE(5164)] = 269786, + [SMALL_STATE(5165)] = 269812, + [SMALL_STATE(5166)] = 269838, + [SMALL_STATE(5167)] = 269864, + [SMALL_STATE(5168)] = 269890, + [SMALL_STATE(5169)] = 269914, [SMALL_STATE(5170)] = 269940, [SMALL_STATE(5171)] = 269964, [SMALL_STATE(5172)] = 269990, @@ -429165,711 +428931,711 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5174)] = 270038, [SMALL_STATE(5175)] = 270062, [SMALL_STATE(5176)] = 270086, - [SMALL_STATE(5177)] = 270110, - [SMALL_STATE(5178)] = 270130, - [SMALL_STATE(5179)] = 270154, - [SMALL_STATE(5180)] = 270178, - [SMALL_STATE(5181)] = 270202, - [SMALL_STATE(5182)] = 270226, - [SMALL_STATE(5183)] = 270250, - [SMALL_STATE(5184)] = 270274, - [SMALL_STATE(5185)] = 270298, - [SMALL_STATE(5186)] = 270322, - [SMALL_STATE(5187)] = 270346, - [SMALL_STATE(5188)] = 270370, - [SMALL_STATE(5189)] = 270394, - [SMALL_STATE(5190)] = 270418, - [SMALL_STATE(5191)] = 270442, - [SMALL_STATE(5192)] = 270466, - [SMALL_STATE(5193)] = 270490, - [SMALL_STATE(5194)] = 270514, - [SMALL_STATE(5195)] = 270538, - [SMALL_STATE(5196)] = 270562, - [SMALL_STATE(5197)] = 270586, - [SMALL_STATE(5198)] = 270610, - [SMALL_STATE(5199)] = 270634, - [SMALL_STATE(5200)] = 270660, - [SMALL_STATE(5201)] = 270684, - [SMALL_STATE(5202)] = 270708, - [SMALL_STATE(5203)] = 270732, - [SMALL_STATE(5204)] = 270756, - [SMALL_STATE(5205)] = 270780, - [SMALL_STATE(5206)] = 270804, - [SMALL_STATE(5207)] = 270828, - [SMALL_STATE(5208)] = 270852, - [SMALL_STATE(5209)] = 270876, - [SMALL_STATE(5210)] = 270900, - [SMALL_STATE(5211)] = 270924, - [SMALL_STATE(5212)] = 270948, - [SMALL_STATE(5213)] = 270972, - [SMALL_STATE(5214)] = 270996, - [SMALL_STATE(5215)] = 271022, - [SMALL_STATE(5216)] = 271046, - [SMALL_STATE(5217)] = 271070, - [SMALL_STATE(5218)] = 271094, - [SMALL_STATE(5219)] = 271118, - [SMALL_STATE(5220)] = 271144, - [SMALL_STATE(5221)] = 271168, - [SMALL_STATE(5222)] = 271188, - [SMALL_STATE(5223)] = 271212, - [SMALL_STATE(5224)] = 271236, - [SMALL_STATE(5225)] = 271260, - [SMALL_STATE(5226)] = 271284, - [SMALL_STATE(5227)] = 271308, - [SMALL_STATE(5228)] = 271332, - [SMALL_STATE(5229)] = 271356, - [SMALL_STATE(5230)] = 271380, - [SMALL_STATE(5231)] = 271404, - [SMALL_STATE(5232)] = 271428, - [SMALL_STATE(5233)] = 271452, - [SMALL_STATE(5234)] = 271476, - [SMALL_STATE(5235)] = 271502, - [SMALL_STATE(5236)] = 271528, - [SMALL_STATE(5237)] = 271552, - [SMALL_STATE(5238)] = 271576, - [SMALL_STATE(5239)] = 271600, - [SMALL_STATE(5240)] = 271624, - [SMALL_STATE(5241)] = 271648, - [SMALL_STATE(5242)] = 271672, - [SMALL_STATE(5243)] = 271698, - [SMALL_STATE(5244)] = 271722, - [SMALL_STATE(5245)] = 271748, - [SMALL_STATE(5246)] = 271772, - [SMALL_STATE(5247)] = 271798, - [SMALL_STATE(5248)] = 271822, - [SMALL_STATE(5249)] = 271846, - [SMALL_STATE(5250)] = 271870, - [SMALL_STATE(5251)] = 271894, - [SMALL_STATE(5252)] = 271918, - [SMALL_STATE(5253)] = 271942, - [SMALL_STATE(5254)] = 271966, - [SMALL_STATE(5255)] = 271990, - [SMALL_STATE(5256)] = 272014, - [SMALL_STATE(5257)] = 272038, - [SMALL_STATE(5258)] = 272062, - [SMALL_STATE(5259)] = 272088, - [SMALL_STATE(5260)] = 272112, - [SMALL_STATE(5261)] = 272136, - [SMALL_STATE(5262)] = 272160, - [SMALL_STATE(5263)] = 272184, - [SMALL_STATE(5264)] = 272208, - [SMALL_STATE(5265)] = 272232, - [SMALL_STATE(5266)] = 272256, - [SMALL_STATE(5267)] = 272280, - [SMALL_STATE(5268)] = 272304, - [SMALL_STATE(5269)] = 272328, - [SMALL_STATE(5270)] = 272354, - [SMALL_STATE(5271)] = 272378, - [SMALL_STATE(5272)] = 272404, - [SMALL_STATE(5273)] = 272430, - [SMALL_STATE(5274)] = 272454, - [SMALL_STATE(5275)] = 272480, - [SMALL_STATE(5276)] = 272504, - [SMALL_STATE(5277)] = 272528, - [SMALL_STATE(5278)] = 272552, - [SMALL_STATE(5279)] = 272576, - [SMALL_STATE(5280)] = 272600, - [SMALL_STATE(5281)] = 272624, - [SMALL_STATE(5282)] = 272648, - [SMALL_STATE(5283)] = 272672, - [SMALL_STATE(5284)] = 272696, - [SMALL_STATE(5285)] = 272720, - [SMALL_STATE(5286)] = 272744, - [SMALL_STATE(5287)] = 272768, - [SMALL_STATE(5288)] = 272792, - [SMALL_STATE(5289)] = 272818, - [SMALL_STATE(5290)] = 272844, - [SMALL_STATE(5291)] = 272868, - [SMALL_STATE(5292)] = 272892, - [SMALL_STATE(5293)] = 272916, - [SMALL_STATE(5294)] = 272940, - [SMALL_STATE(5295)] = 272964, - [SMALL_STATE(5296)] = 272988, - [SMALL_STATE(5297)] = 273012, - [SMALL_STATE(5298)] = 273036, - [SMALL_STATE(5299)] = 273060, - [SMALL_STATE(5300)] = 273084, - [SMALL_STATE(5301)] = 273108, - [SMALL_STATE(5302)] = 273132, - [SMALL_STATE(5303)] = 273156, - [SMALL_STATE(5304)] = 273180, - [SMALL_STATE(5305)] = 273204, - [SMALL_STATE(5306)] = 273228, - [SMALL_STATE(5307)] = 273252, - [SMALL_STATE(5308)] = 273278, - [SMALL_STATE(5309)] = 273304, - [SMALL_STATE(5310)] = 273328, - [SMALL_STATE(5311)] = 273352, - [SMALL_STATE(5312)] = 273376, - [SMALL_STATE(5313)] = 273400, - [SMALL_STATE(5314)] = 273424, - [SMALL_STATE(5315)] = 273448, - [SMALL_STATE(5316)] = 273472, - [SMALL_STATE(5317)] = 273496, - [SMALL_STATE(5318)] = 273520, - [SMALL_STATE(5319)] = 273544, - [SMALL_STATE(5320)] = 273568, - [SMALL_STATE(5321)] = 273592, - [SMALL_STATE(5322)] = 273618, - [SMALL_STATE(5323)] = 273642, - [SMALL_STATE(5324)] = 273668, - [SMALL_STATE(5325)] = 273692, - [SMALL_STATE(5326)] = 273716, - [SMALL_STATE(5327)] = 273740, - [SMALL_STATE(5328)] = 273764, - [SMALL_STATE(5329)] = 273788, - [SMALL_STATE(5330)] = 273812, - [SMALL_STATE(5331)] = 273836, - [SMALL_STATE(5332)] = 273860, - [SMALL_STATE(5333)] = 273884, - [SMALL_STATE(5334)] = 273908, - [SMALL_STATE(5335)] = 273932, - [SMALL_STATE(5336)] = 273956, - [SMALL_STATE(5337)] = 273980, - [SMALL_STATE(5338)] = 274004, - [SMALL_STATE(5339)] = 274028, - [SMALL_STATE(5340)] = 274054, - [SMALL_STATE(5341)] = 274078, - [SMALL_STATE(5342)] = 274102, - [SMALL_STATE(5343)] = 274126, - [SMALL_STATE(5344)] = 274150, - [SMALL_STATE(5345)] = 274174, - [SMALL_STATE(5346)] = 274198, - [SMALL_STATE(5347)] = 274222, - [SMALL_STATE(5348)] = 274246, - [SMALL_STATE(5349)] = 274270, - [SMALL_STATE(5350)] = 274294, - [SMALL_STATE(5351)] = 274318, - [SMALL_STATE(5352)] = 274344, - [SMALL_STATE(5353)] = 274370, - [SMALL_STATE(5354)] = 274394, - [SMALL_STATE(5355)] = 274420, - [SMALL_STATE(5356)] = 274444, - [SMALL_STATE(5357)] = 274468, - [SMALL_STATE(5358)] = 274492, - [SMALL_STATE(5359)] = 274516, - [SMALL_STATE(5360)] = 274540, - [SMALL_STATE(5361)] = 274564, - [SMALL_STATE(5362)] = 274588, - [SMALL_STATE(5363)] = 274612, - [SMALL_STATE(5364)] = 274636, - [SMALL_STATE(5365)] = 274660, - [SMALL_STATE(5366)] = 274684, - [SMALL_STATE(5367)] = 274708, - [SMALL_STATE(5368)] = 274732, - [SMALL_STATE(5369)] = 274756, - [SMALL_STATE(5370)] = 274780, - [SMALL_STATE(5371)] = 274804, - [SMALL_STATE(5372)] = 274830, - [SMALL_STATE(5373)] = 274854, - [SMALL_STATE(5374)] = 274878, - [SMALL_STATE(5375)] = 274902, - [SMALL_STATE(5376)] = 274926, - [SMALL_STATE(5377)] = 274950, - [SMALL_STATE(5378)] = 274974, - [SMALL_STATE(5379)] = 274998, - [SMALL_STATE(5380)] = 275022, - [SMALL_STATE(5381)] = 275046, - [SMALL_STATE(5382)] = 275070, - [SMALL_STATE(5383)] = 275094, - [SMALL_STATE(5384)] = 275118, - [SMALL_STATE(5385)] = 275144, - [SMALL_STATE(5386)] = 275168, - [SMALL_STATE(5387)] = 275194, - [SMALL_STATE(5388)] = 275220, - [SMALL_STATE(5389)] = 275244, - [SMALL_STATE(5390)] = 275268, - [SMALL_STATE(5391)] = 275292, - [SMALL_STATE(5392)] = 275316, - [SMALL_STATE(5393)] = 275340, - [SMALL_STATE(5394)] = 275366, - [SMALL_STATE(5395)] = 275390, - [SMALL_STATE(5396)] = 275416, - [SMALL_STATE(5397)] = 275440, - [SMALL_STATE(5398)] = 275466, - [SMALL_STATE(5399)] = 275490, - [SMALL_STATE(5400)] = 275514, - [SMALL_STATE(5401)] = 275538, - [SMALL_STATE(5402)] = 275562, - [SMALL_STATE(5403)] = 275586, - [SMALL_STATE(5404)] = 275610, - [SMALL_STATE(5405)] = 275634, - [SMALL_STATE(5406)] = 275658, - [SMALL_STATE(5407)] = 275682, - [SMALL_STATE(5408)] = 275708, - [SMALL_STATE(5409)] = 275732, - [SMALL_STATE(5410)] = 275756, - [SMALL_STATE(5411)] = 275780, - [SMALL_STATE(5412)] = 275804, - [SMALL_STATE(5413)] = 275828, - [SMALL_STATE(5414)] = 275852, - [SMALL_STATE(5415)] = 275876, - [SMALL_STATE(5416)] = 275902, - [SMALL_STATE(5417)] = 275926, - [SMALL_STATE(5418)] = 275950, - [SMALL_STATE(5419)] = 275974, - [SMALL_STATE(5420)] = 275998, - [SMALL_STATE(5421)] = 276022, - [SMALL_STATE(5422)] = 276046, - [SMALL_STATE(5423)] = 276072, - [SMALL_STATE(5424)] = 276098, - [SMALL_STATE(5425)] = 276122, - [SMALL_STATE(5426)] = 276146, - [SMALL_STATE(5427)] = 276170, - [SMALL_STATE(5428)] = 276194, - [SMALL_STATE(5429)] = 276218, - [SMALL_STATE(5430)] = 276244, - [SMALL_STATE(5431)] = 276268, - [SMALL_STATE(5432)] = 276292, - [SMALL_STATE(5433)] = 276318, - [SMALL_STATE(5434)] = 276344, - [SMALL_STATE(5435)] = 276368, - [SMALL_STATE(5436)] = 276392, - [SMALL_STATE(5437)] = 276416, - [SMALL_STATE(5438)] = 276440, - [SMALL_STATE(5439)] = 276464, - [SMALL_STATE(5440)] = 276488, - [SMALL_STATE(5441)] = 276512, - [SMALL_STATE(5442)] = 276536, - [SMALL_STATE(5443)] = 276560, - [SMALL_STATE(5444)] = 276584, - [SMALL_STATE(5445)] = 276608, - [SMALL_STATE(5446)] = 276632, - [SMALL_STATE(5447)] = 276656, - [SMALL_STATE(5448)] = 276680, - [SMALL_STATE(5449)] = 276704, - [SMALL_STATE(5450)] = 276728, - [SMALL_STATE(5451)] = 276752, - [SMALL_STATE(5452)] = 276776, - [SMALL_STATE(5453)] = 276800, - [SMALL_STATE(5454)] = 276824, - [SMALL_STATE(5455)] = 276848, - [SMALL_STATE(5456)] = 276872, - [SMALL_STATE(5457)] = 276896, - [SMALL_STATE(5458)] = 276920, - [SMALL_STATE(5459)] = 276944, - [SMALL_STATE(5460)] = 276968, - [SMALL_STATE(5461)] = 276992, - [SMALL_STATE(5462)] = 277018, - [SMALL_STATE(5463)] = 277044, - [SMALL_STATE(5464)] = 277068, - [SMALL_STATE(5465)] = 277092, - [SMALL_STATE(5466)] = 277116, - [SMALL_STATE(5467)] = 277140, - [SMALL_STATE(5468)] = 277166, - [SMALL_STATE(5469)] = 277190, - [SMALL_STATE(5470)] = 277214, - [SMALL_STATE(5471)] = 277238, - [SMALL_STATE(5472)] = 277262, - [SMALL_STATE(5473)] = 277286, - [SMALL_STATE(5474)] = 277310, - [SMALL_STATE(5475)] = 277334, - [SMALL_STATE(5476)] = 277358, - [SMALL_STATE(5477)] = 277382, - [SMALL_STATE(5478)] = 277406, - [SMALL_STATE(5479)] = 277430, - [SMALL_STATE(5480)] = 277454, - [SMALL_STATE(5481)] = 277478, - [SMALL_STATE(5482)] = 277502, - [SMALL_STATE(5483)] = 277526, - [SMALL_STATE(5484)] = 277550, - [SMALL_STATE(5485)] = 277574, - [SMALL_STATE(5486)] = 277598, - [SMALL_STATE(5487)] = 277622, - [SMALL_STATE(5488)] = 277646, - [SMALL_STATE(5489)] = 277670, - [SMALL_STATE(5490)] = 277694, - [SMALL_STATE(5491)] = 277718, - [SMALL_STATE(5492)] = 277742, - [SMALL_STATE(5493)] = 277766, - [SMALL_STATE(5494)] = 277790, - [SMALL_STATE(5495)] = 277814, - [SMALL_STATE(5496)] = 277840, - [SMALL_STATE(5497)] = 277864, - [SMALL_STATE(5498)] = 277890, - [SMALL_STATE(5499)] = 277914, - [SMALL_STATE(5500)] = 277940, - [SMALL_STATE(5501)] = 277966, - [SMALL_STATE(5502)] = 277990, - [SMALL_STATE(5503)] = 278014, - [SMALL_STATE(5504)] = 278038, - [SMALL_STATE(5505)] = 278062, - [SMALL_STATE(5506)] = 278086, - [SMALL_STATE(5507)] = 278110, - [SMALL_STATE(5508)] = 278134, - [SMALL_STATE(5509)] = 278158, - [SMALL_STATE(5510)] = 278182, - [SMALL_STATE(5511)] = 278206, - [SMALL_STATE(5512)] = 278230, - [SMALL_STATE(5513)] = 278254, - [SMALL_STATE(5514)] = 278280, - [SMALL_STATE(5515)] = 278306, - [SMALL_STATE(5516)] = 278332, - [SMALL_STATE(5517)] = 278356, - [SMALL_STATE(5518)] = 278382, - [SMALL_STATE(5519)] = 278406, - [SMALL_STATE(5520)] = 278430, - [SMALL_STATE(5521)] = 278454, - [SMALL_STATE(5522)] = 278478, - [SMALL_STATE(5523)] = 278502, - [SMALL_STATE(5524)] = 278526, - [SMALL_STATE(5525)] = 278550, - [SMALL_STATE(5526)] = 278574, - [SMALL_STATE(5527)] = 278598, - [SMALL_STATE(5528)] = 278622, - [SMALL_STATE(5529)] = 278646, - [SMALL_STATE(5530)] = 278670, - [SMALL_STATE(5531)] = 278694, - [SMALL_STATE(5532)] = 278720, - [SMALL_STATE(5533)] = 278744, - [SMALL_STATE(5534)] = 278768, - [SMALL_STATE(5535)] = 278792, - [SMALL_STATE(5536)] = 278816, - [SMALL_STATE(5537)] = 278840, - [SMALL_STATE(5538)] = 278866, - [SMALL_STATE(5539)] = 278890, - [SMALL_STATE(5540)] = 278916, - [SMALL_STATE(5541)] = 278940, - [SMALL_STATE(5542)] = 278966, - [SMALL_STATE(5543)] = 278990, - [SMALL_STATE(5544)] = 279014, - [SMALL_STATE(5545)] = 279038, - [SMALL_STATE(5546)] = 279062, - [SMALL_STATE(5547)] = 279086, - [SMALL_STATE(5548)] = 279110, - [SMALL_STATE(5549)] = 279134, - [SMALL_STATE(5550)] = 279158, - [SMALL_STATE(5551)] = 279182, - [SMALL_STATE(5552)] = 279206, - [SMALL_STATE(5553)] = 279230, - [SMALL_STATE(5554)] = 279254, - [SMALL_STATE(5555)] = 279278, - [SMALL_STATE(5556)] = 279302, - [SMALL_STATE(5557)] = 279326, - [SMALL_STATE(5558)] = 279350, - [SMALL_STATE(5559)] = 279374, - [SMALL_STATE(5560)] = 279398, - [SMALL_STATE(5561)] = 279422, - [SMALL_STATE(5562)] = 279448, - [SMALL_STATE(5563)] = 279474, - [SMALL_STATE(5564)] = 279498, - [SMALL_STATE(5565)] = 279522, - [SMALL_STATE(5566)] = 279548, - [SMALL_STATE(5567)] = 279574, - [SMALL_STATE(5568)] = 279600, - [SMALL_STATE(5569)] = 279624, - [SMALL_STATE(5570)] = 279648, - [SMALL_STATE(5571)] = 279674, - [SMALL_STATE(5572)] = 279698, - [SMALL_STATE(5573)] = 279722, - [SMALL_STATE(5574)] = 279746, - [SMALL_STATE(5575)] = 279770, - [SMALL_STATE(5576)] = 279794, - [SMALL_STATE(5577)] = 279820, - [SMALL_STATE(5578)] = 279846, - [SMALL_STATE(5579)] = 279870, - [SMALL_STATE(5580)] = 279894, - [SMALL_STATE(5581)] = 279918, - [SMALL_STATE(5582)] = 279942, - [SMALL_STATE(5583)] = 279966, - [SMALL_STATE(5584)] = 279990, - [SMALL_STATE(5585)] = 280014, - [SMALL_STATE(5586)] = 280038, - [SMALL_STATE(5587)] = 280062, - [SMALL_STATE(5588)] = 280086, - [SMALL_STATE(5589)] = 280110, - [SMALL_STATE(5590)] = 280134, - [SMALL_STATE(5591)] = 280158, - [SMALL_STATE(5592)] = 280182, - [SMALL_STATE(5593)] = 280206, - [SMALL_STATE(5594)] = 280230, - [SMALL_STATE(5595)] = 280254, - [SMALL_STATE(5596)] = 280278, - [SMALL_STATE(5597)] = 280302, - [SMALL_STATE(5598)] = 280326, - [SMALL_STATE(5599)] = 280350, - [SMALL_STATE(5600)] = 280374, - [SMALL_STATE(5601)] = 280398, - [SMALL_STATE(5602)] = 280422, - [SMALL_STATE(5603)] = 280446, - [SMALL_STATE(5604)] = 280470, - [SMALL_STATE(5605)] = 280494, - [SMALL_STATE(5606)] = 280518, - [SMALL_STATE(5607)] = 280542, - [SMALL_STATE(5608)] = 280566, - [SMALL_STATE(5609)] = 280590, - [SMALL_STATE(5610)] = 280614, - [SMALL_STATE(5611)] = 280638, - [SMALL_STATE(5612)] = 280664, - [SMALL_STATE(5613)] = 280688, - [SMALL_STATE(5614)] = 280712, - [SMALL_STATE(5615)] = 280738, - [SMALL_STATE(5616)] = 280762, - [SMALL_STATE(5617)] = 280786, - [SMALL_STATE(5618)] = 280810, - [SMALL_STATE(5619)] = 280834, - [SMALL_STATE(5620)] = 280858, - [SMALL_STATE(5621)] = 280882, - [SMALL_STATE(5622)] = 280906, - [SMALL_STATE(5623)] = 280930, - [SMALL_STATE(5624)] = 280954, - [SMALL_STATE(5625)] = 280978, - [SMALL_STATE(5626)] = 281002, - [SMALL_STATE(5627)] = 281026, - [SMALL_STATE(5628)] = 281050, - [SMALL_STATE(5629)] = 281074, - [SMALL_STATE(5630)] = 281098, - [SMALL_STATE(5631)] = 281122, - [SMALL_STATE(5632)] = 281146, - [SMALL_STATE(5633)] = 281170, - [SMALL_STATE(5634)] = 281194, - [SMALL_STATE(5635)] = 281218, - [SMALL_STATE(5636)] = 281244, - [SMALL_STATE(5637)] = 281268, - [SMALL_STATE(5638)] = 281292, - [SMALL_STATE(5639)] = 281318, - [SMALL_STATE(5640)] = 281342, - [SMALL_STATE(5641)] = 281366, - [SMALL_STATE(5642)] = 281390, - [SMALL_STATE(5643)] = 281414, - [SMALL_STATE(5644)] = 281438, - [SMALL_STATE(5645)] = 281464, - [SMALL_STATE(5646)] = 281488, - [SMALL_STATE(5647)] = 281512, - [SMALL_STATE(5648)] = 281536, - [SMALL_STATE(5649)] = 281560, - [SMALL_STATE(5650)] = 281584, - [SMALL_STATE(5651)] = 281608, - [SMALL_STATE(5652)] = 281632, - [SMALL_STATE(5653)] = 281656, - [SMALL_STATE(5654)] = 281680, - [SMALL_STATE(5655)] = 281704, - [SMALL_STATE(5656)] = 281728, - [SMALL_STATE(5657)] = 281752, - [SMALL_STATE(5658)] = 281776, - [SMALL_STATE(5659)] = 281802, - [SMALL_STATE(5660)] = 281828, - [SMALL_STATE(5661)] = 281852, - [SMALL_STATE(5662)] = 281878, - [SMALL_STATE(5663)] = 281902, - [SMALL_STATE(5664)] = 281926, - [SMALL_STATE(5665)] = 281950, - [SMALL_STATE(5666)] = 281974, - [SMALL_STATE(5667)] = 281998, - [SMALL_STATE(5668)] = 282022, - [SMALL_STATE(5669)] = 282046, - [SMALL_STATE(5670)] = 282070, - [SMALL_STATE(5671)] = 282094, - [SMALL_STATE(5672)] = 282120, - [SMALL_STATE(5673)] = 282144, - [SMALL_STATE(5674)] = 282168, - [SMALL_STATE(5675)] = 282192, - [SMALL_STATE(5676)] = 282218, - [SMALL_STATE(5677)] = 282242, - [SMALL_STATE(5678)] = 282266, - [SMALL_STATE(5679)] = 282290, - [SMALL_STATE(5680)] = 282316, - [SMALL_STATE(5681)] = 282340, - [SMALL_STATE(5682)] = 282366, - [SMALL_STATE(5683)] = 282390, - [SMALL_STATE(5684)] = 282416, - [SMALL_STATE(5685)] = 282440, - [SMALL_STATE(5686)] = 282466, - [SMALL_STATE(5687)] = 282490, - [SMALL_STATE(5688)] = 282514, - [SMALL_STATE(5689)] = 282538, - [SMALL_STATE(5690)] = 282562, - [SMALL_STATE(5691)] = 282586, - [SMALL_STATE(5692)] = 282610, - [SMALL_STATE(5693)] = 282634, - [SMALL_STATE(5694)] = 282658, - [SMALL_STATE(5695)] = 282682, - [SMALL_STATE(5696)] = 282706, - [SMALL_STATE(5697)] = 282730, - [SMALL_STATE(5698)] = 282754, - [SMALL_STATE(5699)] = 282778, - [SMALL_STATE(5700)] = 282802, - [SMALL_STATE(5701)] = 282826, - [SMALL_STATE(5702)] = 282852, + [SMALL_STATE(5177)] = 270112, + [SMALL_STATE(5178)] = 270136, + [SMALL_STATE(5179)] = 270160, + [SMALL_STATE(5180)] = 270184, + [SMALL_STATE(5181)] = 270208, + [SMALL_STATE(5182)] = 270232, + [SMALL_STATE(5183)] = 270256, + [SMALL_STATE(5184)] = 270280, + [SMALL_STATE(5185)] = 270304, + [SMALL_STATE(5186)] = 270328, + [SMALL_STATE(5187)] = 270352, + [SMALL_STATE(5188)] = 270376, + [SMALL_STATE(5189)] = 270400, + [SMALL_STATE(5190)] = 270426, + [SMALL_STATE(5191)] = 270450, + [SMALL_STATE(5192)] = 270474, + [SMALL_STATE(5193)] = 270498, + [SMALL_STATE(5194)] = 270522, + [SMALL_STATE(5195)] = 270546, + [SMALL_STATE(5196)] = 270570, + [SMALL_STATE(5197)] = 270594, + [SMALL_STATE(5198)] = 270618, + [SMALL_STATE(5199)] = 270642, + [SMALL_STATE(5200)] = 270666, + [SMALL_STATE(5201)] = 270690, + [SMALL_STATE(5202)] = 270714, + [SMALL_STATE(5203)] = 270738, + [SMALL_STATE(5204)] = 270764, + [SMALL_STATE(5205)] = 270788, + [SMALL_STATE(5206)] = 270812, + [SMALL_STATE(5207)] = 270836, + [SMALL_STATE(5208)] = 270860, + [SMALL_STATE(5209)] = 270884, + [SMALL_STATE(5210)] = 270908, + [SMALL_STATE(5211)] = 270932, + [SMALL_STATE(5212)] = 270956, + [SMALL_STATE(5213)] = 270980, + [SMALL_STATE(5214)] = 271004, + [SMALL_STATE(5215)] = 271030, + [SMALL_STATE(5216)] = 271054, + [SMALL_STATE(5217)] = 271078, + [SMALL_STATE(5218)] = 271102, + [SMALL_STATE(5219)] = 271126, + [SMALL_STATE(5220)] = 271152, + [SMALL_STATE(5221)] = 271176, + [SMALL_STATE(5222)] = 271196, + [SMALL_STATE(5223)] = 271220, + [SMALL_STATE(5224)] = 271244, + [SMALL_STATE(5225)] = 271268, + [SMALL_STATE(5226)] = 271292, + [SMALL_STATE(5227)] = 271316, + [SMALL_STATE(5228)] = 271340, + [SMALL_STATE(5229)] = 271364, + [SMALL_STATE(5230)] = 271388, + [SMALL_STATE(5231)] = 271412, + [SMALL_STATE(5232)] = 271436, + [SMALL_STATE(5233)] = 271460, + [SMALL_STATE(5234)] = 271484, + [SMALL_STATE(5235)] = 271508, + [SMALL_STATE(5236)] = 271534, + [SMALL_STATE(5237)] = 271558, + [SMALL_STATE(5238)] = 271582, + [SMALL_STATE(5239)] = 271606, + [SMALL_STATE(5240)] = 271630, + [SMALL_STATE(5241)] = 271654, + [SMALL_STATE(5242)] = 271678, + [SMALL_STATE(5243)] = 271704, + [SMALL_STATE(5244)] = 271728, + [SMALL_STATE(5245)] = 271754, + [SMALL_STATE(5246)] = 271778, + [SMALL_STATE(5247)] = 271804, + [SMALL_STATE(5248)] = 271828, + [SMALL_STATE(5249)] = 271852, + [SMALL_STATE(5250)] = 271876, + [SMALL_STATE(5251)] = 271900, + [SMALL_STATE(5252)] = 271924, + [SMALL_STATE(5253)] = 271948, + [SMALL_STATE(5254)] = 271972, + [SMALL_STATE(5255)] = 271996, + [SMALL_STATE(5256)] = 272020, + [SMALL_STATE(5257)] = 272044, + [SMALL_STATE(5258)] = 272070, + [SMALL_STATE(5259)] = 272094, + [SMALL_STATE(5260)] = 272118, + [SMALL_STATE(5261)] = 272142, + [SMALL_STATE(5262)] = 272166, + [SMALL_STATE(5263)] = 272190, + [SMALL_STATE(5264)] = 272214, + [SMALL_STATE(5265)] = 272238, + [SMALL_STATE(5266)] = 272262, + [SMALL_STATE(5267)] = 272286, + [SMALL_STATE(5268)] = 272310, + [SMALL_STATE(5269)] = 272334, + [SMALL_STATE(5270)] = 272360, + [SMALL_STATE(5271)] = 272386, + [SMALL_STATE(5272)] = 272412, + [SMALL_STATE(5273)] = 272438, + [SMALL_STATE(5274)] = 272462, + [SMALL_STATE(5275)] = 272488, + [SMALL_STATE(5276)] = 272512, + [SMALL_STATE(5277)] = 272536, + [SMALL_STATE(5278)] = 272560, + [SMALL_STATE(5279)] = 272584, + [SMALL_STATE(5280)] = 272608, + [SMALL_STATE(5281)] = 272632, + [SMALL_STATE(5282)] = 272656, + [SMALL_STATE(5283)] = 272680, + [SMALL_STATE(5284)] = 272704, + [SMALL_STATE(5285)] = 272728, + [SMALL_STATE(5286)] = 272752, + [SMALL_STATE(5287)] = 272776, + [SMALL_STATE(5288)] = 272800, + [SMALL_STATE(5289)] = 272826, + [SMALL_STATE(5290)] = 272852, + [SMALL_STATE(5291)] = 272876, + [SMALL_STATE(5292)] = 272900, + [SMALL_STATE(5293)] = 272924, + [SMALL_STATE(5294)] = 272948, + [SMALL_STATE(5295)] = 272972, + [SMALL_STATE(5296)] = 272996, + [SMALL_STATE(5297)] = 273020, + [SMALL_STATE(5298)] = 273044, + [SMALL_STATE(5299)] = 273068, + [SMALL_STATE(5300)] = 273092, + [SMALL_STATE(5301)] = 273116, + [SMALL_STATE(5302)] = 273140, + [SMALL_STATE(5303)] = 273164, + [SMALL_STATE(5304)] = 273188, + [SMALL_STATE(5305)] = 273212, + [SMALL_STATE(5306)] = 273236, + [SMALL_STATE(5307)] = 273260, + [SMALL_STATE(5308)] = 273284, + [SMALL_STATE(5309)] = 273308, + [SMALL_STATE(5310)] = 273332, + [SMALL_STATE(5311)] = 273356, + [SMALL_STATE(5312)] = 273380, + [SMALL_STATE(5313)] = 273404, + [SMALL_STATE(5314)] = 273428, + [SMALL_STATE(5315)] = 273452, + [SMALL_STATE(5316)] = 273476, + [SMALL_STATE(5317)] = 273500, + [SMALL_STATE(5318)] = 273524, + [SMALL_STATE(5319)] = 273550, + [SMALL_STATE(5320)] = 273574, + [SMALL_STATE(5321)] = 273598, + [SMALL_STATE(5322)] = 273622, + [SMALL_STATE(5323)] = 273646, + [SMALL_STATE(5324)] = 273672, + [SMALL_STATE(5325)] = 273696, + [SMALL_STATE(5326)] = 273720, + [SMALL_STATE(5327)] = 273744, + [SMALL_STATE(5328)] = 273770, + [SMALL_STATE(5329)] = 273796, + [SMALL_STATE(5330)] = 273820, + [SMALL_STATE(5331)] = 273844, + [SMALL_STATE(5332)] = 273868, + [SMALL_STATE(5333)] = 273892, + [SMALL_STATE(5334)] = 273916, + [SMALL_STATE(5335)] = 273940, + [SMALL_STATE(5336)] = 273964, + [SMALL_STATE(5337)] = 273988, + [SMALL_STATE(5338)] = 274012, + [SMALL_STATE(5339)] = 274036, + [SMALL_STATE(5340)] = 274060, + [SMALL_STATE(5341)] = 274084, + [SMALL_STATE(5342)] = 274108, + [SMALL_STATE(5343)] = 274134, + [SMALL_STATE(5344)] = 274158, + [SMALL_STATE(5345)] = 274182, + [SMALL_STATE(5346)] = 274206, + [SMALL_STATE(5347)] = 274230, + [SMALL_STATE(5348)] = 274254, + [SMALL_STATE(5349)] = 274278, + [SMALL_STATE(5350)] = 274302, + [SMALL_STATE(5351)] = 274326, + [SMALL_STATE(5352)] = 274350, + [SMALL_STATE(5353)] = 274374, + [SMALL_STATE(5354)] = 274400, + [SMALL_STATE(5355)] = 274424, + [SMALL_STATE(5356)] = 274448, + [SMALL_STATE(5357)] = 274472, + [SMALL_STATE(5358)] = 274496, + [SMALL_STATE(5359)] = 274520, + [SMALL_STATE(5360)] = 274544, + [SMALL_STATE(5361)] = 274568, + [SMALL_STATE(5362)] = 274592, + [SMALL_STATE(5363)] = 274618, + [SMALL_STATE(5364)] = 274644, + [SMALL_STATE(5365)] = 274670, + [SMALL_STATE(5366)] = 274694, + [SMALL_STATE(5367)] = 274718, + [SMALL_STATE(5368)] = 274742, + [SMALL_STATE(5369)] = 274766, + [SMALL_STATE(5370)] = 274792, + [SMALL_STATE(5371)] = 274818, + [SMALL_STATE(5372)] = 274844, + [SMALL_STATE(5373)] = 274868, + [SMALL_STATE(5374)] = 274892, + [SMALL_STATE(5375)] = 274916, + [SMALL_STATE(5376)] = 274940, + [SMALL_STATE(5377)] = 274964, + [SMALL_STATE(5378)] = 274988, + [SMALL_STATE(5379)] = 275012, + [SMALL_STATE(5380)] = 275036, + [SMALL_STATE(5381)] = 275060, + [SMALL_STATE(5382)] = 275084, + [SMALL_STATE(5383)] = 275110, + [SMALL_STATE(5384)] = 275136, + [SMALL_STATE(5385)] = 275160, + [SMALL_STATE(5386)] = 275184, + [SMALL_STATE(5387)] = 275208, + [SMALL_STATE(5388)] = 275234, + [SMALL_STATE(5389)] = 275258, + [SMALL_STATE(5390)] = 275282, + [SMALL_STATE(5391)] = 275306, + [SMALL_STATE(5392)] = 275330, + [SMALL_STATE(5393)] = 275354, + [SMALL_STATE(5394)] = 275380, + [SMALL_STATE(5395)] = 275404, + [SMALL_STATE(5396)] = 275430, + [SMALL_STATE(5397)] = 275454, + [SMALL_STATE(5398)] = 275480, + [SMALL_STATE(5399)] = 275504, + [SMALL_STATE(5400)] = 275528, + [SMALL_STATE(5401)] = 275552, + [SMALL_STATE(5402)] = 275576, + [SMALL_STATE(5403)] = 275600, + [SMALL_STATE(5404)] = 275626, + [SMALL_STATE(5405)] = 275650, + [SMALL_STATE(5406)] = 275674, + [SMALL_STATE(5407)] = 275698, + [SMALL_STATE(5408)] = 275722, + [SMALL_STATE(5409)] = 275746, + [SMALL_STATE(5410)] = 275770, + [SMALL_STATE(5411)] = 275794, + [SMALL_STATE(5412)] = 275818, + [SMALL_STATE(5413)] = 275842, + [SMALL_STATE(5414)] = 275866, + [SMALL_STATE(5415)] = 275890, + [SMALL_STATE(5416)] = 275914, + [SMALL_STATE(5417)] = 275938, + [SMALL_STATE(5418)] = 275962, + [SMALL_STATE(5419)] = 275988, + [SMALL_STATE(5420)] = 276012, + [SMALL_STATE(5421)] = 276036, + [SMALL_STATE(5422)] = 276062, + [SMALL_STATE(5423)] = 276088, + [SMALL_STATE(5424)] = 276114, + [SMALL_STATE(5425)] = 276138, + [SMALL_STATE(5426)] = 276164, + [SMALL_STATE(5427)] = 276188, + [SMALL_STATE(5428)] = 276212, + [SMALL_STATE(5429)] = 276236, + [SMALL_STATE(5430)] = 276262, + [SMALL_STATE(5431)] = 276286, + [SMALL_STATE(5432)] = 276310, + [SMALL_STATE(5433)] = 276336, + [SMALL_STATE(5434)] = 276362, + [SMALL_STATE(5435)] = 276386, + [SMALL_STATE(5436)] = 276410, + [SMALL_STATE(5437)] = 276434, + [SMALL_STATE(5438)] = 276458, + [SMALL_STATE(5439)] = 276482, + [SMALL_STATE(5440)] = 276506, + [SMALL_STATE(5441)] = 276530, + [SMALL_STATE(5442)] = 276554, + [SMALL_STATE(5443)] = 276578, + [SMALL_STATE(5444)] = 276602, + [SMALL_STATE(5445)] = 276626, + [SMALL_STATE(5446)] = 276650, + [SMALL_STATE(5447)] = 276674, + [SMALL_STATE(5448)] = 276698, + [SMALL_STATE(5449)] = 276722, + [SMALL_STATE(5450)] = 276746, + [SMALL_STATE(5451)] = 276770, + [SMALL_STATE(5452)] = 276794, + [SMALL_STATE(5453)] = 276818, + [SMALL_STATE(5454)] = 276842, + [SMALL_STATE(5455)] = 276866, + [SMALL_STATE(5456)] = 276890, + [SMALL_STATE(5457)] = 276914, + [SMALL_STATE(5458)] = 276938, + [SMALL_STATE(5459)] = 276962, + [SMALL_STATE(5460)] = 276986, + [SMALL_STATE(5461)] = 277010, + [SMALL_STATE(5462)] = 277034, + [SMALL_STATE(5463)] = 277058, + [SMALL_STATE(5464)] = 277082, + [SMALL_STATE(5465)] = 277106, + [SMALL_STATE(5466)] = 277130, + [SMALL_STATE(5467)] = 277154, + [SMALL_STATE(5468)] = 277180, + [SMALL_STATE(5469)] = 277204, + [SMALL_STATE(5470)] = 277228, + [SMALL_STATE(5471)] = 277252, + [SMALL_STATE(5472)] = 277276, + [SMALL_STATE(5473)] = 277300, + [SMALL_STATE(5474)] = 277324, + [SMALL_STATE(5475)] = 277348, + [SMALL_STATE(5476)] = 277372, + [SMALL_STATE(5477)] = 277396, + [SMALL_STATE(5478)] = 277420, + [SMALL_STATE(5479)] = 277444, + [SMALL_STATE(5480)] = 277468, + [SMALL_STATE(5481)] = 277492, + [SMALL_STATE(5482)] = 277516, + [SMALL_STATE(5483)] = 277540, + [SMALL_STATE(5484)] = 277564, + [SMALL_STATE(5485)] = 277588, + [SMALL_STATE(5486)] = 277612, + [SMALL_STATE(5487)] = 277636, + [SMALL_STATE(5488)] = 277660, + [SMALL_STATE(5489)] = 277684, + [SMALL_STATE(5490)] = 277708, + [SMALL_STATE(5491)] = 277732, + [SMALL_STATE(5492)] = 277756, + [SMALL_STATE(5493)] = 277780, + [SMALL_STATE(5494)] = 277804, + [SMALL_STATE(5495)] = 277828, + [SMALL_STATE(5496)] = 277852, + [SMALL_STATE(5497)] = 277876, + [SMALL_STATE(5498)] = 277900, + [SMALL_STATE(5499)] = 277924, + [SMALL_STATE(5500)] = 277950, + [SMALL_STATE(5501)] = 277974, + [SMALL_STATE(5502)] = 277998, + [SMALL_STATE(5503)] = 278022, + [SMALL_STATE(5504)] = 278046, + [SMALL_STATE(5505)] = 278072, + [SMALL_STATE(5506)] = 278096, + [SMALL_STATE(5507)] = 278120, + [SMALL_STATE(5508)] = 278144, + [SMALL_STATE(5509)] = 278168, + [SMALL_STATE(5510)] = 278192, + [SMALL_STATE(5511)] = 278216, + [SMALL_STATE(5512)] = 278240, + [SMALL_STATE(5513)] = 278264, + [SMALL_STATE(5514)] = 278288, + [SMALL_STATE(5515)] = 278312, + [SMALL_STATE(5516)] = 278338, + [SMALL_STATE(5517)] = 278362, + [SMALL_STATE(5518)] = 278386, + [SMALL_STATE(5519)] = 278410, + [SMALL_STATE(5520)] = 278434, + [SMALL_STATE(5521)] = 278458, + [SMALL_STATE(5522)] = 278482, + [SMALL_STATE(5523)] = 278506, + [SMALL_STATE(5524)] = 278530, + [SMALL_STATE(5525)] = 278554, + [SMALL_STATE(5526)] = 278580, + [SMALL_STATE(5527)] = 278604, + [SMALL_STATE(5528)] = 278628, + [SMALL_STATE(5529)] = 278652, + [SMALL_STATE(5530)] = 278676, + [SMALL_STATE(5531)] = 278700, + [SMALL_STATE(5532)] = 278726, + [SMALL_STATE(5533)] = 278750, + [SMALL_STATE(5534)] = 278774, + [SMALL_STATE(5535)] = 278798, + [SMALL_STATE(5536)] = 278822, + [SMALL_STATE(5537)] = 278846, + [SMALL_STATE(5538)] = 278872, + [SMALL_STATE(5539)] = 278896, + [SMALL_STATE(5540)] = 278922, + [SMALL_STATE(5541)] = 278946, + [SMALL_STATE(5542)] = 278972, + [SMALL_STATE(5543)] = 278996, + [SMALL_STATE(5544)] = 279022, + [SMALL_STATE(5545)] = 279046, + [SMALL_STATE(5546)] = 279070, + [SMALL_STATE(5547)] = 279094, + [SMALL_STATE(5548)] = 279118, + [SMALL_STATE(5549)] = 279142, + [SMALL_STATE(5550)] = 279166, + [SMALL_STATE(5551)] = 279190, + [SMALL_STATE(5552)] = 279214, + [SMALL_STATE(5553)] = 279238, + [SMALL_STATE(5554)] = 279262, + [SMALL_STATE(5555)] = 279286, + [SMALL_STATE(5556)] = 279310, + [SMALL_STATE(5557)] = 279334, + [SMALL_STATE(5558)] = 279358, + [SMALL_STATE(5559)] = 279384, + [SMALL_STATE(5560)] = 279408, + [SMALL_STATE(5561)] = 279432, + [SMALL_STATE(5562)] = 279458, + [SMALL_STATE(5563)] = 279482, + [SMALL_STATE(5564)] = 279506, + [SMALL_STATE(5565)] = 279530, + [SMALL_STATE(5566)] = 279554, + [SMALL_STATE(5567)] = 279580, + [SMALL_STATE(5568)] = 279606, + [SMALL_STATE(5569)] = 279630, + [SMALL_STATE(5570)] = 279654, + [SMALL_STATE(5571)] = 279678, + [SMALL_STATE(5572)] = 279702, + [SMALL_STATE(5573)] = 279726, + [SMALL_STATE(5574)] = 279750, + [SMALL_STATE(5575)] = 279774, + [SMALL_STATE(5576)] = 279798, + [SMALL_STATE(5577)] = 279824, + [SMALL_STATE(5578)] = 279850, + [SMALL_STATE(5579)] = 279874, + [SMALL_STATE(5580)] = 279898, + [SMALL_STATE(5581)] = 279922, + [SMALL_STATE(5582)] = 279946, + [SMALL_STATE(5583)] = 279970, + [SMALL_STATE(5584)] = 279994, + [SMALL_STATE(5585)] = 280018, + [SMALL_STATE(5586)] = 280042, + [SMALL_STATE(5587)] = 280066, + [SMALL_STATE(5588)] = 280090, + [SMALL_STATE(5589)] = 280114, + [SMALL_STATE(5590)] = 280138, + [SMALL_STATE(5591)] = 280162, + [SMALL_STATE(5592)] = 280186, + [SMALL_STATE(5593)] = 280210, + [SMALL_STATE(5594)] = 280234, + [SMALL_STATE(5595)] = 280258, + [SMALL_STATE(5596)] = 280282, + [SMALL_STATE(5597)] = 280306, + [SMALL_STATE(5598)] = 280330, + [SMALL_STATE(5599)] = 280354, + [SMALL_STATE(5600)] = 280378, + [SMALL_STATE(5601)] = 280402, + [SMALL_STATE(5602)] = 280428, + [SMALL_STATE(5603)] = 280454, + [SMALL_STATE(5604)] = 280478, + [SMALL_STATE(5605)] = 280502, + [SMALL_STATE(5606)] = 280526, + [SMALL_STATE(5607)] = 280550, + [SMALL_STATE(5608)] = 280574, + [SMALL_STATE(5609)] = 280598, + [SMALL_STATE(5610)] = 280622, + [SMALL_STATE(5611)] = 280646, + [SMALL_STATE(5612)] = 280672, + [SMALL_STATE(5613)] = 280696, + [SMALL_STATE(5614)] = 280720, + [SMALL_STATE(5615)] = 280744, + [SMALL_STATE(5616)] = 280768, + [SMALL_STATE(5617)] = 280792, + [SMALL_STATE(5618)] = 280816, + [SMALL_STATE(5619)] = 280840, + [SMALL_STATE(5620)] = 280864, + [SMALL_STATE(5621)] = 280888, + [SMALL_STATE(5622)] = 280912, + [SMALL_STATE(5623)] = 280936, + [SMALL_STATE(5624)] = 280960, + [SMALL_STATE(5625)] = 280984, + [SMALL_STATE(5626)] = 281008, + [SMALL_STATE(5627)] = 281032, + [SMALL_STATE(5628)] = 281058, + [SMALL_STATE(5629)] = 281084, + [SMALL_STATE(5630)] = 281108, + [SMALL_STATE(5631)] = 281128, + [SMALL_STATE(5632)] = 281152, + [SMALL_STATE(5633)] = 281176, + [SMALL_STATE(5634)] = 281200, + [SMALL_STATE(5635)] = 281224, + [SMALL_STATE(5636)] = 281248, + [SMALL_STATE(5637)] = 281272, + [SMALL_STATE(5638)] = 281296, + [SMALL_STATE(5639)] = 281320, + [SMALL_STATE(5640)] = 281344, + [SMALL_STATE(5641)] = 281368, + [SMALL_STATE(5642)] = 281392, + [SMALL_STATE(5643)] = 281418, + [SMALL_STATE(5644)] = 281444, + [SMALL_STATE(5645)] = 281470, + [SMALL_STATE(5646)] = 281494, + [SMALL_STATE(5647)] = 281518, + [SMALL_STATE(5648)] = 281542, + [SMALL_STATE(5649)] = 281566, + [SMALL_STATE(5650)] = 281590, + [SMALL_STATE(5651)] = 281614, + [SMALL_STATE(5652)] = 281638, + [SMALL_STATE(5653)] = 281662, + [SMALL_STATE(5654)] = 281686, + [SMALL_STATE(5655)] = 281710, + [SMALL_STATE(5656)] = 281734, + [SMALL_STATE(5657)] = 281758, + [SMALL_STATE(5658)] = 281784, + [SMALL_STATE(5659)] = 281810, + [SMALL_STATE(5660)] = 281836, + [SMALL_STATE(5661)] = 281860, + [SMALL_STATE(5662)] = 281884, + [SMALL_STATE(5663)] = 281908, + [SMALL_STATE(5664)] = 281932, + [SMALL_STATE(5665)] = 281956, + [SMALL_STATE(5666)] = 281980, + [SMALL_STATE(5667)] = 282004, + [SMALL_STATE(5668)] = 282028, + [SMALL_STATE(5669)] = 282052, + [SMALL_STATE(5670)] = 282076, + [SMALL_STATE(5671)] = 282100, + [SMALL_STATE(5672)] = 282124, + [SMALL_STATE(5673)] = 282148, + [SMALL_STATE(5674)] = 282172, + [SMALL_STATE(5675)] = 282196, + [SMALL_STATE(5676)] = 282222, + [SMALL_STATE(5677)] = 282246, + [SMALL_STATE(5678)] = 282270, + [SMALL_STATE(5679)] = 282294, + [SMALL_STATE(5680)] = 282318, + [SMALL_STATE(5681)] = 282342, + [SMALL_STATE(5682)] = 282368, + [SMALL_STATE(5683)] = 282392, + [SMALL_STATE(5684)] = 282418, + [SMALL_STATE(5685)] = 282442, + [SMALL_STATE(5686)] = 282468, + [SMALL_STATE(5687)] = 282492, + [SMALL_STATE(5688)] = 282516, + [SMALL_STATE(5689)] = 282540, + [SMALL_STATE(5690)] = 282564, + [SMALL_STATE(5691)] = 282588, + [SMALL_STATE(5692)] = 282612, + [SMALL_STATE(5693)] = 282638, + [SMALL_STATE(5694)] = 282662, + [SMALL_STATE(5695)] = 282686, + [SMALL_STATE(5696)] = 282710, + [SMALL_STATE(5697)] = 282734, + [SMALL_STATE(5698)] = 282758, + [SMALL_STATE(5699)] = 282782, + [SMALL_STATE(5700)] = 282806, + [SMALL_STATE(5701)] = 282830, + [SMALL_STATE(5702)] = 282854, [SMALL_STATE(5703)] = 282878, [SMALL_STATE(5704)] = 282902, [SMALL_STATE(5705)] = 282926, - [SMALL_STATE(5706)] = 282952, - [SMALL_STATE(5707)] = 282976, - [SMALL_STATE(5708)] = 283000, - [SMALL_STATE(5709)] = 283024, - [SMALL_STATE(5710)] = 283048, - [SMALL_STATE(5711)] = 283074, - [SMALL_STATE(5712)] = 283100, - [SMALL_STATE(5713)] = 283126, + [SMALL_STATE(5706)] = 282950, + [SMALL_STATE(5707)] = 282974, + [SMALL_STATE(5708)] = 282998, + [SMALL_STATE(5709)] = 283022, + [SMALL_STATE(5710)] = 283046, + [SMALL_STATE(5711)] = 283072, + [SMALL_STATE(5712)] = 283098, + [SMALL_STATE(5713)] = 283124, [SMALL_STATE(5714)] = 283150, [SMALL_STATE(5715)] = 283174, [SMALL_STATE(5716)] = 283198, [SMALL_STATE(5717)] = 283222, [SMALL_STATE(5718)] = 283246, [SMALL_STATE(5719)] = 283270, - [SMALL_STATE(5720)] = 283294, - [SMALL_STATE(5721)] = 283320, - [SMALL_STATE(5722)] = 283346, - [SMALL_STATE(5723)] = 283370, - [SMALL_STATE(5724)] = 283394, - [SMALL_STATE(5725)] = 283418, - [SMALL_STATE(5726)] = 283442, - [SMALL_STATE(5727)] = 283466, - [SMALL_STATE(5728)] = 283490, - [SMALL_STATE(5729)] = 283514, - [SMALL_STATE(5730)] = 283538, - [SMALL_STATE(5731)] = 283562, - [SMALL_STATE(5732)] = 283586, - [SMALL_STATE(5733)] = 283610, - [SMALL_STATE(5734)] = 283634, - [SMALL_STATE(5735)] = 283658, - [SMALL_STATE(5736)] = 283682, + [SMALL_STATE(5720)] = 283296, + [SMALL_STATE(5721)] = 283322, + [SMALL_STATE(5722)] = 283348, + [SMALL_STATE(5723)] = 283372, + [SMALL_STATE(5724)] = 283396, + [SMALL_STATE(5725)] = 283420, + [SMALL_STATE(5726)] = 283444, + [SMALL_STATE(5727)] = 283468, + [SMALL_STATE(5728)] = 283492, + [SMALL_STATE(5729)] = 283516, + [SMALL_STATE(5730)] = 283540, + [SMALL_STATE(5731)] = 283564, + [SMALL_STATE(5732)] = 283588, + [SMALL_STATE(5733)] = 283612, + [SMALL_STATE(5734)] = 283636, + [SMALL_STATE(5735)] = 283660, + [SMALL_STATE(5736)] = 283684, [SMALL_STATE(5737)] = 283708, - [SMALL_STATE(5738)] = 283734, - [SMALL_STATE(5739)] = 283754, - [SMALL_STATE(5740)] = 283778, - [SMALL_STATE(5741)] = 283802, - [SMALL_STATE(5742)] = 283826, - [SMALL_STATE(5743)] = 283850, - [SMALL_STATE(5744)] = 283874, - [SMALL_STATE(5745)] = 283898, - [SMALL_STATE(5746)] = 283922, - [SMALL_STATE(5747)] = 283946, - [SMALL_STATE(5748)] = 283970, - [SMALL_STATE(5749)] = 283994, - [SMALL_STATE(5750)] = 284018, - [SMALL_STATE(5751)] = 284042, - [SMALL_STATE(5752)] = 284066, - [SMALL_STATE(5753)] = 284090, - [SMALL_STATE(5754)] = 284114, - [SMALL_STATE(5755)] = 284138, - [SMALL_STATE(5756)] = 284164, - [SMALL_STATE(5757)] = 284188, - [SMALL_STATE(5758)] = 284212, - [SMALL_STATE(5759)] = 284236, - [SMALL_STATE(5760)] = 284260, - [SMALL_STATE(5761)] = 284284, - [SMALL_STATE(5762)] = 284310, - [SMALL_STATE(5763)] = 284334, - [SMALL_STATE(5764)] = 284358, - [SMALL_STATE(5765)] = 284382, - [SMALL_STATE(5766)] = 284406, - [SMALL_STATE(5767)] = 284430, - [SMALL_STATE(5768)] = 284454, - [SMALL_STATE(5769)] = 284478, - [SMALL_STATE(5770)] = 284502, - [SMALL_STATE(5771)] = 284526, - [SMALL_STATE(5772)] = 284550, - [SMALL_STATE(5773)] = 284574, - [SMALL_STATE(5774)] = 284598, - [SMALL_STATE(5775)] = 284622, - [SMALL_STATE(5776)] = 284646, - [SMALL_STATE(5777)] = 284670, - [SMALL_STATE(5778)] = 284694, - [SMALL_STATE(5779)] = 284718, - [SMALL_STATE(5780)] = 284742, - [SMALL_STATE(5781)] = 284766, - [SMALL_STATE(5782)] = 284786, - [SMALL_STATE(5783)] = 284810, - [SMALL_STATE(5784)] = 284834, - [SMALL_STATE(5785)] = 284860, - [SMALL_STATE(5786)] = 284884, - [SMALL_STATE(5787)] = 284908, - [SMALL_STATE(5788)] = 284932, - [SMALL_STATE(5789)] = 284958, - [SMALL_STATE(5790)] = 284982, - [SMALL_STATE(5791)] = 285006, - [SMALL_STATE(5792)] = 285030, - [SMALL_STATE(5793)] = 285054, - [SMALL_STATE(5794)] = 285078, - [SMALL_STATE(5795)] = 285102, - [SMALL_STATE(5796)] = 285128, - [SMALL_STATE(5797)] = 285152, - [SMALL_STATE(5798)] = 285176, - [SMALL_STATE(5799)] = 285200, - [SMALL_STATE(5800)] = 285224, - [SMALL_STATE(5801)] = 285248, - [SMALL_STATE(5802)] = 285272, - [SMALL_STATE(5803)] = 285296, - [SMALL_STATE(5804)] = 285322, - [SMALL_STATE(5805)] = 285346, - [SMALL_STATE(5806)] = 285370, - [SMALL_STATE(5807)] = 285394, - [SMALL_STATE(5808)] = 285418, - [SMALL_STATE(5809)] = 285442, - [SMALL_STATE(5810)] = 285466, - [SMALL_STATE(5811)] = 285490, - [SMALL_STATE(5812)] = 285514, - [SMALL_STATE(5813)] = 285538, - [SMALL_STATE(5814)] = 285562, - [SMALL_STATE(5815)] = 285586, - [SMALL_STATE(5816)] = 285610, - [SMALL_STATE(5817)] = 285634, - [SMALL_STATE(5818)] = 285658, - [SMALL_STATE(5819)] = 285684, - [SMALL_STATE(5820)] = 285708, - [SMALL_STATE(5821)] = 285732, - [SMALL_STATE(5822)] = 285756, - [SMALL_STATE(5823)] = 285780, - [SMALL_STATE(5824)] = 285804, - [SMALL_STATE(5825)] = 285830, - [SMALL_STATE(5826)] = 285854, - [SMALL_STATE(5827)] = 285880, - [SMALL_STATE(5828)] = 285904, - [SMALL_STATE(5829)] = 285930, - [SMALL_STATE(5830)] = 285954, - [SMALL_STATE(5831)] = 285978, - [SMALL_STATE(5832)] = 286002, - [SMALL_STATE(5833)] = 286026, - [SMALL_STATE(5834)] = 286050, - [SMALL_STATE(5835)] = 286074, - [SMALL_STATE(5836)] = 286100, - [SMALL_STATE(5837)] = 286126, - [SMALL_STATE(5838)] = 286150, - [SMALL_STATE(5839)] = 286174, - [SMALL_STATE(5840)] = 286198, - [SMALL_STATE(5841)] = 286222, - [SMALL_STATE(5842)] = 286246, - [SMALL_STATE(5843)] = 286272, - [SMALL_STATE(5844)] = 286298, - [SMALL_STATE(5845)] = 286324, - [SMALL_STATE(5846)] = 286348, - [SMALL_STATE(5847)] = 286372, - [SMALL_STATE(5848)] = 286396, - [SMALL_STATE(5849)] = 286420, - [SMALL_STATE(5850)] = 286444, - [SMALL_STATE(5851)] = 286468, - [SMALL_STATE(5852)] = 286492, - [SMALL_STATE(5853)] = 286518, - [SMALL_STATE(5854)] = 286544, - [SMALL_STATE(5855)] = 286570, - [SMALL_STATE(5856)] = 286596, + [SMALL_STATE(5738)] = 283732, + [SMALL_STATE(5739)] = 283756, + [SMALL_STATE(5740)] = 283780, + [SMALL_STATE(5741)] = 283806, + [SMALL_STATE(5742)] = 283832, + [SMALL_STATE(5743)] = 283858, + [SMALL_STATE(5744)] = 283882, + [SMALL_STATE(5745)] = 283906, + [SMALL_STATE(5746)] = 283930, + [SMALL_STATE(5747)] = 283954, + [SMALL_STATE(5748)] = 283978, + [SMALL_STATE(5749)] = 284002, + [SMALL_STATE(5750)] = 284026, + [SMALL_STATE(5751)] = 284050, + [SMALL_STATE(5752)] = 284074, + [SMALL_STATE(5753)] = 284098, + [SMALL_STATE(5754)] = 284122, + [SMALL_STATE(5755)] = 284146, + [SMALL_STATE(5756)] = 284172, + [SMALL_STATE(5757)] = 284196, + [SMALL_STATE(5758)] = 284220, + [SMALL_STATE(5759)] = 284244, + [SMALL_STATE(5760)] = 284268, + [SMALL_STATE(5761)] = 284292, + [SMALL_STATE(5762)] = 284316, + [SMALL_STATE(5763)] = 284340, + [SMALL_STATE(5764)] = 284364, + [SMALL_STATE(5765)] = 284388, + [SMALL_STATE(5766)] = 284412, + [SMALL_STATE(5767)] = 284436, + [SMALL_STATE(5768)] = 284460, + [SMALL_STATE(5769)] = 284484, + [SMALL_STATE(5770)] = 284508, + [SMALL_STATE(5771)] = 284532, + [SMALL_STATE(5772)] = 284556, + [SMALL_STATE(5773)] = 284580, + [SMALL_STATE(5774)] = 284604, + [SMALL_STATE(5775)] = 284628, + [SMALL_STATE(5776)] = 284652, + [SMALL_STATE(5777)] = 284676, + [SMALL_STATE(5778)] = 284700, + [SMALL_STATE(5779)] = 284724, + [SMALL_STATE(5780)] = 284748, + [SMALL_STATE(5781)] = 284772, + [SMALL_STATE(5782)] = 284792, + [SMALL_STATE(5783)] = 284816, + [SMALL_STATE(5784)] = 284840, + [SMALL_STATE(5785)] = 284864, + [SMALL_STATE(5786)] = 284888, + [SMALL_STATE(5787)] = 284912, + [SMALL_STATE(5788)] = 284936, + [SMALL_STATE(5789)] = 284962, + [SMALL_STATE(5790)] = 284986, + [SMALL_STATE(5791)] = 285012, + [SMALL_STATE(5792)] = 285036, + [SMALL_STATE(5793)] = 285062, + [SMALL_STATE(5794)] = 285088, + [SMALL_STATE(5795)] = 285114, + [SMALL_STATE(5796)] = 285140, + [SMALL_STATE(5797)] = 285164, + [SMALL_STATE(5798)] = 285188, + [SMALL_STATE(5799)] = 285212, + [SMALL_STATE(5800)] = 285236, + [SMALL_STATE(5801)] = 285260, + [SMALL_STATE(5802)] = 285284, + [SMALL_STATE(5803)] = 285308, + [SMALL_STATE(5804)] = 285334, + [SMALL_STATE(5805)] = 285358, + [SMALL_STATE(5806)] = 285382, + [SMALL_STATE(5807)] = 285406, + [SMALL_STATE(5808)] = 285430, + [SMALL_STATE(5809)] = 285454, + [SMALL_STATE(5810)] = 285478, + [SMALL_STATE(5811)] = 285502, + [SMALL_STATE(5812)] = 285526, + [SMALL_STATE(5813)] = 285550, + [SMALL_STATE(5814)] = 285574, + [SMALL_STATE(5815)] = 285598, + [SMALL_STATE(5816)] = 285622, + [SMALL_STATE(5817)] = 285646, + [SMALL_STATE(5818)] = 285670, + [SMALL_STATE(5819)] = 285696, + [SMALL_STATE(5820)] = 285720, + [SMALL_STATE(5821)] = 285744, + [SMALL_STATE(5822)] = 285768, + [SMALL_STATE(5823)] = 285792, + [SMALL_STATE(5824)] = 285816, + [SMALL_STATE(5825)] = 285842, + [SMALL_STATE(5826)] = 285866, + [SMALL_STATE(5827)] = 285892, + [SMALL_STATE(5828)] = 285916, + [SMALL_STATE(5829)] = 285942, + [SMALL_STATE(5830)] = 285966, + [SMALL_STATE(5831)] = 285990, + [SMALL_STATE(5832)] = 286014, + [SMALL_STATE(5833)] = 286038, + [SMALL_STATE(5834)] = 286062, + [SMALL_STATE(5835)] = 286086, + [SMALL_STATE(5836)] = 286110, + [SMALL_STATE(5837)] = 286134, + [SMALL_STATE(5838)] = 286158, + [SMALL_STATE(5839)] = 286182, + [SMALL_STATE(5840)] = 286206, + [SMALL_STATE(5841)] = 286230, + [SMALL_STATE(5842)] = 286254, + [SMALL_STATE(5843)] = 286278, + [SMALL_STATE(5844)] = 286302, + [SMALL_STATE(5845)] = 286328, + [SMALL_STATE(5846)] = 286352, + [SMALL_STATE(5847)] = 286378, + [SMALL_STATE(5848)] = 286398, + [SMALL_STATE(5849)] = 286424, + [SMALL_STATE(5850)] = 286450, + [SMALL_STATE(5851)] = 286474, + [SMALL_STATE(5852)] = 286498, + [SMALL_STATE(5853)] = 286524, + [SMALL_STATE(5854)] = 286550, + [SMALL_STATE(5855)] = 286574, + [SMALL_STATE(5856)] = 286598, [SMALL_STATE(5857)] = 286622, - [SMALL_STATE(5858)] = 286648, + [SMALL_STATE(5858)] = 286646, [SMALL_STATE(5859)] = 286672, - [SMALL_STATE(5860)] = 286696, - [SMALL_STATE(5861)] = 286720, - [SMALL_STATE(5862)] = 286746, - [SMALL_STATE(5863)] = 286772, - [SMALL_STATE(5864)] = 286796, - [SMALL_STATE(5865)] = 286820, - [SMALL_STATE(5866)] = 286844, - [SMALL_STATE(5867)] = 286868, - [SMALL_STATE(5868)] = 286892, - [SMALL_STATE(5869)] = 286916, - [SMALL_STATE(5870)] = 286940, - [SMALL_STATE(5871)] = 286964, - [SMALL_STATE(5872)] = 286988, - [SMALL_STATE(5873)] = 287012, - [SMALL_STATE(5874)] = 287036, - [SMALL_STATE(5875)] = 287060, - [SMALL_STATE(5876)] = 287084, - [SMALL_STATE(5877)] = 287108, - [SMALL_STATE(5878)] = 287132, - [SMALL_STATE(5879)] = 287156, - [SMALL_STATE(5880)] = 287180, - [SMALL_STATE(5881)] = 287204, + [SMALL_STATE(5860)] = 286698, + [SMALL_STATE(5861)] = 286722, + [SMALL_STATE(5862)] = 286748, + [SMALL_STATE(5863)] = 286774, + [SMALL_STATE(5864)] = 286798, + [SMALL_STATE(5865)] = 286822, + [SMALL_STATE(5866)] = 286846, + [SMALL_STATE(5867)] = 286870, + [SMALL_STATE(5868)] = 286894, + [SMALL_STATE(5869)] = 286918, + [SMALL_STATE(5870)] = 286942, + [SMALL_STATE(5871)] = 286966, + [SMALL_STATE(5872)] = 286990, + [SMALL_STATE(5873)] = 287014, + [SMALL_STATE(5874)] = 287038, + [SMALL_STATE(5875)] = 287062, + [SMALL_STATE(5876)] = 287086, + [SMALL_STATE(5877)] = 287110, + [SMALL_STATE(5878)] = 287134, + [SMALL_STATE(5879)] = 287158, + [SMALL_STATE(5880)] = 287182, + [SMALL_STATE(5881)] = 287206, [SMALL_STATE(5882)] = 287230, [SMALL_STATE(5883)] = 287254, [SMALL_STATE(5884)] = 287278, @@ -429877,43 +429643,43 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5886)] = 287326, [SMALL_STATE(5887)] = 287350, [SMALL_STATE(5888)] = 287374, - [SMALL_STATE(5889)] = 287398, - [SMALL_STATE(5890)] = 287422, - [SMALL_STATE(5891)] = 287446, - [SMALL_STATE(5892)] = 287470, - [SMALL_STATE(5893)] = 287494, - [SMALL_STATE(5894)] = 287518, - [SMALL_STATE(5895)] = 287542, - [SMALL_STATE(5896)] = 287566, - [SMALL_STATE(5897)] = 287592, - [SMALL_STATE(5898)] = 287616, - [SMALL_STATE(5899)] = 287640, - [SMALL_STATE(5900)] = 287664, - [SMALL_STATE(5901)] = 287688, - [SMALL_STATE(5902)] = 287712, - [SMALL_STATE(5903)] = 287738, - [SMALL_STATE(5904)] = 287762, - [SMALL_STATE(5905)] = 287786, - [SMALL_STATE(5906)] = 287810, - [SMALL_STATE(5907)] = 287834, - [SMALL_STATE(5908)] = 287858, - [SMALL_STATE(5909)] = 287882, - [SMALL_STATE(5910)] = 287906, - [SMALL_STATE(5911)] = 287930, - [SMALL_STATE(5912)] = 287954, - [SMALL_STATE(5913)] = 287978, - [SMALL_STATE(5914)] = 288002, - [SMALL_STATE(5915)] = 288026, - [SMALL_STATE(5916)] = 288050, - [SMALL_STATE(5917)] = 288074, + [SMALL_STATE(5889)] = 287400, + [SMALL_STATE(5890)] = 287426, + [SMALL_STATE(5891)] = 287450, + [SMALL_STATE(5892)] = 287474, + [SMALL_STATE(5893)] = 287498, + [SMALL_STATE(5894)] = 287522, + [SMALL_STATE(5895)] = 287546, + [SMALL_STATE(5896)] = 287570, + [SMALL_STATE(5897)] = 287596, + [SMALL_STATE(5898)] = 287620, + [SMALL_STATE(5899)] = 287644, + [SMALL_STATE(5900)] = 287668, + [SMALL_STATE(5901)] = 287692, + [SMALL_STATE(5902)] = 287716, + [SMALL_STATE(5903)] = 287740, + [SMALL_STATE(5904)] = 287764, + [SMALL_STATE(5905)] = 287788, + [SMALL_STATE(5906)] = 287812, + [SMALL_STATE(5907)] = 287836, + [SMALL_STATE(5908)] = 287860, + [SMALL_STATE(5909)] = 287884, + [SMALL_STATE(5910)] = 287908, + [SMALL_STATE(5911)] = 287932, + [SMALL_STATE(5912)] = 287956, + [SMALL_STATE(5913)] = 287980, + [SMALL_STATE(5914)] = 288004, + [SMALL_STATE(5915)] = 288028, + [SMALL_STATE(5916)] = 288052, + [SMALL_STATE(5917)] = 288076, [SMALL_STATE(5918)] = 288100, - [SMALL_STATE(5919)] = 288120, - [SMALL_STATE(5920)] = 288146, - [SMALL_STATE(5921)] = 288170, - [SMALL_STATE(5922)] = 288194, - [SMALL_STATE(5923)] = 288218, - [SMALL_STATE(5924)] = 288244, - [SMALL_STATE(5925)] = 288268, + [SMALL_STATE(5919)] = 288124, + [SMALL_STATE(5920)] = 288150, + [SMALL_STATE(5921)] = 288174, + [SMALL_STATE(5922)] = 288198, + [SMALL_STATE(5923)] = 288222, + [SMALL_STATE(5924)] = 288246, + [SMALL_STATE(5925)] = 288270, [SMALL_STATE(5926)] = 288294, [SMALL_STATE(5927)] = 288318, [SMALL_STATE(5928)] = 288342, @@ -429944,17 +429710,17 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5953)] = 288923, [SMALL_STATE(5954)] = 288944, [SMALL_STATE(5955)] = 288965, - [SMALL_STATE(5956)] = 288986, - [SMALL_STATE(5957)] = 289007, - [SMALL_STATE(5958)] = 289028, - [SMALL_STATE(5959)] = 289049, - [SMALL_STATE(5960)] = 289070, - [SMALL_STATE(5961)] = 289091, - [SMALL_STATE(5962)] = 289108, - [SMALL_STATE(5963)] = 289129, - [SMALL_STATE(5964)] = 289150, - [SMALL_STATE(5965)] = 289171, - [SMALL_STATE(5966)] = 289192, + [SMALL_STATE(5956)] = 288982, + [SMALL_STATE(5957)] = 289003, + [SMALL_STATE(5958)] = 289024, + [SMALL_STATE(5959)] = 289045, + [SMALL_STATE(5960)] = 289066, + [SMALL_STATE(5961)] = 289087, + [SMALL_STATE(5962)] = 289104, + [SMALL_STATE(5963)] = 289125, + [SMALL_STATE(5964)] = 289146, + [SMALL_STATE(5965)] = 289167, + [SMALL_STATE(5966)] = 289188, [SMALL_STATE(5967)] = 289209, [SMALL_STATE(5968)] = 289230, [SMALL_STATE(5969)] = 289251, @@ -429963,22 +429729,22 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5972)] = 289314, [SMALL_STATE(5973)] = 289335, [SMALL_STATE(5974)] = 289356, - [SMALL_STATE(5975)] = 289373, - [SMALL_STATE(5976)] = 289394, - [SMALL_STATE(5977)] = 289411, - [SMALL_STATE(5978)] = 289432, - [SMALL_STATE(5979)] = 289453, - [SMALL_STATE(5980)] = 289474, - [SMALL_STATE(5981)] = 289495, - [SMALL_STATE(5982)] = 289516, - [SMALL_STATE(5983)] = 289537, - [SMALL_STATE(5984)] = 289558, - [SMALL_STATE(5985)] = 289579, - [SMALL_STATE(5986)] = 289600, - [SMALL_STATE(5987)] = 289621, - [SMALL_STATE(5988)] = 289642, - [SMALL_STATE(5989)] = 289663, - [SMALL_STATE(5990)] = 289684, + [SMALL_STATE(5975)] = 289377, + [SMALL_STATE(5976)] = 289398, + [SMALL_STATE(5977)] = 289419, + [SMALL_STATE(5978)] = 289440, + [SMALL_STATE(5979)] = 289461, + [SMALL_STATE(5980)] = 289482, + [SMALL_STATE(5981)] = 289503, + [SMALL_STATE(5982)] = 289524, + [SMALL_STATE(5983)] = 289545, + [SMALL_STATE(5984)] = 289566, + [SMALL_STATE(5985)] = 289587, + [SMALL_STATE(5986)] = 289608, + [SMALL_STATE(5987)] = 289629, + [SMALL_STATE(5988)] = 289650, + [SMALL_STATE(5989)] = 289671, + [SMALL_STATE(5990)] = 289688, [SMALL_STATE(5991)] = 289705, [SMALL_STATE(5992)] = 289726, [SMALL_STATE(5993)] = 289747, @@ -429991,174 +429757,174 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6000)] = 289894, [SMALL_STATE(6001)] = 289915, [SMALL_STATE(6002)] = 289936, - [SMALL_STATE(6003)] = 289953, - [SMALL_STATE(6004)] = 289970, - [SMALL_STATE(6005)] = 289987, - [SMALL_STATE(6006)] = 290008, - [SMALL_STATE(6007)] = 290025, - [SMALL_STATE(6008)] = 290046, - [SMALL_STATE(6009)] = 290067, - [SMALL_STATE(6010)] = 290084, - [SMALL_STATE(6011)] = 290101, - [SMALL_STATE(6012)] = 290118, - [SMALL_STATE(6013)] = 290139, - [SMALL_STATE(6014)] = 290160, - [SMALL_STATE(6015)] = 290181, - [SMALL_STATE(6016)] = 290202, - [SMALL_STATE(6017)] = 290223, - [SMALL_STATE(6018)] = 290244, - [SMALL_STATE(6019)] = 290265, - [SMALL_STATE(6020)] = 290286, - [SMALL_STATE(6021)] = 290307, - [SMALL_STATE(6022)] = 290328, - [SMALL_STATE(6023)] = 290349, - [SMALL_STATE(6024)] = 290370, - [SMALL_STATE(6025)] = 290387, - [SMALL_STATE(6026)] = 290408, - [SMALL_STATE(6027)] = 290429, - [SMALL_STATE(6028)] = 290450, - [SMALL_STATE(6029)] = 290471, - [SMALL_STATE(6030)] = 290492, - [SMALL_STATE(6031)] = 290513, - [SMALL_STATE(6032)] = 290534, - [SMALL_STATE(6033)] = 290555, - [SMALL_STATE(6034)] = 290576, - [SMALL_STATE(6035)] = 290597, - [SMALL_STATE(6036)] = 290618, - [SMALL_STATE(6037)] = 290635, - [SMALL_STATE(6038)] = 290656, - [SMALL_STATE(6039)] = 290677, - [SMALL_STATE(6040)] = 290698, - [SMALL_STATE(6041)] = 290719, - [SMALL_STATE(6042)] = 290740, - [SMALL_STATE(6043)] = 290761, - [SMALL_STATE(6044)] = 290782, - [SMALL_STATE(6045)] = 290803, - [SMALL_STATE(6046)] = 290824, - [SMALL_STATE(6047)] = 290845, - [SMALL_STATE(6048)] = 290866, - [SMALL_STATE(6049)] = 290887, - [SMALL_STATE(6050)] = 290908, - [SMALL_STATE(6051)] = 290929, - [SMALL_STATE(6052)] = 290950, - [SMALL_STATE(6053)] = 290971, - [SMALL_STATE(6054)] = 290992, - [SMALL_STATE(6055)] = 291013, - [SMALL_STATE(6056)] = 291034, - [SMALL_STATE(6057)] = 291055, - [SMALL_STATE(6058)] = 291076, - [SMALL_STATE(6059)] = 291097, - [SMALL_STATE(6060)] = 291118, - [SMALL_STATE(6061)] = 291135, - [SMALL_STATE(6062)] = 291156, - [SMALL_STATE(6063)] = 291177, - [SMALL_STATE(6064)] = 291198, - [SMALL_STATE(6065)] = 291219, - [SMALL_STATE(6066)] = 291240, - [SMALL_STATE(6067)] = 291261, - [SMALL_STATE(6068)] = 291282, - [SMALL_STATE(6069)] = 291303, - [SMALL_STATE(6070)] = 291324, - [SMALL_STATE(6071)] = 291345, - [SMALL_STATE(6072)] = 291366, - [SMALL_STATE(6073)] = 291383, - [SMALL_STATE(6074)] = 291404, - [SMALL_STATE(6075)] = 291421, - [SMALL_STATE(6076)] = 291438, - [SMALL_STATE(6077)] = 291459, - [SMALL_STATE(6078)] = 291478, - [SMALL_STATE(6079)] = 291499, - [SMALL_STATE(6080)] = 291520, - [SMALL_STATE(6081)] = 291541, - [SMALL_STATE(6082)] = 291562, - [SMALL_STATE(6083)] = 291583, - [SMALL_STATE(6084)] = 291600, - [SMALL_STATE(6085)] = 291621, - [SMALL_STATE(6086)] = 291642, - [SMALL_STATE(6087)] = 291663, - [SMALL_STATE(6088)] = 291684, - [SMALL_STATE(6089)] = 291705, - [SMALL_STATE(6090)] = 291726, - [SMALL_STATE(6091)] = 291747, - [SMALL_STATE(6092)] = 291768, - [SMALL_STATE(6093)] = 291785, - [SMALL_STATE(6094)] = 291806, - [SMALL_STATE(6095)] = 291827, - [SMALL_STATE(6096)] = 291848, - [SMALL_STATE(6097)] = 291869, - [SMALL_STATE(6098)] = 291890, - [SMALL_STATE(6099)] = 291911, - [SMALL_STATE(6100)] = 291932, - [SMALL_STATE(6101)] = 291953, - [SMALL_STATE(6102)] = 291974, - [SMALL_STATE(6103)] = 291995, - [SMALL_STATE(6104)] = 292016, - [SMALL_STATE(6105)] = 292037, - [SMALL_STATE(6106)] = 292058, - [SMALL_STATE(6107)] = 292079, - [SMALL_STATE(6108)] = 292100, - [SMALL_STATE(6109)] = 292121, - [SMALL_STATE(6110)] = 292142, - [SMALL_STATE(6111)] = 292163, - [SMALL_STATE(6112)] = 292180, - [SMALL_STATE(6113)] = 292197, - [SMALL_STATE(6114)] = 292218, - [SMALL_STATE(6115)] = 292239, - [SMALL_STATE(6116)] = 292256, - [SMALL_STATE(6117)] = 292273, - [SMALL_STATE(6118)] = 292294, - [SMALL_STATE(6119)] = 292315, - [SMALL_STATE(6120)] = 292336, - [SMALL_STATE(6121)] = 292357, - [SMALL_STATE(6122)] = 292378, - [SMALL_STATE(6123)] = 292399, - [SMALL_STATE(6124)] = 292420, - [SMALL_STATE(6125)] = 292441, - [SMALL_STATE(6126)] = 292462, - [SMALL_STATE(6127)] = 292479, - [SMALL_STATE(6128)] = 292500, - [SMALL_STATE(6129)] = 292521, - [SMALL_STATE(6130)] = 292538, - [SMALL_STATE(6131)] = 292559, - [SMALL_STATE(6132)] = 292580, - [SMALL_STATE(6133)] = 292601, - [SMALL_STATE(6134)] = 292622, - [SMALL_STATE(6135)] = 292643, - [SMALL_STATE(6136)] = 292664, - [SMALL_STATE(6137)] = 292685, - [SMALL_STATE(6138)] = 292706, - [SMALL_STATE(6139)] = 292727, - [SMALL_STATE(6140)] = 292746, - [SMALL_STATE(6141)] = 292767, - [SMALL_STATE(6142)] = 292788, - [SMALL_STATE(6143)] = 292809, - [SMALL_STATE(6144)] = 292830, - [SMALL_STATE(6145)] = 292851, - [SMALL_STATE(6146)] = 292872, - [SMALL_STATE(6147)] = 292893, - [SMALL_STATE(6148)] = 292914, - [SMALL_STATE(6149)] = 292931, - [SMALL_STATE(6150)] = 292952, - [SMALL_STATE(6151)] = 292973, - [SMALL_STATE(6152)] = 292994, - [SMALL_STATE(6153)] = 293011, - [SMALL_STATE(6154)] = 293032, - [SMALL_STATE(6155)] = 293049, - [SMALL_STATE(6156)] = 293070, - [SMALL_STATE(6157)] = 293087, - [SMALL_STATE(6158)] = 293108, - [SMALL_STATE(6159)] = 293125, - [SMALL_STATE(6160)] = 293146, - [SMALL_STATE(6161)] = 293167, - [SMALL_STATE(6162)] = 293188, - [SMALL_STATE(6163)] = 293209, - [SMALL_STATE(6164)] = 293230, - [SMALL_STATE(6165)] = 293251, - [SMALL_STATE(6166)] = 293272, - [SMALL_STATE(6167)] = 293293, - [SMALL_STATE(6168)] = 293314, - [SMALL_STATE(6169)] = 293335, - [SMALL_STATE(6170)] = 293356, + [SMALL_STATE(6003)] = 289957, + [SMALL_STATE(6004)] = 289978, + [SMALL_STATE(6005)] = 289999, + [SMALL_STATE(6006)] = 290020, + [SMALL_STATE(6007)] = 290041, + [SMALL_STATE(6008)] = 290062, + [SMALL_STATE(6009)] = 290083, + [SMALL_STATE(6010)] = 290104, + [SMALL_STATE(6011)] = 290125, + [SMALL_STATE(6012)] = 290146, + [SMALL_STATE(6013)] = 290167, + [SMALL_STATE(6014)] = 290188, + [SMALL_STATE(6015)] = 290209, + [SMALL_STATE(6016)] = 290230, + [SMALL_STATE(6017)] = 290251, + [SMALL_STATE(6018)] = 290272, + [SMALL_STATE(6019)] = 290293, + [SMALL_STATE(6020)] = 290314, + [SMALL_STATE(6021)] = 290335, + [SMALL_STATE(6022)] = 290356, + [SMALL_STATE(6023)] = 290377, + [SMALL_STATE(6024)] = 290398, + [SMALL_STATE(6025)] = 290419, + [SMALL_STATE(6026)] = 290440, + [SMALL_STATE(6027)] = 290461, + [SMALL_STATE(6028)] = 290482, + [SMALL_STATE(6029)] = 290503, + [SMALL_STATE(6030)] = 290524, + [SMALL_STATE(6031)] = 290545, + [SMALL_STATE(6032)] = 290566, + [SMALL_STATE(6033)] = 290587, + [SMALL_STATE(6034)] = 290608, + [SMALL_STATE(6035)] = 290629, + [SMALL_STATE(6036)] = 290650, + [SMALL_STATE(6037)] = 290671, + [SMALL_STATE(6038)] = 290692, + [SMALL_STATE(6039)] = 290713, + [SMALL_STATE(6040)] = 290734, + [SMALL_STATE(6041)] = 290751, + [SMALL_STATE(6042)] = 290772, + [SMALL_STATE(6043)] = 290793, + [SMALL_STATE(6044)] = 290814, + [SMALL_STATE(6045)] = 290835, + [SMALL_STATE(6046)] = 290856, + [SMALL_STATE(6047)] = 290875, + [SMALL_STATE(6048)] = 290896, + [SMALL_STATE(6049)] = 290917, + [SMALL_STATE(6050)] = 290938, + [SMALL_STATE(6051)] = 290959, + [SMALL_STATE(6052)] = 290980, + [SMALL_STATE(6053)] = 291001, + [SMALL_STATE(6054)] = 291022, + [SMALL_STATE(6055)] = 291043, + [SMALL_STATE(6056)] = 291064, + [SMALL_STATE(6057)] = 291085, + [SMALL_STATE(6058)] = 291106, + [SMALL_STATE(6059)] = 291127, + [SMALL_STATE(6060)] = 291148, + [SMALL_STATE(6061)] = 291169, + [SMALL_STATE(6062)] = 291190, + [SMALL_STATE(6063)] = 291211, + [SMALL_STATE(6064)] = 291232, + [SMALL_STATE(6065)] = 291253, + [SMALL_STATE(6066)] = 291274, + [SMALL_STATE(6067)] = 291295, + [SMALL_STATE(6068)] = 291316, + [SMALL_STATE(6069)] = 291337, + [SMALL_STATE(6070)] = 291358, + [SMALL_STATE(6071)] = 291379, + [SMALL_STATE(6072)] = 291400, + [SMALL_STATE(6073)] = 291421, + [SMALL_STATE(6074)] = 291442, + [SMALL_STATE(6075)] = 291463, + [SMALL_STATE(6076)] = 291484, + [SMALL_STATE(6077)] = 291505, + [SMALL_STATE(6078)] = 291526, + [SMALL_STATE(6079)] = 291547, + [SMALL_STATE(6080)] = 291568, + [SMALL_STATE(6081)] = 291589, + [SMALL_STATE(6082)] = 291610, + [SMALL_STATE(6083)] = 291631, + [SMALL_STATE(6084)] = 291652, + [SMALL_STATE(6085)] = 291673, + [SMALL_STATE(6086)] = 291694, + [SMALL_STATE(6087)] = 291715, + [SMALL_STATE(6088)] = 291736, + [SMALL_STATE(6089)] = 291757, + [SMALL_STATE(6090)] = 291778, + [SMALL_STATE(6091)] = 291799, + [SMALL_STATE(6092)] = 291820, + [SMALL_STATE(6093)] = 291841, + [SMALL_STATE(6094)] = 291862, + [SMALL_STATE(6095)] = 291883, + [SMALL_STATE(6096)] = 291904, + [SMALL_STATE(6097)] = 291925, + [SMALL_STATE(6098)] = 291946, + [SMALL_STATE(6099)] = 291967, + [SMALL_STATE(6100)] = 291988, + [SMALL_STATE(6101)] = 292009, + [SMALL_STATE(6102)] = 292030, + [SMALL_STATE(6103)] = 292051, + [SMALL_STATE(6104)] = 292072, + [SMALL_STATE(6105)] = 292093, + [SMALL_STATE(6106)] = 292114, + [SMALL_STATE(6107)] = 292135, + [SMALL_STATE(6108)] = 292156, + [SMALL_STATE(6109)] = 292177, + [SMALL_STATE(6110)] = 292198, + [SMALL_STATE(6111)] = 292219, + [SMALL_STATE(6112)] = 292240, + [SMALL_STATE(6113)] = 292261, + [SMALL_STATE(6114)] = 292282, + [SMALL_STATE(6115)] = 292303, + [SMALL_STATE(6116)] = 292324, + [SMALL_STATE(6117)] = 292345, + [SMALL_STATE(6118)] = 292366, + [SMALL_STATE(6119)] = 292387, + [SMALL_STATE(6120)] = 292408, + [SMALL_STATE(6121)] = 292429, + [SMALL_STATE(6122)] = 292448, + [SMALL_STATE(6123)] = 292469, + [SMALL_STATE(6124)] = 292486, + [SMALL_STATE(6125)] = 292503, + [SMALL_STATE(6126)] = 292520, + [SMALL_STATE(6127)] = 292537, + [SMALL_STATE(6128)] = 292556, + [SMALL_STATE(6129)] = 292573, + [SMALL_STATE(6130)] = 292590, + [SMALL_STATE(6131)] = 292607, + [SMALL_STATE(6132)] = 292628, + [SMALL_STATE(6133)] = 292649, + [SMALL_STATE(6134)] = 292670, + [SMALL_STATE(6135)] = 292691, + [SMALL_STATE(6136)] = 292712, + [SMALL_STATE(6137)] = 292733, + [SMALL_STATE(6138)] = 292750, + [SMALL_STATE(6139)] = 292767, + [SMALL_STATE(6140)] = 292784, + [SMALL_STATE(6141)] = 292801, + [SMALL_STATE(6142)] = 292818, + [SMALL_STATE(6143)] = 292835, + [SMALL_STATE(6144)] = 292856, + [SMALL_STATE(6145)] = 292877, + [SMALL_STATE(6146)] = 292898, + [SMALL_STATE(6147)] = 292919, + [SMALL_STATE(6148)] = 292936, + [SMALL_STATE(6149)] = 292953, + [SMALL_STATE(6150)] = 292974, + [SMALL_STATE(6151)] = 292995, + [SMALL_STATE(6152)] = 293016, + [SMALL_STATE(6153)] = 293037, + [SMALL_STATE(6154)] = 293058, + [SMALL_STATE(6155)] = 293079, + [SMALL_STATE(6156)] = 293100, + [SMALL_STATE(6157)] = 293121, + [SMALL_STATE(6158)] = 293142, + [SMALL_STATE(6159)] = 293163, + [SMALL_STATE(6160)] = 293180, + [SMALL_STATE(6161)] = 293197, + [SMALL_STATE(6162)] = 293218, + [SMALL_STATE(6163)] = 293235, + [SMALL_STATE(6164)] = 293252, + [SMALL_STATE(6165)] = 293269, + [SMALL_STATE(6166)] = 293286, + [SMALL_STATE(6167)] = 293307, + [SMALL_STATE(6168)] = 293324, + [SMALL_STATE(6169)] = 293341, + [SMALL_STATE(6170)] = 293358, [SMALL_STATE(6171)] = 293375, [SMALL_STATE(6172)] = 293393, [SMALL_STATE(6173)] = 293411, @@ -430186,445 +429952,445 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6195)] = 293807, [SMALL_STATE(6196)] = 293825, [SMALL_STATE(6197)] = 293843, - [SMALL_STATE(6198)] = 293861, - [SMALL_STATE(6199)] = 293879, - [SMALL_STATE(6200)] = 293897, - [SMALL_STATE(6201)] = 293915, - [SMALL_STATE(6202)] = 293933, - [SMALL_STATE(6203)] = 293951, - [SMALL_STATE(6204)] = 293969, - [SMALL_STATE(6205)] = 293987, - [SMALL_STATE(6206)] = 294005, - [SMALL_STATE(6207)] = 294023, - [SMALL_STATE(6208)] = 294041, - [SMALL_STATE(6209)] = 294059, - [SMALL_STATE(6210)] = 294077, - [SMALL_STATE(6211)] = 294095, - [SMALL_STATE(6212)] = 294113, - [SMALL_STATE(6213)] = 294131, - [SMALL_STATE(6214)] = 294149, - [SMALL_STATE(6215)] = 294167, - [SMALL_STATE(6216)] = 294185, - [SMALL_STATE(6217)] = 294203, - [SMALL_STATE(6218)] = 294221, - [SMALL_STATE(6219)] = 294239, - [SMALL_STATE(6220)] = 294257, - [SMALL_STATE(6221)] = 294275, - [SMALL_STATE(6222)] = 294293, - [SMALL_STATE(6223)] = 294311, - [SMALL_STATE(6224)] = 294329, - [SMALL_STATE(6225)] = 294347, - [SMALL_STATE(6226)] = 294365, - [SMALL_STATE(6227)] = 294383, - [SMALL_STATE(6228)] = 294401, - [SMALL_STATE(6229)] = 294419, - [SMALL_STATE(6230)] = 294437, - [SMALL_STATE(6231)] = 294455, - [SMALL_STATE(6232)] = 294473, - [SMALL_STATE(6233)] = 294491, - [SMALL_STATE(6234)] = 294509, - [SMALL_STATE(6235)] = 294527, - [SMALL_STATE(6236)] = 294545, - [SMALL_STATE(6237)] = 294559, - [SMALL_STATE(6238)] = 294577, - [SMALL_STATE(6239)] = 294595, - [SMALL_STATE(6240)] = 294613, - [SMALL_STATE(6241)] = 294631, - [SMALL_STATE(6242)] = 294647, - [SMALL_STATE(6243)] = 294663, - [SMALL_STATE(6244)] = 294681, - [SMALL_STATE(6245)] = 294699, - [SMALL_STATE(6246)] = 294717, - [SMALL_STATE(6247)] = 294735, - [SMALL_STATE(6248)] = 294753, + [SMALL_STATE(6198)] = 293857, + [SMALL_STATE(6199)] = 293875, + [SMALL_STATE(6200)] = 293893, + [SMALL_STATE(6201)] = 293911, + [SMALL_STATE(6202)] = 293929, + [SMALL_STATE(6203)] = 293945, + [SMALL_STATE(6204)] = 293963, + [SMALL_STATE(6205)] = 293981, + [SMALL_STATE(6206)] = 293999, + [SMALL_STATE(6207)] = 294013, + [SMALL_STATE(6208)] = 294031, + [SMALL_STATE(6209)] = 294049, + [SMALL_STATE(6210)] = 294067, + [SMALL_STATE(6211)] = 294085, + [SMALL_STATE(6212)] = 294103, + [SMALL_STATE(6213)] = 294121, + [SMALL_STATE(6214)] = 294139, + [SMALL_STATE(6215)] = 294157, + [SMALL_STATE(6216)] = 294175, + [SMALL_STATE(6217)] = 294193, + [SMALL_STATE(6218)] = 294211, + [SMALL_STATE(6219)] = 294229, + [SMALL_STATE(6220)] = 294247, + [SMALL_STATE(6221)] = 294265, + [SMALL_STATE(6222)] = 294283, + [SMALL_STATE(6223)] = 294301, + [SMALL_STATE(6224)] = 294319, + [SMALL_STATE(6225)] = 294337, + [SMALL_STATE(6226)] = 294355, + [SMALL_STATE(6227)] = 294373, + [SMALL_STATE(6228)] = 294391, + [SMALL_STATE(6229)] = 294409, + [SMALL_STATE(6230)] = 294427, + [SMALL_STATE(6231)] = 294445, + [SMALL_STATE(6232)] = 294463, + [SMALL_STATE(6233)] = 294481, + [SMALL_STATE(6234)] = 294499, + [SMALL_STATE(6235)] = 294517, + [SMALL_STATE(6236)] = 294535, + [SMALL_STATE(6237)] = 294553, + [SMALL_STATE(6238)] = 294571, + [SMALL_STATE(6239)] = 294589, + [SMALL_STATE(6240)] = 294607, + [SMALL_STATE(6241)] = 294625, + [SMALL_STATE(6242)] = 294643, + [SMALL_STATE(6243)] = 294661, + [SMALL_STATE(6244)] = 294679, + [SMALL_STATE(6245)] = 294697, + [SMALL_STATE(6246)] = 294715, + [SMALL_STATE(6247)] = 294733, + [SMALL_STATE(6248)] = 294751, [SMALL_STATE(6249)] = 294769, [SMALL_STATE(6250)] = 294787, [SMALL_STATE(6251)] = 294805, [SMALL_STATE(6252)] = 294823, - [SMALL_STATE(6253)] = 294837, - [SMALL_STATE(6254)] = 294855, - [SMALL_STATE(6255)] = 294873, - [SMALL_STATE(6256)] = 294891, - [SMALL_STATE(6257)] = 294909, - [SMALL_STATE(6258)] = 294927, - [SMALL_STATE(6259)] = 294945, + [SMALL_STATE(6253)] = 294841, + [SMALL_STATE(6254)] = 294859, + [SMALL_STATE(6255)] = 294877, + [SMALL_STATE(6256)] = 294895, + [SMALL_STATE(6257)] = 294913, + [SMALL_STATE(6258)] = 294931, + [SMALL_STATE(6259)] = 294949, [SMALL_STATE(6260)] = 294963, [SMALL_STATE(6261)] = 294981, [SMALL_STATE(6262)] = 294999, [SMALL_STATE(6263)] = 295017, - [SMALL_STATE(6264)] = 295035, - [SMALL_STATE(6265)] = 295053, - [SMALL_STATE(6266)] = 295071, - [SMALL_STATE(6267)] = 295085, - [SMALL_STATE(6268)] = 295103, - [SMALL_STATE(6269)] = 295121, - [SMALL_STATE(6270)] = 295139, - [SMALL_STATE(6271)] = 295153, - [SMALL_STATE(6272)] = 295171, - [SMALL_STATE(6273)] = 295189, - [SMALL_STATE(6274)] = 295207, - [SMALL_STATE(6275)] = 295225, - [SMALL_STATE(6276)] = 295243, - [SMALL_STATE(6277)] = 295261, - [SMALL_STATE(6278)] = 295279, - [SMALL_STATE(6279)] = 295297, - [SMALL_STATE(6280)] = 295315, - [SMALL_STATE(6281)] = 295333, - [SMALL_STATE(6282)] = 295351, - [SMALL_STATE(6283)] = 295369, - [SMALL_STATE(6284)] = 295387, - [SMALL_STATE(6285)] = 295405, - [SMALL_STATE(6286)] = 295423, - [SMALL_STATE(6287)] = 295441, - [SMALL_STATE(6288)] = 295459, - [SMALL_STATE(6289)] = 295477, - [SMALL_STATE(6290)] = 295495, - [SMALL_STATE(6291)] = 295513, - [SMALL_STATE(6292)] = 295531, - [SMALL_STATE(6293)] = 295549, - [SMALL_STATE(6294)] = 295567, - [SMALL_STATE(6295)] = 295585, - [SMALL_STATE(6296)] = 295603, - [SMALL_STATE(6297)] = 295621, - [SMALL_STATE(6298)] = 295639, - [SMALL_STATE(6299)] = 295657, - [SMALL_STATE(6300)] = 295675, - [SMALL_STATE(6301)] = 295693, - [SMALL_STATE(6302)] = 295711, - [SMALL_STATE(6303)] = 295729, - [SMALL_STATE(6304)] = 295747, - [SMALL_STATE(6305)] = 295765, - [SMALL_STATE(6306)] = 295783, - [SMALL_STATE(6307)] = 295801, - [SMALL_STATE(6308)] = 295819, - [SMALL_STATE(6309)] = 295837, - [SMALL_STATE(6310)] = 295855, - [SMALL_STATE(6311)] = 295873, - [SMALL_STATE(6312)] = 295891, - [SMALL_STATE(6313)] = 295905, - [SMALL_STATE(6314)] = 295923, - [SMALL_STATE(6315)] = 295941, - [SMALL_STATE(6316)] = 295959, - [SMALL_STATE(6317)] = 295977, - [SMALL_STATE(6318)] = 295995, - [SMALL_STATE(6319)] = 296013, - [SMALL_STATE(6320)] = 296031, - [SMALL_STATE(6321)] = 296049, - [SMALL_STATE(6322)] = 296067, - [SMALL_STATE(6323)] = 296085, - [SMALL_STATE(6324)] = 296103, - [SMALL_STATE(6325)] = 296121, - [SMALL_STATE(6326)] = 296135, - [SMALL_STATE(6327)] = 296153, - [SMALL_STATE(6328)] = 296169, - [SMALL_STATE(6329)] = 296187, - [SMALL_STATE(6330)] = 296205, - [SMALL_STATE(6331)] = 296223, - [SMALL_STATE(6332)] = 296241, - [SMALL_STATE(6333)] = 296259, - [SMALL_STATE(6334)] = 296277, - [SMALL_STATE(6335)] = 296291, - [SMALL_STATE(6336)] = 296309, - [SMALL_STATE(6337)] = 296325, - [SMALL_STATE(6338)] = 296341, - [SMALL_STATE(6339)] = 296355, - [SMALL_STATE(6340)] = 296373, - [SMALL_STATE(6341)] = 296391, - [SMALL_STATE(6342)] = 296405, - [SMALL_STATE(6343)] = 296423, - [SMALL_STATE(6344)] = 296437, - [SMALL_STATE(6345)] = 296455, - [SMALL_STATE(6346)] = 296473, - [SMALL_STATE(6347)] = 296491, - [SMALL_STATE(6348)] = 296509, - [SMALL_STATE(6349)] = 296527, - [SMALL_STATE(6350)] = 296545, - [SMALL_STATE(6351)] = 296563, - [SMALL_STATE(6352)] = 296581, - [SMALL_STATE(6353)] = 296599, - [SMALL_STATE(6354)] = 296617, - [SMALL_STATE(6355)] = 296635, - [SMALL_STATE(6356)] = 296653, - [SMALL_STATE(6357)] = 296671, - [SMALL_STATE(6358)] = 296689, - [SMALL_STATE(6359)] = 296707, - [SMALL_STATE(6360)] = 296725, - [SMALL_STATE(6361)] = 296743, - [SMALL_STATE(6362)] = 296761, - [SMALL_STATE(6363)] = 296779, - [SMALL_STATE(6364)] = 296797, - [SMALL_STATE(6365)] = 296815, - [SMALL_STATE(6366)] = 296833, - [SMALL_STATE(6367)] = 296851, - [SMALL_STATE(6368)] = 296869, - [SMALL_STATE(6369)] = 296887, - [SMALL_STATE(6370)] = 296905, - [SMALL_STATE(6371)] = 296923, - [SMALL_STATE(6372)] = 296941, - [SMALL_STATE(6373)] = 296959, - [SMALL_STATE(6374)] = 296977, - [SMALL_STATE(6375)] = 296995, - [SMALL_STATE(6376)] = 297013, - [SMALL_STATE(6377)] = 297031, - [SMALL_STATE(6378)] = 297049, - [SMALL_STATE(6379)] = 297067, - [SMALL_STATE(6380)] = 297085, - [SMALL_STATE(6381)] = 297103, - [SMALL_STATE(6382)] = 297121, - [SMALL_STATE(6383)] = 297139, - [SMALL_STATE(6384)] = 297157, - [SMALL_STATE(6385)] = 297175, - [SMALL_STATE(6386)] = 297193, - [SMALL_STATE(6387)] = 297211, - [SMALL_STATE(6388)] = 297229, - [SMALL_STATE(6389)] = 297247, - [SMALL_STATE(6390)] = 297265, - [SMALL_STATE(6391)] = 297283, - [SMALL_STATE(6392)] = 297301, - [SMALL_STATE(6393)] = 297319, - [SMALL_STATE(6394)] = 297337, - [SMALL_STATE(6395)] = 297355, - [SMALL_STATE(6396)] = 297373, - [SMALL_STATE(6397)] = 297391, - [SMALL_STATE(6398)] = 297409, - [SMALL_STATE(6399)] = 297427, - [SMALL_STATE(6400)] = 297445, - [SMALL_STATE(6401)] = 297463, - [SMALL_STATE(6402)] = 297481, - [SMALL_STATE(6403)] = 297499, - [SMALL_STATE(6404)] = 297517, - [SMALL_STATE(6405)] = 297535, - [SMALL_STATE(6406)] = 297553, - [SMALL_STATE(6407)] = 297571, - [SMALL_STATE(6408)] = 297589, - [SMALL_STATE(6409)] = 297607, - [SMALL_STATE(6410)] = 297625, - [SMALL_STATE(6411)] = 297643, - [SMALL_STATE(6412)] = 297661, - [SMALL_STATE(6413)] = 297679, - [SMALL_STATE(6414)] = 297697, - [SMALL_STATE(6415)] = 297715, - [SMALL_STATE(6416)] = 297733, - [SMALL_STATE(6417)] = 297751, - [SMALL_STATE(6418)] = 297769, - [SMALL_STATE(6419)] = 297787, - [SMALL_STATE(6420)] = 297805, - [SMALL_STATE(6421)] = 297823, - [SMALL_STATE(6422)] = 297841, - [SMALL_STATE(6423)] = 297859, - [SMALL_STATE(6424)] = 297877, - [SMALL_STATE(6425)] = 297893, - [SMALL_STATE(6426)] = 297911, - [SMALL_STATE(6427)] = 297929, - [SMALL_STATE(6428)] = 297947, - [SMALL_STATE(6429)] = 297965, - [SMALL_STATE(6430)] = 297983, - [SMALL_STATE(6431)] = 298001, - [SMALL_STATE(6432)] = 298019, - [SMALL_STATE(6433)] = 298037, - [SMALL_STATE(6434)] = 298055, - [SMALL_STATE(6435)] = 298073, - [SMALL_STATE(6436)] = 298091, - [SMALL_STATE(6437)] = 298109, - [SMALL_STATE(6438)] = 298127, - [SMALL_STATE(6439)] = 298143, - [SMALL_STATE(6440)] = 298159, - [SMALL_STATE(6441)] = 298177, - [SMALL_STATE(6442)] = 298195, - [SMALL_STATE(6443)] = 298209, - [SMALL_STATE(6444)] = 298227, - [SMALL_STATE(6445)] = 298245, - [SMALL_STATE(6446)] = 298263, - [SMALL_STATE(6447)] = 298281, - [SMALL_STATE(6448)] = 298299, - [SMALL_STATE(6449)] = 298317, - [SMALL_STATE(6450)] = 298335, - [SMALL_STATE(6451)] = 298353, - [SMALL_STATE(6452)] = 298371, - [SMALL_STATE(6453)] = 298389, - [SMALL_STATE(6454)] = 298407, - [SMALL_STATE(6455)] = 298425, - [SMALL_STATE(6456)] = 298443, - [SMALL_STATE(6457)] = 298461, - [SMALL_STATE(6458)] = 298479, - [SMALL_STATE(6459)] = 298495, - [SMALL_STATE(6460)] = 298513, - [SMALL_STATE(6461)] = 298531, - [SMALL_STATE(6462)] = 298549, - [SMALL_STATE(6463)] = 298567, - [SMALL_STATE(6464)] = 298585, - [SMALL_STATE(6465)] = 298603, - [SMALL_STATE(6466)] = 298621, - [SMALL_STATE(6467)] = 298639, - [SMALL_STATE(6468)] = 298657, - [SMALL_STATE(6469)] = 298675, - [SMALL_STATE(6470)] = 298693, - [SMALL_STATE(6471)] = 298711, - [SMALL_STATE(6472)] = 298729, - [SMALL_STATE(6473)] = 298747, - [SMALL_STATE(6474)] = 298765, - [SMALL_STATE(6475)] = 298783, - [SMALL_STATE(6476)] = 298801, - [SMALL_STATE(6477)] = 298819, - [SMALL_STATE(6478)] = 298837, - [SMALL_STATE(6479)] = 298855, - [SMALL_STATE(6480)] = 298873, - [SMALL_STATE(6481)] = 298891, - [SMALL_STATE(6482)] = 298909, - [SMALL_STATE(6483)] = 298927, - [SMALL_STATE(6484)] = 298945, - [SMALL_STATE(6485)] = 298963, - [SMALL_STATE(6486)] = 298981, - [SMALL_STATE(6487)] = 298999, - [SMALL_STATE(6488)] = 299017, - [SMALL_STATE(6489)] = 299035, - [SMALL_STATE(6490)] = 299053, - [SMALL_STATE(6491)] = 299071, - [SMALL_STATE(6492)] = 299089, - [SMALL_STATE(6493)] = 299107, - [SMALL_STATE(6494)] = 299125, - [SMALL_STATE(6495)] = 299143, - [SMALL_STATE(6496)] = 299161, - [SMALL_STATE(6497)] = 299179, - [SMALL_STATE(6498)] = 299197, - [SMALL_STATE(6499)] = 299215, - [SMALL_STATE(6500)] = 299233, - [SMALL_STATE(6501)] = 299251, - [SMALL_STATE(6502)] = 299269, - [SMALL_STATE(6503)] = 299287, - [SMALL_STATE(6504)] = 299305, - [SMALL_STATE(6505)] = 299323, - [SMALL_STATE(6506)] = 299341, - [SMALL_STATE(6507)] = 299359, - [SMALL_STATE(6508)] = 299377, - [SMALL_STATE(6509)] = 299395, - [SMALL_STATE(6510)] = 299413, - [SMALL_STATE(6511)] = 299431, - [SMALL_STATE(6512)] = 299449, - [SMALL_STATE(6513)] = 299467, - [SMALL_STATE(6514)] = 299485, - [SMALL_STATE(6515)] = 299503, - [SMALL_STATE(6516)] = 299521, - [SMALL_STATE(6517)] = 299539, - [SMALL_STATE(6518)] = 299557, - [SMALL_STATE(6519)] = 299575, - [SMALL_STATE(6520)] = 299593, - [SMALL_STATE(6521)] = 299611, - [SMALL_STATE(6522)] = 299629, - [SMALL_STATE(6523)] = 299647, - [SMALL_STATE(6524)] = 299665, - [SMALL_STATE(6525)] = 299683, - [SMALL_STATE(6526)] = 299699, - [SMALL_STATE(6527)] = 299717, - [SMALL_STATE(6528)] = 299735, - [SMALL_STATE(6529)] = 299753, - [SMALL_STATE(6530)] = 299771, - [SMALL_STATE(6531)] = 299789, - [SMALL_STATE(6532)] = 299807, - [SMALL_STATE(6533)] = 299825, - [SMALL_STATE(6534)] = 299843, - [SMALL_STATE(6535)] = 299861, - [SMALL_STATE(6536)] = 299879, - [SMALL_STATE(6537)] = 299897, - [SMALL_STATE(6538)] = 299915, - [SMALL_STATE(6539)] = 299933, - [SMALL_STATE(6540)] = 299951, - [SMALL_STATE(6541)] = 299969, - [SMALL_STATE(6542)] = 299987, - [SMALL_STATE(6543)] = 300005, - [SMALL_STATE(6544)] = 300023, - [SMALL_STATE(6545)] = 300041, - [SMALL_STATE(6546)] = 300059, - [SMALL_STATE(6547)] = 300077, - [SMALL_STATE(6548)] = 300095, - [SMALL_STATE(6549)] = 300113, - [SMALL_STATE(6550)] = 300131, - [SMALL_STATE(6551)] = 300149, - [SMALL_STATE(6552)] = 300167, - [SMALL_STATE(6553)] = 300185, - [SMALL_STATE(6554)] = 300203, - [SMALL_STATE(6555)] = 300221, - [SMALL_STATE(6556)] = 300239, - [SMALL_STATE(6557)] = 300257, - [SMALL_STATE(6558)] = 300275, - [SMALL_STATE(6559)] = 300293, - [SMALL_STATE(6560)] = 300311, - [SMALL_STATE(6561)] = 300329, - [SMALL_STATE(6562)] = 300347, - [SMALL_STATE(6563)] = 300365, - [SMALL_STATE(6564)] = 300383, - [SMALL_STATE(6565)] = 300401, - [SMALL_STATE(6566)] = 300419, - [SMALL_STATE(6567)] = 300437, - [SMALL_STATE(6568)] = 300455, - [SMALL_STATE(6569)] = 300473, - [SMALL_STATE(6570)] = 300491, - [SMALL_STATE(6571)] = 300509, - [SMALL_STATE(6572)] = 300527, - [SMALL_STATE(6573)] = 300545, - [SMALL_STATE(6574)] = 300563, - [SMALL_STATE(6575)] = 300581, - [SMALL_STATE(6576)] = 300599, - [SMALL_STATE(6577)] = 300617, - [SMALL_STATE(6578)] = 300635, - [SMALL_STATE(6579)] = 300653, - [SMALL_STATE(6580)] = 300671, - [SMALL_STATE(6581)] = 300689, - [SMALL_STATE(6582)] = 300707, - [SMALL_STATE(6583)] = 300725, - [SMALL_STATE(6584)] = 300743, - [SMALL_STATE(6585)] = 300761, - [SMALL_STATE(6586)] = 300779, - [SMALL_STATE(6587)] = 300797, + [SMALL_STATE(6264)] = 295033, + [SMALL_STATE(6265)] = 295051, + [SMALL_STATE(6266)] = 295065, + [SMALL_STATE(6267)] = 295083, + [SMALL_STATE(6268)] = 295101, + [SMALL_STATE(6269)] = 295119, + [SMALL_STATE(6270)] = 295137, + [SMALL_STATE(6271)] = 295155, + [SMALL_STATE(6272)] = 295173, + [SMALL_STATE(6273)] = 295191, + [SMALL_STATE(6274)] = 295209, + [SMALL_STATE(6275)] = 295227, + [SMALL_STATE(6276)] = 295245, + [SMALL_STATE(6277)] = 295263, + [SMALL_STATE(6278)] = 295281, + [SMALL_STATE(6279)] = 295299, + [SMALL_STATE(6280)] = 295317, + [SMALL_STATE(6281)] = 295335, + [SMALL_STATE(6282)] = 295353, + [SMALL_STATE(6283)] = 295371, + [SMALL_STATE(6284)] = 295389, + [SMALL_STATE(6285)] = 295407, + [SMALL_STATE(6286)] = 295425, + [SMALL_STATE(6287)] = 295443, + [SMALL_STATE(6288)] = 295461, + [SMALL_STATE(6289)] = 295479, + [SMALL_STATE(6290)] = 295497, + [SMALL_STATE(6291)] = 295515, + [SMALL_STATE(6292)] = 295533, + [SMALL_STATE(6293)] = 295551, + [SMALL_STATE(6294)] = 295569, + [SMALL_STATE(6295)] = 295587, + [SMALL_STATE(6296)] = 295605, + [SMALL_STATE(6297)] = 295623, + [SMALL_STATE(6298)] = 295641, + [SMALL_STATE(6299)] = 295659, + [SMALL_STATE(6300)] = 295677, + [SMALL_STATE(6301)] = 295695, + [SMALL_STATE(6302)] = 295713, + [SMALL_STATE(6303)] = 295731, + [SMALL_STATE(6304)] = 295749, + [SMALL_STATE(6305)] = 295767, + [SMALL_STATE(6306)] = 295785, + [SMALL_STATE(6307)] = 295803, + [SMALL_STATE(6308)] = 295821, + [SMALL_STATE(6309)] = 295839, + [SMALL_STATE(6310)] = 295857, + [SMALL_STATE(6311)] = 295875, + [SMALL_STATE(6312)] = 295893, + [SMALL_STATE(6313)] = 295911, + [SMALL_STATE(6314)] = 295929, + [SMALL_STATE(6315)] = 295947, + [SMALL_STATE(6316)] = 295965, + [SMALL_STATE(6317)] = 295983, + [SMALL_STATE(6318)] = 296001, + [SMALL_STATE(6319)] = 296019, + [SMALL_STATE(6320)] = 296037, + [SMALL_STATE(6321)] = 296055, + [SMALL_STATE(6322)] = 296073, + [SMALL_STATE(6323)] = 296091, + [SMALL_STATE(6324)] = 296109, + [SMALL_STATE(6325)] = 296127, + [SMALL_STATE(6326)] = 296145, + [SMALL_STATE(6327)] = 296163, + [SMALL_STATE(6328)] = 296181, + [SMALL_STATE(6329)] = 296199, + [SMALL_STATE(6330)] = 296217, + [SMALL_STATE(6331)] = 296235, + [SMALL_STATE(6332)] = 296253, + [SMALL_STATE(6333)] = 296271, + [SMALL_STATE(6334)] = 296289, + [SMALL_STATE(6335)] = 296307, + [SMALL_STATE(6336)] = 296325, + [SMALL_STATE(6337)] = 296343, + [SMALL_STATE(6338)] = 296359, + [SMALL_STATE(6339)] = 296377, + [SMALL_STATE(6340)] = 296395, + [SMALL_STATE(6341)] = 296413, + [SMALL_STATE(6342)] = 296427, + [SMALL_STATE(6343)] = 296445, + [SMALL_STATE(6344)] = 296463, + [SMALL_STATE(6345)] = 296479, + [SMALL_STATE(6346)] = 296495, + [SMALL_STATE(6347)] = 296513, + [SMALL_STATE(6348)] = 296531, + [SMALL_STATE(6349)] = 296549, + [SMALL_STATE(6350)] = 296567, + [SMALL_STATE(6351)] = 296585, + [SMALL_STATE(6352)] = 296603, + [SMALL_STATE(6353)] = 296621, + [SMALL_STATE(6354)] = 296639, + [SMALL_STATE(6355)] = 296657, + [SMALL_STATE(6356)] = 296675, + [SMALL_STATE(6357)] = 296693, + [SMALL_STATE(6358)] = 296711, + [SMALL_STATE(6359)] = 296729, + [SMALL_STATE(6360)] = 296747, + [SMALL_STATE(6361)] = 296765, + [SMALL_STATE(6362)] = 296783, + [SMALL_STATE(6363)] = 296801, + [SMALL_STATE(6364)] = 296819, + [SMALL_STATE(6365)] = 296837, + [SMALL_STATE(6366)] = 296855, + [SMALL_STATE(6367)] = 296873, + [SMALL_STATE(6368)] = 296891, + [SMALL_STATE(6369)] = 296909, + [SMALL_STATE(6370)] = 296927, + [SMALL_STATE(6371)] = 296945, + [SMALL_STATE(6372)] = 296963, + [SMALL_STATE(6373)] = 296981, + [SMALL_STATE(6374)] = 296999, + [SMALL_STATE(6375)] = 297017, + [SMALL_STATE(6376)] = 297035, + [SMALL_STATE(6377)] = 297053, + [SMALL_STATE(6378)] = 297071, + [SMALL_STATE(6379)] = 297089, + [SMALL_STATE(6380)] = 297107, + [SMALL_STATE(6381)] = 297125, + [SMALL_STATE(6382)] = 297143, + [SMALL_STATE(6383)] = 297161, + [SMALL_STATE(6384)] = 297179, + [SMALL_STATE(6385)] = 297197, + [SMALL_STATE(6386)] = 297215, + [SMALL_STATE(6387)] = 297233, + [SMALL_STATE(6388)] = 297251, + [SMALL_STATE(6389)] = 297269, + [SMALL_STATE(6390)] = 297287, + [SMALL_STATE(6391)] = 297305, + [SMALL_STATE(6392)] = 297323, + [SMALL_STATE(6393)] = 297341, + [SMALL_STATE(6394)] = 297359, + [SMALL_STATE(6395)] = 297377, + [SMALL_STATE(6396)] = 297395, + [SMALL_STATE(6397)] = 297413, + [SMALL_STATE(6398)] = 297431, + [SMALL_STATE(6399)] = 297445, + [SMALL_STATE(6400)] = 297463, + [SMALL_STATE(6401)] = 297481, + [SMALL_STATE(6402)] = 297499, + [SMALL_STATE(6403)] = 297517, + [SMALL_STATE(6404)] = 297535, + [SMALL_STATE(6405)] = 297553, + [SMALL_STATE(6406)] = 297571, + [SMALL_STATE(6407)] = 297589, + [SMALL_STATE(6408)] = 297607, + [SMALL_STATE(6409)] = 297625, + [SMALL_STATE(6410)] = 297643, + [SMALL_STATE(6411)] = 297661, + [SMALL_STATE(6412)] = 297679, + [SMALL_STATE(6413)] = 297697, + [SMALL_STATE(6414)] = 297715, + [SMALL_STATE(6415)] = 297733, + [SMALL_STATE(6416)] = 297751, + [SMALL_STATE(6417)] = 297769, + [SMALL_STATE(6418)] = 297787, + [SMALL_STATE(6419)] = 297805, + [SMALL_STATE(6420)] = 297823, + [SMALL_STATE(6421)] = 297841, + [SMALL_STATE(6422)] = 297859, + [SMALL_STATE(6423)] = 297877, + [SMALL_STATE(6424)] = 297895, + [SMALL_STATE(6425)] = 297913, + [SMALL_STATE(6426)] = 297931, + [SMALL_STATE(6427)] = 297949, + [SMALL_STATE(6428)] = 297967, + [SMALL_STATE(6429)] = 297985, + [SMALL_STATE(6430)] = 298003, + [SMALL_STATE(6431)] = 298021, + [SMALL_STATE(6432)] = 298039, + [SMALL_STATE(6433)] = 298057, + [SMALL_STATE(6434)] = 298075, + [SMALL_STATE(6435)] = 298093, + [SMALL_STATE(6436)] = 298111, + [SMALL_STATE(6437)] = 298129, + [SMALL_STATE(6438)] = 298147, + [SMALL_STATE(6439)] = 298165, + [SMALL_STATE(6440)] = 298183, + [SMALL_STATE(6441)] = 298201, + [SMALL_STATE(6442)] = 298219, + [SMALL_STATE(6443)] = 298237, + [SMALL_STATE(6444)] = 298255, + [SMALL_STATE(6445)] = 298273, + [SMALL_STATE(6446)] = 298291, + [SMALL_STATE(6447)] = 298309, + [SMALL_STATE(6448)] = 298327, + [SMALL_STATE(6449)] = 298345, + [SMALL_STATE(6450)] = 298363, + [SMALL_STATE(6451)] = 298381, + [SMALL_STATE(6452)] = 298399, + [SMALL_STATE(6453)] = 298417, + [SMALL_STATE(6454)] = 298435, + [SMALL_STATE(6455)] = 298453, + [SMALL_STATE(6456)] = 298469, + [SMALL_STATE(6457)] = 298483, + [SMALL_STATE(6458)] = 298501, + [SMALL_STATE(6459)] = 298519, + [SMALL_STATE(6460)] = 298537, + [SMALL_STATE(6461)] = 298555, + [SMALL_STATE(6462)] = 298573, + [SMALL_STATE(6463)] = 298591, + [SMALL_STATE(6464)] = 298609, + [SMALL_STATE(6465)] = 298627, + [SMALL_STATE(6466)] = 298645, + [SMALL_STATE(6467)] = 298663, + [SMALL_STATE(6468)] = 298681, + [SMALL_STATE(6469)] = 298699, + [SMALL_STATE(6470)] = 298717, + [SMALL_STATE(6471)] = 298735, + [SMALL_STATE(6472)] = 298753, + [SMALL_STATE(6473)] = 298771, + [SMALL_STATE(6474)] = 298789, + [SMALL_STATE(6475)] = 298807, + [SMALL_STATE(6476)] = 298825, + [SMALL_STATE(6477)] = 298843, + [SMALL_STATE(6478)] = 298861, + [SMALL_STATE(6479)] = 298879, + [SMALL_STATE(6480)] = 298897, + [SMALL_STATE(6481)] = 298915, + [SMALL_STATE(6482)] = 298933, + [SMALL_STATE(6483)] = 298951, + [SMALL_STATE(6484)] = 298965, + [SMALL_STATE(6485)] = 298983, + [SMALL_STATE(6486)] = 299001, + [SMALL_STATE(6487)] = 299019, + [SMALL_STATE(6488)] = 299037, + [SMALL_STATE(6489)] = 299055, + [SMALL_STATE(6490)] = 299073, + [SMALL_STATE(6491)] = 299091, + [SMALL_STATE(6492)] = 299109, + [SMALL_STATE(6493)] = 299127, + [SMALL_STATE(6494)] = 299145, + [SMALL_STATE(6495)] = 299163, + [SMALL_STATE(6496)] = 299181, + [SMALL_STATE(6497)] = 299199, + [SMALL_STATE(6498)] = 299217, + [SMALL_STATE(6499)] = 299235, + [SMALL_STATE(6500)] = 299253, + [SMALL_STATE(6501)] = 299271, + [SMALL_STATE(6502)] = 299289, + [SMALL_STATE(6503)] = 299307, + [SMALL_STATE(6504)] = 299325, + [SMALL_STATE(6505)] = 299343, + [SMALL_STATE(6506)] = 299361, + [SMALL_STATE(6507)] = 299379, + [SMALL_STATE(6508)] = 299397, + [SMALL_STATE(6509)] = 299415, + [SMALL_STATE(6510)] = 299433, + [SMALL_STATE(6511)] = 299451, + [SMALL_STATE(6512)] = 299469, + [SMALL_STATE(6513)] = 299487, + [SMALL_STATE(6514)] = 299501, + [SMALL_STATE(6515)] = 299519, + [SMALL_STATE(6516)] = 299537, + [SMALL_STATE(6517)] = 299555, + [SMALL_STATE(6518)] = 299573, + [SMALL_STATE(6519)] = 299591, + [SMALL_STATE(6520)] = 299609, + [SMALL_STATE(6521)] = 299625, + [SMALL_STATE(6522)] = 299643, + [SMALL_STATE(6523)] = 299661, + [SMALL_STATE(6524)] = 299679, + [SMALL_STATE(6525)] = 299697, + [SMALL_STATE(6526)] = 299715, + [SMALL_STATE(6527)] = 299733, + [SMALL_STATE(6528)] = 299751, + [SMALL_STATE(6529)] = 299769, + [SMALL_STATE(6530)] = 299787, + [SMALL_STATE(6531)] = 299805, + [SMALL_STATE(6532)] = 299823, + [SMALL_STATE(6533)] = 299841, + [SMALL_STATE(6534)] = 299859, + [SMALL_STATE(6535)] = 299877, + [SMALL_STATE(6536)] = 299895, + [SMALL_STATE(6537)] = 299913, + [SMALL_STATE(6538)] = 299931, + [SMALL_STATE(6539)] = 299949, + [SMALL_STATE(6540)] = 299967, + [SMALL_STATE(6541)] = 299985, + [SMALL_STATE(6542)] = 300003, + [SMALL_STATE(6543)] = 300017, + [SMALL_STATE(6544)] = 300035, + [SMALL_STATE(6545)] = 300053, + [SMALL_STATE(6546)] = 300071, + [SMALL_STATE(6547)] = 300085, + [SMALL_STATE(6548)] = 300103, + [SMALL_STATE(6549)] = 300121, + [SMALL_STATE(6550)] = 300139, + [SMALL_STATE(6551)] = 300157, + [SMALL_STATE(6552)] = 300175, + [SMALL_STATE(6553)] = 300193, + [SMALL_STATE(6554)] = 300211, + [SMALL_STATE(6555)] = 300229, + [SMALL_STATE(6556)] = 300247, + [SMALL_STATE(6557)] = 300265, + [SMALL_STATE(6558)] = 300283, + [SMALL_STATE(6559)] = 300301, + [SMALL_STATE(6560)] = 300319, + [SMALL_STATE(6561)] = 300337, + [SMALL_STATE(6562)] = 300355, + [SMALL_STATE(6563)] = 300373, + [SMALL_STATE(6564)] = 300391, + [SMALL_STATE(6565)] = 300409, + [SMALL_STATE(6566)] = 300427, + [SMALL_STATE(6567)] = 300445, + [SMALL_STATE(6568)] = 300459, + [SMALL_STATE(6569)] = 300477, + [SMALL_STATE(6570)] = 300495, + [SMALL_STATE(6571)] = 300513, + [SMALL_STATE(6572)] = 300531, + [SMALL_STATE(6573)] = 300549, + [SMALL_STATE(6574)] = 300567, + [SMALL_STATE(6575)] = 300585, + [SMALL_STATE(6576)] = 300603, + [SMALL_STATE(6577)] = 300621, + [SMALL_STATE(6578)] = 300639, + [SMALL_STATE(6579)] = 300657, + [SMALL_STATE(6580)] = 300675, + [SMALL_STATE(6581)] = 300693, + [SMALL_STATE(6582)] = 300711, + [SMALL_STATE(6583)] = 300729, + [SMALL_STATE(6584)] = 300745, + [SMALL_STATE(6585)] = 300763, + [SMALL_STATE(6586)] = 300781, + [SMALL_STATE(6587)] = 300799, [SMALL_STATE(6588)] = 300815, - [SMALL_STATE(6589)] = 300833, - [SMALL_STATE(6590)] = 300851, - [SMALL_STATE(6591)] = 300869, - [SMALL_STATE(6592)] = 300887, - [SMALL_STATE(6593)] = 300905, - [SMALL_STATE(6594)] = 300923, - [SMALL_STATE(6595)] = 300941, - [SMALL_STATE(6596)] = 300959, - [SMALL_STATE(6597)] = 300977, - [SMALL_STATE(6598)] = 300995, - [SMALL_STATE(6599)] = 301013, - [SMALL_STATE(6600)] = 301031, - [SMALL_STATE(6601)] = 301049, - [SMALL_STATE(6602)] = 301067, - [SMALL_STATE(6603)] = 301085, - [SMALL_STATE(6604)] = 301103, - [SMALL_STATE(6605)] = 301121, - [SMALL_STATE(6606)] = 301139, - [SMALL_STATE(6607)] = 301157, - [SMALL_STATE(6608)] = 301175, - [SMALL_STATE(6609)] = 301193, - [SMALL_STATE(6610)] = 301211, - [SMALL_STATE(6611)] = 301229, - [SMALL_STATE(6612)] = 301247, - [SMALL_STATE(6613)] = 301265, - [SMALL_STATE(6614)] = 301283, - [SMALL_STATE(6615)] = 301301, - [SMALL_STATE(6616)] = 301319, - [SMALL_STATE(6617)] = 301337, - [SMALL_STATE(6618)] = 301355, - [SMALL_STATE(6619)] = 301373, - [SMALL_STATE(6620)] = 301391, - [SMALL_STATE(6621)] = 301409, - [SMALL_STATE(6622)] = 301427, - [SMALL_STATE(6623)] = 301445, - [SMALL_STATE(6624)] = 301463, - [SMALL_STATE(6625)] = 301481, - [SMALL_STATE(6626)] = 301499, - [SMALL_STATE(6627)] = 301517, - [SMALL_STATE(6628)] = 301535, - [SMALL_STATE(6629)] = 301553, - [SMALL_STATE(6630)] = 301571, - [SMALL_STATE(6631)] = 301589, - [SMALL_STATE(6632)] = 301607, - [SMALL_STATE(6633)] = 301621, - [SMALL_STATE(6634)] = 301635, - [SMALL_STATE(6635)] = 301653, - [SMALL_STATE(6636)] = 301671, + [SMALL_STATE(6589)] = 300831, + [SMALL_STATE(6590)] = 300849, + [SMALL_STATE(6591)] = 300867, + [SMALL_STATE(6592)] = 300885, + [SMALL_STATE(6593)] = 300899, + [SMALL_STATE(6594)] = 300917, + [SMALL_STATE(6595)] = 300935, + [SMALL_STATE(6596)] = 300953, + [SMALL_STATE(6597)] = 300971, + [SMALL_STATE(6598)] = 300989, + [SMALL_STATE(6599)] = 301007, + [SMALL_STATE(6600)] = 301025, + [SMALL_STATE(6601)] = 301043, + [SMALL_STATE(6602)] = 301061, + [SMALL_STATE(6603)] = 301079, + [SMALL_STATE(6604)] = 301097, + [SMALL_STATE(6605)] = 301115, + [SMALL_STATE(6606)] = 301133, + [SMALL_STATE(6607)] = 301151, + [SMALL_STATE(6608)] = 301169, + [SMALL_STATE(6609)] = 301187, + [SMALL_STATE(6610)] = 301205, + [SMALL_STATE(6611)] = 301223, + [SMALL_STATE(6612)] = 301241, + [SMALL_STATE(6613)] = 301259, + [SMALL_STATE(6614)] = 301277, + [SMALL_STATE(6615)] = 301295, + [SMALL_STATE(6616)] = 301313, + [SMALL_STATE(6617)] = 301331, + [SMALL_STATE(6618)] = 301349, + [SMALL_STATE(6619)] = 301367, + [SMALL_STATE(6620)] = 301385, + [SMALL_STATE(6621)] = 301403, + [SMALL_STATE(6622)] = 301421, + [SMALL_STATE(6623)] = 301439, + [SMALL_STATE(6624)] = 301457, + [SMALL_STATE(6625)] = 301475, + [SMALL_STATE(6626)] = 301493, + [SMALL_STATE(6627)] = 301511, + [SMALL_STATE(6628)] = 301529, + [SMALL_STATE(6629)] = 301547, + [SMALL_STATE(6630)] = 301565, + [SMALL_STATE(6631)] = 301583, + [SMALL_STATE(6632)] = 301601, + [SMALL_STATE(6633)] = 301619, + [SMALL_STATE(6634)] = 301637, + [SMALL_STATE(6635)] = 301655, + [SMALL_STATE(6636)] = 301673, [SMALL_STATE(6637)] = 301689, [SMALL_STATE(6638)] = 301707, [SMALL_STATE(6639)] = 301725, @@ -430719,24 +430485,24 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6728)] = 303327, [SMALL_STATE(6729)] = 303345, [SMALL_STATE(6730)] = 303363, - [SMALL_STATE(6731)] = 303381, - [SMALL_STATE(6732)] = 303399, - [SMALL_STATE(6733)] = 303417, - [SMALL_STATE(6734)] = 303435, - [SMALL_STATE(6735)] = 303453, - [SMALL_STATE(6736)] = 303471, - [SMALL_STATE(6737)] = 303489, - [SMALL_STATE(6738)] = 303507, - [SMALL_STATE(6739)] = 303525, - [SMALL_STATE(6740)] = 303543, - [SMALL_STATE(6741)] = 303561, - [SMALL_STATE(6742)] = 303579, - [SMALL_STATE(6743)] = 303597, - [SMALL_STATE(6744)] = 303615, - [SMALL_STATE(6745)] = 303633, - [SMALL_STATE(6746)] = 303651, - [SMALL_STATE(6747)] = 303669, - [SMALL_STATE(6748)] = 303687, + [SMALL_STATE(6731)] = 303379, + [SMALL_STATE(6732)] = 303397, + [SMALL_STATE(6733)] = 303415, + [SMALL_STATE(6734)] = 303433, + [SMALL_STATE(6735)] = 303451, + [SMALL_STATE(6736)] = 303469, + [SMALL_STATE(6737)] = 303487, + [SMALL_STATE(6738)] = 303505, + [SMALL_STATE(6739)] = 303523, + [SMALL_STATE(6740)] = 303541, + [SMALL_STATE(6741)] = 303559, + [SMALL_STATE(6742)] = 303577, + [SMALL_STATE(6743)] = 303595, + [SMALL_STATE(6744)] = 303613, + [SMALL_STATE(6745)] = 303631, + [SMALL_STATE(6746)] = 303649, + [SMALL_STATE(6747)] = 303667, + [SMALL_STATE(6748)] = 303685, [SMALL_STATE(6749)] = 303703, [SMALL_STATE(6750)] = 303721, [SMALL_STATE(6751)] = 303739, @@ -430745,18 +430511,18 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6754)] = 303793, [SMALL_STATE(6755)] = 303811, [SMALL_STATE(6756)] = 303829, - [SMALL_STATE(6757)] = 303844, - [SMALL_STATE(6758)] = 303859, - [SMALL_STATE(6759)] = 303874, - [SMALL_STATE(6760)] = 303889, - [SMALL_STATE(6761)] = 303902, - [SMALL_STATE(6762)] = 303917, - [SMALL_STATE(6763)] = 303932, - [SMALL_STATE(6764)] = 303947, - [SMALL_STATE(6765)] = 303962, - [SMALL_STATE(6766)] = 303977, - [SMALL_STATE(6767)] = 303992, - [SMALL_STATE(6768)] = 304007, + [SMALL_STATE(6757)] = 303842, + [SMALL_STATE(6758)] = 303857, + [SMALL_STATE(6759)] = 303872, + [SMALL_STATE(6760)] = 303887, + [SMALL_STATE(6761)] = 303900, + [SMALL_STATE(6762)] = 303915, + [SMALL_STATE(6763)] = 303930, + [SMALL_STATE(6764)] = 303945, + [SMALL_STATE(6765)] = 303960, + [SMALL_STATE(6766)] = 303975, + [SMALL_STATE(6767)] = 303990, + [SMALL_STATE(6768)] = 304005, [SMALL_STATE(6769)] = 304020, [SMALL_STATE(6770)] = 304035, [SMALL_STATE(6771)] = 304050, @@ -430764,13 +430530,13 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6773)] = 304080, [SMALL_STATE(6774)] = 304095, [SMALL_STATE(6775)] = 304110, - [SMALL_STATE(6776)] = 304123, - [SMALL_STATE(6777)] = 304138, - [SMALL_STATE(6778)] = 304153, - [SMALL_STATE(6779)] = 304168, - [SMALL_STATE(6780)] = 304183, - [SMALL_STATE(6781)] = 304198, - [SMALL_STATE(6782)] = 304213, + [SMALL_STATE(6776)] = 304125, + [SMALL_STATE(6777)] = 304140, + [SMALL_STATE(6778)] = 304155, + [SMALL_STATE(6779)] = 304170, + [SMALL_STATE(6780)] = 304185, + [SMALL_STATE(6781)] = 304200, + [SMALL_STATE(6782)] = 304215, [SMALL_STATE(6783)] = 304228, [SMALL_STATE(6784)] = 304243, [SMALL_STATE(6785)] = 304258, @@ -430789,45 +430555,45 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6798)] = 304453, [SMALL_STATE(6799)] = 304468, [SMALL_STATE(6800)] = 304483, - [SMALL_STATE(6801)] = 304498, - [SMALL_STATE(6802)] = 304513, - [SMALL_STATE(6803)] = 304528, - [SMALL_STATE(6804)] = 304541, - [SMALL_STATE(6805)] = 304556, - [SMALL_STATE(6806)] = 304571, - [SMALL_STATE(6807)] = 304586, - [SMALL_STATE(6808)] = 304601, - [SMALL_STATE(6809)] = 304616, - [SMALL_STATE(6810)] = 304631, - [SMALL_STATE(6811)] = 304644, - [SMALL_STATE(6812)] = 304657, - [SMALL_STATE(6813)] = 304672, - [SMALL_STATE(6814)] = 304687, - [SMALL_STATE(6815)] = 304700, - [SMALL_STATE(6816)] = 304715, - [SMALL_STATE(6817)] = 304730, - [SMALL_STATE(6818)] = 304743, - [SMALL_STATE(6819)] = 304758, - [SMALL_STATE(6820)] = 304773, - [SMALL_STATE(6821)] = 304786, - [SMALL_STATE(6822)] = 304801, - [SMALL_STATE(6823)] = 304814, - [SMALL_STATE(6824)] = 304829, - [SMALL_STATE(6825)] = 304842, - [SMALL_STATE(6826)] = 304857, - [SMALL_STATE(6827)] = 304870, - [SMALL_STATE(6828)] = 304885, + [SMALL_STATE(6801)] = 304496, + [SMALL_STATE(6802)] = 304509, + [SMALL_STATE(6803)] = 304524, + [SMALL_STATE(6804)] = 304539, + [SMALL_STATE(6805)] = 304554, + [SMALL_STATE(6806)] = 304569, + [SMALL_STATE(6807)] = 304584, + [SMALL_STATE(6808)] = 304597, + [SMALL_STATE(6809)] = 304610, + [SMALL_STATE(6810)] = 304625, + [SMALL_STATE(6811)] = 304640, + [SMALL_STATE(6812)] = 304655, + [SMALL_STATE(6813)] = 304670, + [SMALL_STATE(6814)] = 304683, + [SMALL_STATE(6815)] = 304696, + [SMALL_STATE(6816)] = 304711, + [SMALL_STATE(6817)] = 304724, + [SMALL_STATE(6818)] = 304739, + [SMALL_STATE(6819)] = 304754, + [SMALL_STATE(6820)] = 304769, + [SMALL_STATE(6821)] = 304782, + [SMALL_STATE(6822)] = 304797, + [SMALL_STATE(6823)] = 304810, + [SMALL_STATE(6824)] = 304823, + [SMALL_STATE(6825)] = 304838, + [SMALL_STATE(6826)] = 304853, + [SMALL_STATE(6827)] = 304868, + [SMALL_STATE(6828)] = 304883, [SMALL_STATE(6829)] = 304898, - [SMALL_STATE(6830)] = 304911, - [SMALL_STATE(6831)] = 304926, - [SMALL_STATE(6832)] = 304941, - [SMALL_STATE(6833)] = 304956, + [SMALL_STATE(6830)] = 304913, + [SMALL_STATE(6831)] = 304928, + [SMALL_STATE(6832)] = 304943, + [SMALL_STATE(6833)] = 304958, [SMALL_STATE(6834)] = 304971, [SMALL_STATE(6835)] = 304986, - [SMALL_STATE(6836)] = 305001, - [SMALL_STATE(6837)] = 305016, - [SMALL_STATE(6838)] = 305031, - [SMALL_STATE(6839)] = 305046, + [SMALL_STATE(6836)] = 304999, + [SMALL_STATE(6837)] = 305014, + [SMALL_STATE(6838)] = 305029, + [SMALL_STATE(6839)] = 305044, [SMALL_STATE(6840)] = 305059, [SMALL_STATE(6841)] = 305074, [SMALL_STATE(6842)] = 305089, @@ -430835,13 +430601,13 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6844)] = 305119, [SMALL_STATE(6845)] = 305134, [SMALL_STATE(6846)] = 305149, - [SMALL_STATE(6847)] = 305164, - [SMALL_STATE(6848)] = 305179, - [SMALL_STATE(6849)] = 305194, - [SMALL_STATE(6850)] = 305209, - [SMALL_STATE(6851)] = 305224, - [SMALL_STATE(6852)] = 305239, - [SMALL_STATE(6853)] = 305252, + [SMALL_STATE(6847)] = 305162, + [SMALL_STATE(6848)] = 305175, + [SMALL_STATE(6849)] = 305190, + [SMALL_STATE(6850)] = 305205, + [SMALL_STATE(6851)] = 305220, + [SMALL_STATE(6852)] = 305235, + [SMALL_STATE(6853)] = 305250, [SMALL_STATE(6854)] = 305265, [SMALL_STATE(6855)] = 305277, [SMALL_STATE(6856)] = 305289, @@ -430982,420 +430748,420 @@ 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_source, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 4), [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 4), [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(6961), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1199), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(884), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1187), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(791), [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6961), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1429), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(753), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(1468), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(842), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1), [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(2234), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(2279), [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(621), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(905), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1), [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 1), [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(804), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(706), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(841), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(740), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(575), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(746), [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3082), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(459), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3242), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(748), [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(2940), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(2946), [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(761), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(557), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3579), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(651), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(4003), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(870), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(250), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(521), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(625), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2), [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), @@ -431403,2168 +431169,2168 @@ static const TSParseActionEntry ts_parse_actions[] = { [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1), [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1), SHIFT(6961), [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1, .production_id = 6), [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 11), [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 3), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 2), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1), [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4), [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3), [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3), [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3), [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4), [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 20), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 21), [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 21), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2, .production_id = 8), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2, .production_id = 8), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3, .production_id = 18), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3, .production_id = 18), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3, .production_id = 18), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3, .production_id = 18), [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 2, .production_id = 8), [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 2, .production_id = 8), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3, .production_id = 18), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3, .production_id = 18), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3, .production_id = 18), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3, .production_id = 18), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 4, .production_id = 24), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 4, .production_id = 24), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 4, .production_id = 24), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 4, .production_id = 24), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 22), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 22), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 23), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 23), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2, .production_id = 8), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2, .production_id = 8), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 23), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 23), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 22), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 22), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 4, .production_id = 24), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 4, .production_id = 24), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 4, .production_id = 24), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 4, .production_id = 24), [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1018), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1020), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1019), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1021), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 2), [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 2), [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1027), [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1028), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1030), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1034), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1032), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1033), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2, .production_id = 2), [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2, .production_id = 2), [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_dot, 2, .production_id = 11), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(331), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 3), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 3), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 4), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 4), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 12), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 12), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 12), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 12), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 4), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 4), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 3), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 3), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 2, .production_id = 13), [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 2, .production_id = 13), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1, .production_id = 2), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1, .production_id = 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 12), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 12), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 12), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 12), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, .production_id = 2), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, .production_id = 2), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 4), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 4), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 2), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 2), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 4), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 4), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2, .production_id = 14), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2, .production_id = 14), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 3), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 3), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 4), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 4), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 12), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 12), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3, .production_id = 18), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3, .production_id = 18), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3, .production_id = 18), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3, .production_id = 18), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3, .production_id = 18), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3, .production_id = 18), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3, .production_id = 18), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3, .production_id = 18), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3, .production_id = 18), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3, .production_id = 18), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 4, .production_id = 24), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 4, .production_id = 24), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 4, .production_id = 24), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 4, .production_id = 24), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 4, .production_id = 24), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 4, .production_id = 24), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 4, .production_id = 24), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 4, .production_id = 24), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 4, .production_id = 24), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 4, .production_id = 24), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, .production_id = 3), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, .production_id = 3), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 3), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 3), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 4, .production_id = 24), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 4, .production_id = 24), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 4, .production_id = 24), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 4, .production_id = 24), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(834), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2, .production_id = 5), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2, .production_id = 5), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 8), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 8), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 8), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 8), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 4, .production_id = 24), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 4, .production_id = 24), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 4, .production_id = 24), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 4, .production_id = 24), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 10), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 10), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 4, .production_id = 24), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 4, .production_id = 24), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 4, .production_id = 24), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 4, .production_id = 24), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 4, .production_id = 24), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 4, .production_id = 24), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 4, .production_id = 24), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 4, .production_id = 24), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 4, .production_id = 24), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 4, .production_id = 24), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 4, .production_id = 24), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 4, .production_id = 24), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 4, .production_id = 24), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 4, .production_id = 24), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 4, .production_id = 24), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 4, .production_id = 24), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 4, .production_id = 24), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 4, .production_id = 24), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 2, .dynamic_precedence = -1), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 2, .dynamic_precedence = -1), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 18), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 18), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 18), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 18), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__nullary_operator, 1, .production_id = 1), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__nullary_operator, 1, .production_id = 1), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 12), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 12), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 1, .dynamic_precedence = -1), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 1, .dynamic_precedence = -1), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 4, .dynamic_precedence = -1), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 4, .dynamic_precedence = -1), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 15), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 15), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 18), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 18), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 18), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 18), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3, .production_id = 18), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3, .production_id = 18), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3, .production_id = 18), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3, .production_id = 18), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 18), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 18), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 18), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 18), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 18), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 18), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 18), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 18), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3, .production_id = 18), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3, .production_id = 18), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 18), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 18), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 18), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 18), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 20), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 20), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2, .production_id = 8), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2, .production_id = 8), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2, .production_id = 8), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2, .production_id = 8), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2, .production_id = 8), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2, .production_id = 8), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, .production_id = 20), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, .production_id = 20), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2, .production_id = 8), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2, .production_id = 8), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4792), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2, .production_id = 8), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2, .production_id = 8), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 12), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 12), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 3, .production_id = 13), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 3, .production_id = 13), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 4), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 4), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 8), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 8), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 8), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 8), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2, .production_id = 8), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2, .production_id = 8), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2, .production_id = 8), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2, .production_id = 8), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 8), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 8), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 8), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 8), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 8), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 8), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 8), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 8), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2, .production_id = 8), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2, .production_id = 8), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 8), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 8), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 8), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 8), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, .production_id = 19), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, .production_id = 19), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, .production_id = 27), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, .production_id = 27), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 4, .production_id = 13), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 4, .production_id = 13), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 4), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 4), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 12), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 12), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, .production_id = 26), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, .production_id = 26), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 3, .dynamic_precedence = -1), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 3, .dynamic_precedence = -1), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 25), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 25), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, .production_id = 19), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, .production_id = 19), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(784), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, .production_id = 17), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, .production_id = 17), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [3709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4788), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4789), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 2), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1022), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(263), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(283), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1022), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(258), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 3), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4799), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 12), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 12), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 4), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 4), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 4), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 4), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 12), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 12), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2, .production_id = 14), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2, .production_id = 14), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 12), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 12), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 4), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 4), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, .production_id = 2), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, .production_id = 2), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1, .production_id = 2), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1, .production_id = 2), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, .production_id = 3), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, .production_id = 3), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 18), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 18), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 12), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 12), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2, .production_id = 5), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2, .production_id = 5), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 8), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 8), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 8), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 8), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2, .production_id = 8), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2, .production_id = 8), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 8), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 8), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 8), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 8), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 8), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 8), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 8), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 8), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 3), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 3), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2, .production_id = 8), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2, .production_id = 8), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2, .production_id = 8), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2, .production_id = 8), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 8), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 8), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, .production_id = 19), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, .production_id = 19), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 8), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 8), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2, .production_id = 8), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2, .production_id = 8), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2, .production_id = 8), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2, .production_id = 8), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2, .production_id = 8), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2, .production_id = 8), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2, .production_id = 8), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2, .production_id = 8), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2, .production_id = 8), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2, .production_id = 8), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 18), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 18), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 18), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 18), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3, .production_id = 18), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3, .production_id = 18), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 4, .production_id = 24), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 4, .production_id = 24), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__nullary_operator, 1, .production_id = 1), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__nullary_operator, 1, .production_id = 1), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 18), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 18), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 18), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 18), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 18), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 18), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3, .production_id = 18), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3, .production_id = 18), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3, .production_id = 18), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3, .production_id = 18), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 18), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 18), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 18), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 18), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3, .production_id = 18), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3, .production_id = 18), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3, .production_id = 18), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3, .production_id = 18), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3, .production_id = 18), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3, .production_id = 18), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3, .production_id = 18), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3, .production_id = 18), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3, .production_id = 18), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3, .production_id = 18), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 1, .dynamic_precedence = -1), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 1, .dynamic_precedence = -1), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 4, .production_id = 24), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 4, .production_id = 24), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 4, .production_id = 24), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 4, .production_id = 24), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 4, .production_id = 24), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 4, .production_id = 24), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 4, .production_id = 24), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 4, .production_id = 24), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 4, .production_id = 24), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 4, .production_id = 24), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 4, .production_id = 24), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 4, .production_id = 24), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 8), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 8), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 8), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 8), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 4, .production_id = 24), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 4, .production_id = 24), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 4, .production_id = 24), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 4, .production_id = 24), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 4, .production_id = 24), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 4, .production_id = 24), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 4, .production_id = 24), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 4, .production_id = 24), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 4, .production_id = 24), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 4, .production_id = 24), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 4, .production_id = 24), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 4, .production_id = 24), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 4, .production_id = 24), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 4, .production_id = 24), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 4, .production_id = 24), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 4, .production_id = 24), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 4, .production_id = 24), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 4, .production_id = 24), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 15), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 15), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 10), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 10), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 18), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 18), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 18), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 18), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 4, .production_id = 24), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 4, .production_id = 24), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 4, .production_id = 24), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 4, .production_id = 24), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 3, .dynamic_precedence = -1), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 3, .dynamic_precedence = -1), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 20), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 20), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, .production_id = 20), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, .production_id = 20), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 12), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 12), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 3, .production_id = 13), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 3, .production_id = 13), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 4), + [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 4), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 4, .dynamic_precedence = -1), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 4, .dynamic_precedence = -1), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, .production_id = 19), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, .production_id = 19), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 2, .dynamic_precedence = -1), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 2, .dynamic_precedence = -1), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(521), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, .production_id = 27), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, .production_id = 27), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 25), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 25), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 4, .production_id = 13), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 4, .production_id = 13), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 4), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 4), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4801), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 12), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 12), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, .production_id = 26), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, .production_id = 26), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(512), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4797), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, .production_id = 17), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, .production_id = 17), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 3), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(283), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1020), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(258), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1020), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(263), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 2), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4814), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4818), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4801), - [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(572), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(593), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4793), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4800), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(608), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(605), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4818), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(767), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4809), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(723), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [4520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4790), - [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1032), - [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(348), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4791), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1032), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(349), - [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4814), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(601), - [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(699), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4807), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1029), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(352), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4804), - [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1029), - [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(346), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4784), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4821), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4796), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4819), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [4989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4813), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(306), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4782), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 1), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), - [5128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), - [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT(306), - [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, .production_id = 9), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses_with_guard, 3, .production_id = 20), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses_with_guard, 3, .dynamic_precedence = 1, .production_id = 20), - [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4792), + [4046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(584), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(590), + [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4786), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4803), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4812), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(599), + [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4789), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4820), + [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(554), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(566), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(526), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1034), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(346), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1034), + [4618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(352), + [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4808), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [4674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(532), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4790), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1029), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(348), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1029), + [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(349), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [4776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4809), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4782), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(579), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4794), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4807), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4806), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4810), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4784), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4815), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), + [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT(281), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(281), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 1), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, .production_id = 9), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses_with_guard, 3, .dynamic_precedence = 1, .production_id = 20), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses_with_guard, 3, .production_id = 20), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), @@ -433574,2531 +433340,2750 @@ static const TSParseActionEntry ts_parse_actions[] = { [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 2), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 3), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [6002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(39), - [6005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(34), - [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(36), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), - [6013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(37), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1031), - [6021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(513), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1022), - [6031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(261), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), - [6039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(127), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), - [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(1031), - [6047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(799), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, .production_id = 20), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, .production_id = 20), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, .production_id = 16), - [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 16), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [7196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4795), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), - [7205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(432), - [7208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(6009), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [7231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1029), - [7234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(353), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [7243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), - [7245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(440), - [7248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(6074), - [7251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), - [7253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(412), - [7256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(6004), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), - [7265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(448), - [7268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(6148), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), - [7297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(385), - [7300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(6092), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [7307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), - [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(390), - [7312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(5976), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), - [7317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(431), - [7320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(6010), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [7329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), - [7331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(396), - [7334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(6116), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), - [7357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(371), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(6024), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1026), - [7376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(132), - [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [7389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [7405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(488), - [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), - [7410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(374), - [7413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(5961), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [7642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(129), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [7831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(484), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [7904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(578), - [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [8081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(853), - [8084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(777), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [8125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1032), - [8128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(347), - [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4811), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 1), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 1), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 2), - [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 2), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 1), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), - [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 1), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 1), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 1), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [8696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 1), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [8856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [8872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 1), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [8876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT_REPEAT(486), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [8931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 1), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 1), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [9097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 2), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [9127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 1), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [9285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 2), - [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [9293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 3), - [9295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 1), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [9305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), SHIFT_REPEAT(588), - [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 1), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [9318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 1), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [9436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 1), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [9440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 1), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [9452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), - [9454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(6248), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [9473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), - [9475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(6439), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), - [9482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(6458), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [9573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 1), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [9577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), - [9579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(6525), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [9584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), - [9586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(6438), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [9593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), - [9595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(6424), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [9602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), - [9604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(6336), - [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [9609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), - [9611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(6337), - [9614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 1), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [9618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 1), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [9650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4816), - [9653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 1), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [9657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), - [9659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(6327), - [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [9684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), - [9686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(6242), - [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [9741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 1), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [9765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(458), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [9940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [10032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 6), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [10036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 4), - [10038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 4), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [10100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), - [10130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 5), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [5994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(39), + [5997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(34), + [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(36), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), + [6005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(37), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), + [6025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(129), + [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(1030), + [6033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(734), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1030), + [6041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(630), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1020), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(261), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, .production_id = 16), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 16), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, .production_id = 20), + [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, .production_id = 20), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [7208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), + [7210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(432), + [7213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(5990), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), + [7230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(412), + [7233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(5989), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), + [7276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(390), + [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(5961), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [7318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(490), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [7323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4795), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1034), + [7331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(353), + [7334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(134), + [7337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(486), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), + [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(374), + [7361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(5955), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), + [7382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(448), + [7385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(6138), + [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), + [7390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(440), + [7393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(6137), + [7396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(853), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1026), + [7624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(132), + [7627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [7875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(797), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), + [7882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(371), + [7885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(6163), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [7932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(578), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [7973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4811), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), + [8112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(396), + [8115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(6162), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 1), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), + [8262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(431), + [8265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(6141), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), + [8300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(385), + [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(6147), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [8308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1029), + [8311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(347), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 1), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 1), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [8584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 1), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 1), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [8776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 2), + [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 2), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 2), + [9078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [9082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT_REPEAT(488), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [9109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 1), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [9113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 1), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [9117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 1), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [9137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 1), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [9181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 1), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [9185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 1), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [9231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 1), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [9287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 2), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [9331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 1), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [9387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), + [9389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(6202), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [9430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 1), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [9442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 1), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 3), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [9488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), + [9490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(6337), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [9583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), SHIFT_REPEAT(588), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [9594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 1), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [9598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), + [9600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), + [9602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(6344), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [9685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4800), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [9690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 1), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [9744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), + [9746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(6520), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [9769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 1), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [9775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 1), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [9779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 1), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [9783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(733), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [9818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), + [9820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(6455), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [9857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 1), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [9863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), + [9865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(6588), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [9886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), + [9888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(6587), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [9897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), + [9899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(6583), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [9914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), + [9916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(6636), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [9925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), + [9927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(6263), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [9940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [10032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 5), + [10034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 6), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [10062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [10092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [10108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 4), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [10116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 4), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [10148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 3), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), [10224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1, .production_id = 7), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [10272] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [10348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 4), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [10266] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [10300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 3), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [10306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 4), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__quoted_content_i_single = 0, + ts_external_token__quoted_content_i_double = 1, + ts_external_token__quoted_content_i_heredoc_single = 2, + ts_external_token__quoted_content_i_heredoc_double = 3, + ts_external_token__quoted_content_i_parenthesis = 4, + ts_external_token__quoted_content_i_curly = 5, + ts_external_token__quoted_content_i_square = 6, + ts_external_token__quoted_content_i_angle = 7, + ts_external_token__quoted_content_i_bar = 8, + ts_external_token__quoted_content_i_slash = 9, + ts_external_token__quoted_content_single = 10, + ts_external_token__quoted_content_double = 11, + ts_external_token__quoted_content_heredoc_single = 12, + ts_external_token__quoted_content_heredoc_double = 13, + ts_external_token__quoted_content_parenthesis = 14, + ts_external_token__quoted_content_curly = 15, + ts_external_token__quoted_content_square = 16, + ts_external_token__quoted_content_angle = 17, + ts_external_token__quoted_content_bar = 18, + ts_external_token__quoted_content_slash = 19, + ts_external_token__newline_before_do = 20, + ts_external_token__newline_before_binary_operator = 21, + ts_external_token__newline_before_comment = 22, + ts_external_token__before_unary_op = 23, + ts_external_token__not_in = 24, + ts_external_token__quoted_atom_start = 25, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__quoted_content_i_single] = sym__quoted_content_i_single, + [ts_external_token__quoted_content_i_double] = sym__quoted_content_i_double, + [ts_external_token__quoted_content_i_heredoc_single] = sym__quoted_content_i_heredoc_single, + [ts_external_token__quoted_content_i_heredoc_double] = sym__quoted_content_i_heredoc_double, + [ts_external_token__quoted_content_i_parenthesis] = sym__quoted_content_i_parenthesis, + [ts_external_token__quoted_content_i_curly] = sym__quoted_content_i_curly, + [ts_external_token__quoted_content_i_square] = sym__quoted_content_i_square, + [ts_external_token__quoted_content_i_angle] = sym__quoted_content_i_angle, + [ts_external_token__quoted_content_i_bar] = sym__quoted_content_i_bar, + [ts_external_token__quoted_content_i_slash] = sym__quoted_content_i_slash, + [ts_external_token__quoted_content_single] = sym__quoted_content_single, + [ts_external_token__quoted_content_double] = sym__quoted_content_double, + [ts_external_token__quoted_content_heredoc_single] = sym__quoted_content_heredoc_single, + [ts_external_token__quoted_content_heredoc_double] = sym__quoted_content_heredoc_double, + [ts_external_token__quoted_content_parenthesis] = sym__quoted_content_parenthesis, + [ts_external_token__quoted_content_curly] = sym__quoted_content_curly, + [ts_external_token__quoted_content_square] = sym__quoted_content_square, + [ts_external_token__quoted_content_angle] = sym__quoted_content_angle, + [ts_external_token__quoted_content_bar] = sym__quoted_content_bar, + [ts_external_token__quoted_content_slash] = sym__quoted_content_slash, + [ts_external_token__newline_before_do] = sym__newline_before_do, + [ts_external_token__newline_before_binary_operator] = sym__newline_before_binary_operator, + [ts_external_token__newline_before_comment] = sym__newline_before_comment, + [ts_external_token__before_unary_op] = sym__before_unary_op, + [ts_external_token__not_in] = sym__not_in, + [ts_external_token__quoted_atom_start] = sym__quoted_atom_start, +}; + +static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__quoted_content_i_single] = true, + [ts_external_token__quoted_content_i_double] = true, + [ts_external_token__quoted_content_i_heredoc_single] = true, + [ts_external_token__quoted_content_i_heredoc_double] = true, + [ts_external_token__quoted_content_i_parenthesis] = true, + [ts_external_token__quoted_content_i_curly] = true, + [ts_external_token__quoted_content_i_square] = true, + [ts_external_token__quoted_content_i_angle] = true, + [ts_external_token__quoted_content_i_bar] = true, + [ts_external_token__quoted_content_i_slash] = true, + [ts_external_token__quoted_content_single] = true, + [ts_external_token__quoted_content_double] = true, + [ts_external_token__quoted_content_heredoc_single] = true, + [ts_external_token__quoted_content_heredoc_double] = true, + [ts_external_token__quoted_content_parenthesis] = true, + [ts_external_token__quoted_content_curly] = true, + [ts_external_token__quoted_content_square] = true, + [ts_external_token__quoted_content_angle] = true, + [ts_external_token__quoted_content_bar] = true, + [ts_external_token__quoted_content_slash] = true, + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + [ts_external_token__quoted_atom_start] = true, + }, + [2] = { + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + [ts_external_token__quoted_atom_start] = true, + }, + [3] = { + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + [ts_external_token__quoted_atom_start] = true, + }, + [4] = { + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__not_in] = true, + }, + [5] = { + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__not_in] = true, + }, + [6] = { + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [7] = { + [ts_external_token__quoted_content_i_heredoc_single] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [8] = { + [ts_external_token__quoted_content_i_single] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [9] = { + [ts_external_token__quoted_content_i_double] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [10] = { + [ts_external_token__quoted_content_i_parenthesis] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [11] = { + [ts_external_token__quoted_content_i_heredoc_double] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [12] = { + [ts_external_token__quoted_content_i_curly] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [13] = { + [ts_external_token__quoted_content_i_slash] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [14] = { + [ts_external_token__quoted_content_i_bar] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [15] = { + [ts_external_token__quoted_content_i_angle] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [16] = { + [ts_external_token__quoted_content_i_square] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [17] = { + [ts_external_token__quoted_content_heredoc_single] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [18] = { + [ts_external_token__quoted_content_parenthesis] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [19] = { + [ts_external_token__quoted_content_single] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [20] = { + [ts_external_token__quoted_content_heredoc_double] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [21] = { + [ts_external_token__quoted_content_curly] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [22] = { + [ts_external_token__quoted_content_square] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [23] = { + [ts_external_token__quoted_content_angle] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [24] = { + [ts_external_token__quoted_content_double] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [25] = { + [ts_external_token__quoted_content_slash] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, + [26] = { + [ts_external_token__quoted_content_bar] = true, + [ts_external_token__newline_before_binary_operator] = true, + [ts_external_token__newline_before_comment] = true, + }, }; #ifdef __cplusplus @@ -436110,11 +436095,15 @@ bool tree_sitter_elixir_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_elixir_external_scanner_serialize(void *, char *); void tree_sitter_elixir_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_elixir(void) { +TS_PUBLIC const TSLanguage *tree_sitter_elixir() { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1f4466d --- /dev/null +++ b/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h new file mode 100644 index 0000000..15a3b23 --- /dev/null +++ b/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 2b14ac1..17b4fde 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -130,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -166,7 +172,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +182,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +190,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }}